diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample.sln b/samples/app-nexus-productivity/GraphSample/GraphSample.sln new file mode 100644 index 000000000..74f4fb24a --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample.sln @@ -0,0 +1,37 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 25.0.1705.4 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraphSample", "GraphSample\GraphSample.csproj", "{5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebBackend", "WebBackend\WebBackend.csproj", "{D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedModels", "SharedModels\SharedModels.csproj", "{DF9E15A1-F437-46FF-9CF7-3B8168199A33}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5C9C1BD8-3FAE-4168-AA26-D1295BF8A091}.Release|Any CPU.Build.0 = Release|Any CPU + {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D2E12BF1-D808-47B6-B9F1-C43D85A5CFF6}.Release|Any CPU.Build.0 = Release|Any CPU + {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DF9E15A1-F437-46FF-9CF7-3B8168199A33}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7A561DA2-F67E-4149-92BF-6BA5D1A8E086} + EndGlobalSection +EndGlobal diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/AI/OpenAIService.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/AI/OpenAIService.cs new file mode 100644 index 000000000..891a04eb3 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/AI/OpenAIService.cs @@ -0,0 +1,17 @@ +using Azure; +using Azure.AI.OpenAI; +using Microsoft.Extensions.Options; +using static System.Environment; + +namespace GraphSample.AI +{ + public class OpenAIService + { + public readonly string engine = "PlannerOpenAI"; + public readonly string endpoint = "https://plannerai.openai.azure.com/"; + public readonly string key = "63448da86da048d49845249803372807"; + + public readonly OpenAIClient client = new OpenAIClient(new Uri("https://plannerai.openai.azure.com/"), new AzureKeyCredential("63448da86da048d49845249803372807")); + + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/App.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/App.razor new file mode 100644 index 000000000..4330e4ba5 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/App.razor @@ -0,0 +1,32 @@ +@inject IJSRuntime jsRuntime + + + + + + + + + @if (context.User.Identity?.IsAuthenticated != true) + { + + } + else + { +

You are not authorized to access this resource.

+ } +
+
+ +
+ + Not found + +

Sorry, there's nothing at this address.

+
+
+
+
+
+ + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/BlazorAuthProvider.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/BlazorAuthProvider.cs new file mode 100644 index 000000000..aadb5b3f7 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/BlazorAuthProvider.cs @@ -0,0 +1,36 @@ +using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Abstractions.Authentication; + +namespace GraphSample.Graph +{ + public class BlazorAuthProvider : IAuthenticationProvider + { + private readonly IAccessTokenProviderAccessor accessor; + + public BlazorAuthProvider(IAccessTokenProviderAccessor accessor) + { + this.accessor = accessor; + } + + // Function called every time the GraphServiceClient makes a call + public async Task AuthenticateRequestAsync( + RequestInformation request, + Dictionary? additionalAuthenticationContext = null, + CancellationToken cancellationToken = default) + { + // Request the token from the accessor + var result = await accessor.TokenProvider.RequestAccessToken(); + try{ + if (result.TryGetToken(out var token)) + { + // Add the token to the Authorization header + request.Headers.Add("Authorization", $"Bearer {token.Value}"); + } + } + catch(Exception ex){ + Console.WriteLine(ex.Message); + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClaimsPrincipalExtensions.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClaimsPrincipalExtensions.cs new file mode 100644 index 000000000..640e6f340 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClaimsPrincipalExtensions.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + +using System.Security.Authentication; +using System.Security.Claims; +using Microsoft.Graph.Models; + +namespace GraphSample +{ + public static class GraphClaimTypes { + public const string DateFormat = "graph_dateformat"; + public const string Email = "graph_email"; + public const string Photo = "graph_photo"; + public const string TimeZone = "graph_timezone"; + public const string TimeFormat = "graph_timeformat"; + } + + // Helper methods to access Graph user data stored in + // the claims principal + public static class GraphClaimsPrincipalExtensions + { + public static string GetUserGraphDateFormat(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.DateFormat); + return claim == null ? string.Empty : claim.Value; + } + + public static string GetUserGraphEmail(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Email); + return claim == null ? string.Empty : claim.Value; + } + + public static string? GetUserGraphPhoto(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Photo); + return claim == null ? null : claim.Value; + } + + public static string GetUserGraphTimeZone(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeZone); + return claim == null ? string.Empty : claim.Value; + } + + public static string GetUserGraphTimeFormat(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeFormat); + return claim == null ? string.Empty : claim.Value; + } + + // Adds claims from the provided User object + public static void AddUserGraphInfo(this ClaimsPrincipal claimsPrincipal, User user) + { + var identity = claimsPrincipal.Identity as ClaimsIdentity; + if (identity == null) + { + throw new AuthenticationException( + "ClaimsIdentity is null inside provided ClaimsPrincipal"); + } + + identity.AddClaim( + new Claim(GraphClaimTypes.DateFormat, + user.MailboxSettings?.DateFormat ?? "MMMM dd, yyyy")); + identity.AddClaim( + new Claim(GraphClaimTypes.Email, + user.Mail ?? user.UserPrincipalName ?? "")); + identity.AddClaim( + new Claim(GraphClaimTypes.TimeZone, + user.MailboxSettings?.TimeZone ?? "UTC")); + identity.AddClaim( + new Claim(GraphClaimTypes.TimeFormat, + user.MailboxSettings?.TimeFormat ?? "HH:mm")); + } + + // Converts a photo Stream to a Data URI and stores it in a claim + public static void AddUserGraphPhoto(this ClaimsPrincipal claimsPrincipal, Stream? photoStream) + { + var identity = claimsPrincipal.Identity as ClaimsIdentity; + if (identity == null) + { + throw new AuthenticationException( + "ClaimsIdentity is null inside provided ClaimsPrincipal"); + } + + if (photoStream != null) + { + // Copy the photo stream to a memory stream + // to get the bytes out of it + var memoryStream = new MemoryStream(); + photoStream.CopyTo(memoryStream); + var photoBytes = memoryStream.ToArray(); + + // Generate a date URI for the photo + var photoUri = $"data:image/png;base64,{Convert.ToBase64String(photoBytes)}"; + + identity.AddClaim( + new Claim(GraphClaimTypes.Photo, photoUri)); + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClientFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClientFactory.cs new file mode 100644 index 000000000..4a1868a94 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphClientFactory.cs @@ -0,0 +1,38 @@ +using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal; +using Microsoft.Graph; +using Microsoft.Kiota.Http.HttpClientLibrary; + +namespace GraphSample.Graph +{ + public class GraphClientFactory + { + private readonly IAccessTokenProviderAccessor accessor; + private readonly HttpClient httpClient; + private readonly ILogger logger; + private GraphServiceClient? graphClient; + + public GraphClientFactory(IAccessTokenProviderAccessor accessor, + HttpClient httpClient, + ILogger logger) + { + this.accessor = accessor; + this.httpClient = httpClient; + this.logger = logger; + } + + public GraphServiceClient GetAuthenticatedClient() + { + // Use the existing one if it's there + if (graphClient == null) + { + // Create a GraphServiceClient using a scoped + // HttpClient + var requestAdapter = new HttpClientRequestAdapter( + new BlazorAuthProvider(accessor), null, null, httpClient); + graphClient = new GraphServiceClient(requestAdapter); + } + + return graphClient; + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphUserAccountFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphUserAccountFactory.cs new file mode 100644 index 000000000..355d11024 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Graph/GraphUserAccountFactory.cs @@ -0,0 +1,105 @@ +using System.Security.Claims; +using Microsoft.AspNetCore.Components.WebAssembly.Authentication; +using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal; +using Microsoft.Graph; +using Microsoft.Graph.Models.ODataErrors; + +namespace GraphSample.Graph +{ + // Extends the AccountClaimsPrincipalFactory that builds + // a user identity from the identity token. + // This class adds additional claims to the user's ClaimPrincipal + // that hold values from Microsoft Graph + public class GraphUserAccountFactoryBeta + : AccountClaimsPrincipalFactory + { + private readonly IAccessTokenProviderAccessor accessor; + private readonly ILogger logger; + + private readonly GraphClientFactory clientFactory; + + public GraphUserAccountFactoryBeta(IAccessTokenProviderAccessor accessor, + GraphClientFactory clientFactory, + ILogger logger) + : base(accessor) + { + this.accessor = accessor; + this.clientFactory = clientFactory; + this.logger = logger; + } + + public async override ValueTask CreateUserAsync( + RemoteUserAccount account, + RemoteAuthenticationUserOptions options) + { + // Create the base user + var initialUser = await base.CreateUserAsync(account, options); + + // If authenticated, we can call Microsoft Graph + if (initialUser?.Identity?.IsAuthenticated ?? false) + { + try + { + // Add additional info from Graph to the identity + await AddGraphInfoToClaims(accessor, initialUser); + } + catch (AccessTokenNotAvailableException exception) + { + logger.LogError($"Graph API access token failure: {exception.Message}"); + } + catch (ServiceException exception) + { + logger.LogError($"Graph API error: {exception.Message}"); + logger.LogError($"Response body: {exception.RawResponseBody}"); + } + } + + return initialUser; + } + + private async Task AddGraphInfoToClaims( + IAccessTokenProviderAccessor accessor, + ClaimsPrincipal claimsPrincipal) + { + var graphClient = clientFactory.GetAuthenticatedClient(); + + // Get user profile including mailbox settings + // GET /me?$select=displayName,mail,mailboxSettings,userPrincipalName + var user = await graphClient.Me.GetAsync(config => + { + // Request only the properties used to + // set claims + config.QueryParameters.Select = new [] { "displayName", "mail", "mailboxSettings", "userPrincipalName" }; + }); + + if (user == null) + { + throw new Exception("Could not retrieve user from Microsoft Graph."); + } + + logger.LogInformation($"Got user: {user.DisplayName}"); + + claimsPrincipal.AddUserGraphInfo(user); + + // Get user's photo + // GET /me/photos/48x48/$value + try + { + var photo = await graphClient.Me + .Photos["48x48"] // Smallest standard size + .Content + .GetAsync(); + + claimsPrincipal.AddUserGraphPhoto(photo); + } + catch (ODataError err) + { + Console.WriteLine($"Photo error: ${err?.Error?.Code}"); + if (err?.Error?.Code != "ImageNotFound") + { + throw err ?? new Exception("Unknown error getting user photo."); + } + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/BlazorAuthProvider.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/BlazorAuthProvider.cs new file mode 100644 index 000000000..4d163b84a --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/BlazorAuthProvider.cs @@ -0,0 +1,36 @@ +using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal; +using Microsoft.Kiota.Abstractions; +using Microsoft.Kiota.Abstractions.Authentication; + +namespace GraphSampleBeta.Graph +{ + public class BlazorAuthProvider : IAuthenticationProvider + { + private readonly IAccessTokenProviderAccessor accessor; + + public BlazorAuthProvider(IAccessTokenProviderAccessor accessor) + { + this.accessor = accessor; + } + + // Function called every time the GraphServiceClient makes a call + public async Task AuthenticateRequestAsync( + RequestInformation request, + Dictionary? additionalAuthenticationContext = null, + CancellationToken cancellationToken = default) + { + // Request the token from the accessor + var result = await accessor.TokenProvider.RequestAccessToken(); + try{ + if (result.TryGetToken(out var token)) + { + // Add the token to the Authorization header + request.Headers.Add("Authorization", $"Bearer {token.Value}"); + } + } + catch(Exception ex){ + Console.WriteLine(ex.Message); + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClaimsPrincipalExtensions.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClaimsPrincipalExtensions.cs new file mode 100644 index 000000000..d6db938e2 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClaimsPrincipalExtensions.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + +using System.Security.Authentication; +using System.Security.Claims; +using Microsoft.Graph.Beta.Models; + +namespace GraphSampleBeta +{ + public static class GraphClaimTypes { + public const string DateFormat = "graph_dateformat"; + public const string Email = "graph_email"; + public const string Photo = "graph_photo"; + public const string TimeZone = "graph_timezone"; + public const string TimeFormat = "graph_timeformat"; + } + + // Helper methods to access Graph user data stored in + // the claims principal + public static class GraphClaimsPrincipalExtensions + { + public static string GetUserGraphDateFormat(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.DateFormat); + return claim == null ? string.Empty : claim.Value; + } + + public static string GetUserGraphEmail(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Email); + return claim == null ? string.Empty : claim.Value; + } + + public static string? GetUserGraphPhoto(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.Photo); + return claim == null ? null : claim.Value; + } + + public static string GetUserGraphTimeZone(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeZone); + return claim == null ? string.Empty : claim.Value; + } + + public static string GetUserGraphTimeFormat(this ClaimsPrincipal claimsPrincipal) + { + var claim = claimsPrincipal.FindFirst(GraphClaimTypes.TimeFormat); + return claim == null ? string.Empty : claim.Value; + } + + // Adds claims from the provided User object + public static void AddUserGraphInfo(this ClaimsPrincipal claimsPrincipal, User user) + { + var identity = claimsPrincipal.Identity as ClaimsIdentity; + if (identity == null) + { + throw new AuthenticationException( + "ClaimsIdentity is null inside provided ClaimsPrincipal"); + } + + identity.AddClaim( + new Claim(GraphClaimTypes.DateFormat, + user.MailboxSettings?.DateFormat ?? "MMMM dd, yyyy")); + identity.AddClaim( + new Claim(GraphClaimTypes.Email, + user.Mail ?? user.UserPrincipalName ?? "")); + identity.AddClaim( + new Claim(GraphClaimTypes.TimeZone, + user.MailboxSettings?.TimeZone ?? "UTC")); + identity.AddClaim( + new Claim(GraphClaimTypes.TimeFormat, + user.MailboxSettings?.TimeFormat ?? "HH:mm")); + } + + // Converts a photo Stream to a Data URI and stores it in a claim + public static void AddUserGraphPhoto(this ClaimsPrincipal claimsPrincipal, Stream? photoStream) + { + var identity = claimsPrincipal.Identity as ClaimsIdentity; + if (identity == null) + { + throw new AuthenticationException( + "ClaimsIdentity is null inside provided ClaimsPrincipal"); + } + + if (photoStream != null) + { + // Copy the photo stream to a memory stream + // to get the bytes out of it + var memoryStream = new MemoryStream(); + photoStream.CopyTo(memoryStream); + var photoBytes = memoryStream.ToArray(); + + // Generate a date URI for the photo + var photoUri = $"data:image/png;base64,{Convert.ToBase64String(photoBytes)}"; + + identity.AddClaim( + new Claim(GraphClaimTypes.Photo, photoUri)); + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClientFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClientFactory.cs new file mode 100644 index 000000000..1ab18bb61 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphClientFactory.cs @@ -0,0 +1,38 @@ +using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal; +using Microsoft.Graph.Beta; +using Microsoft.Kiota.Http.HttpClientLibrary; + +namespace GraphSampleBeta.Graph +{ + public class GraphClientFactoryBeta + { + private readonly IAccessTokenProviderAccessor accessor; + private readonly HttpClient httpClient; + private readonly ILogger logger; + private GraphServiceClient? graphClient; + + public GraphClientFactoryBeta(IAccessTokenProviderAccessor accessor, + HttpClient httpClient, + ILogger logger) + { + this.accessor = accessor; + this.httpClient = httpClient; + this.logger = logger; + } + + public GraphServiceClient GetAuthenticatedClient() + { + // Use the existing one if it's there + if (graphClient == null) + { + // Create a GraphServiceClient using a scoped + // HttpClient + var requestAdapter = new HttpClientRequestAdapter( + new BlazorAuthProvider(accessor), null, null, httpClient); + graphClient = new GraphServiceClient(requestAdapter); + } + + return graphClient; + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphUserAccountFactory.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphUserAccountFactory.cs new file mode 100644 index 000000000..836a52578 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphBeta/GraphUserAccountFactory.cs @@ -0,0 +1,100 @@ +using System.Security.Claims; +using Microsoft.AspNetCore.Components.WebAssembly.Authentication; +using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal; +using Microsoft.Graph.Beta; +using Microsoft.Graph.Beta.Models.ODataErrors; + +namespace GraphSampleBeta.Graph +{ + // Extends the AccountClaimsPrincipalFactory that builds + // a user identity from the identity token. + // This class adds additional claims to the user's ClaimPrincipal + // that hold values from Microsoft Graph + public class GraphUserAccountFactory + : AccountClaimsPrincipalFactory + { + private readonly IAccessTokenProviderAccessor accessor; + private readonly ILogger logger; + + private readonly GraphClientFactoryBeta clientFactory; + + public GraphUserAccountFactory(IAccessTokenProviderAccessor accessor, + GraphClientFactoryBeta clientFactory, + ILogger logger) + : base(accessor) + { + this.accessor = accessor; + this.clientFactory = clientFactory; + this.logger = logger; + } + + public async override ValueTask CreateUserAsync( + RemoteUserAccount account, + RemoteAuthenticationUserOptions options) + { + // Create the base user + var initialUser = await base.CreateUserAsync(account, options); + + // If authenticated, we can call Microsoft Graph + if (initialUser?.Identity?.IsAuthenticated ?? false) + { + try + { + // Add additional info from Graph to the identity + await AddGraphInfoToClaims(accessor, initialUser); + } + catch (AccessTokenNotAvailableException exception) + { + logger.LogError($"Graph API access token failure: {exception.Message}"); + } + } + + return initialUser; + } + + private async Task AddGraphInfoToClaims( + IAccessTokenProviderAccessor accessor, + ClaimsPrincipal claimsPrincipal) + { + var graphClient = clientFactory.GetAuthenticatedClient(); + + // Get user profile including mailbox settings + // GET /me?$select=displayName,mail,mailboxSettings,userPrincipalName + var user = await graphClient.Me.GetAsync(config => + { + // Request only the properties used to + // set claims + config.QueryParameters.Select = new [] { "displayName", "mail", "mailboxSettings", "userPrincipalName" }; + }); + + if (user == null) + { + throw new Exception("Could not retrieve user from Microsoft Graph."); + } + + logger.LogInformation($"Got user: {user.DisplayName}"); + + claimsPrincipal.AddUserGraphInfo(user); + + // Get user's photo + // GET /me/photos/48x48/$value + try + { + var photo = await graphClient.Me + .Photos["48x48"] // Smallest standard size + .Content + .GetAsync(); + + claimsPrincipal.AddUserGraphPhoto(photo); + } + catch (ODataError err) + { + Console.WriteLine($"Photo error: ${err?.Error?.Code}"); + if (err?.Error?.Code != "ImageNotFound") + { + throw err ?? new Exception("Unknown error getting user photo."); + } + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.csproj b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.csproj new file mode 100644 index 000000000..bc1a317e5 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.csproj @@ -0,0 +1,55 @@ + + + + net7.0 + enable + enable + + + + true + 10,12,16,20,24,28,32,48 + Filled,Regular + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.sln b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.sln new file mode 100644 index 000000000..df24bb754 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/GraphSample.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 25.0.1705.4 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraphSample", "GraphSample.csproj", "{CBB0CDB8-9381-4551-9D04-4F57B1A78D18}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CBB0CDB8-9381-4551-9D04-4F57B1A78D18}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {AA916FFD-6655-4E0B-A0E3-29B9F8DA9969} + EndGlobalSection +EndGlobal diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ApplicationTracker.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ApplicationTracker.razor new file mode 100644 index 000000000..fb35a3271 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ApplicationTracker.razor @@ -0,0 +1,2452 @@ +@page "/applicationtracker" +@using System.Security.Authentication +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@using SharedModels.Models +@using GraphSample.ReusableComponents +@using System.Globalization +@using System.Diagnostics +@using System.Timers +@using System.Text.RegularExpressions +@using Newtonsoft.Json +@using Azure.AI.OpenAI +@using Azure + +@inject GraphSample.Services.IBackendApiService backendApiService +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject GraphSample.AI.OpenAIService OpenAIService + +
+ + + + @if (fetchingTimelines || creatingApplicant) + { +

Application Dashboard

+
+ +
+ } + else if (!isRegistered) + { +

Application Dashboard

+ + } + else + { +
+

Application Dashboard

+ + + Sort by: + + Select Display Mode: + + +
+
+
+
+ @if (displayMode == DisplayMode.Calendar_Display) + { +
+
+ } + + + @for (int i = 0; i < timelines.Count(); i ++) + { + var timeline = timelines[i]; + + + + + + } + +
+
+
+ @if (emailsShowing && emailsShowingTimeline == timeline.timelineID) + { + + } + else + { + + } +
+
+ @if (!timeline.archived) + { + + @if (timeline.hasUnreadEmails) + { + + + + } + @if (timeline.alertLevel == 0) + { + + } + else + { + + } + } + else + { + + + } +
+
+
+
+

@timeline.company

+
+
@timeline.role
+
+
+ @if (!emailsShowing) + { +
+
+ @if (displayMode == DisplayMode.Calendar_Display) + { +
+
+ } + + + @for (int i = 0; i < timelines.Count(); i++) + { + var timeline = timelines[i]; + + + + + } + +
+
+ @if (expandActions && (expandedActionsTimeline == timeline.timelineID)) + { + + } + else + { + + } + @if (expandActions && (expandedActionsTimeline == timeline.timelineID)) + { +
+ + + +
+ } + + + @if (expandAssociatedEmails && (expandedEmailsTimeline == timeline.timelineID)) + { + + } + else + { + + } +
+ @if (expandAssociatedEmails && (expandedEmailsTimeline == timeline.timelineID)) + { + + } +
+
+
+ @if (!fillingAssessments || (timeline.timelineID != fillingAssessmentsTimeline)) + { + + } + else + { +
+ @* *@ + + +
+ } +
+
+
+ @if (displayMode == DisplayMode.Default_Display) + { + + + @for (int i = 0; i < timelines.Count(); i++) + { + var timeline = timelines[i]; + + + + } + +
+
+ @for (int j = 0; j < timeline.assessments.Count(); j++) + { + var assessment = timeline.assessments[j]; +
+
+ + +
+
+ +
+
+ + @if (assessment.type == AssessmentType.Online_Assessment) + { + @if (!assessment.todoScheduled) + { + + } + else + { + + } + } +
+
+ } +
+
+ } + else{ +
+ @foreach (var assessmentGroup in sortedAssessments) + { + var timelineGroups = assessmentGroup.GroupBy(ag => ag.Item1); +
+
+ @assessmentGroup.Key.ToString("ddd, dd MMM, yyyy") +
+ @foreach(var timelineGroup in timelineGroups){ + int index = timelines.FindIndex(tl => tl.timelineID == timelineGroup.Key); + var timeline = timelines[index]; +
+ @foreach(var assessmentPair in timelineGroup) + { + var assessment = assessmentPair.Item2; +
+
+ + +
+
+ +
+
+ + @if (assessment.type == AssessmentType.Online_Assessment) + { + @if (!assessment.todoScheduled) + { + + } + else + { + + } + } +
+
+ } +
+ } +
+ } +
+ } +
+
+ } + else { +
+ } +
+ +
+
+ @if (emailsShowing){ + @if (fetchingEmails) + { +
+
+ +
+
+ } + else + { + if (selectedEmail== null) + { + var tmpEmails = filteresSelectedEmails == null ? selectedAssociatedEmails : filteresSelectedEmails; +
+
+ +
+
+ @foreach (var email in tmpEmails) + { + + } +
+
+ } + else{ +
+
+ + + + From: @selectedEmail.Sender?.EmailAddress?.Address + Subject: @selectedEmail.Subject + @selectedEmail.ReceivedDateTime?.DateTime.ToString("ddd, dd MMM, yyyy HH:mm") +
+
+ @((MarkupString)selectedEmail.Body.Content) +
+
+ } + } + } + else { +
+
+ } + +
+
+ } +
+ +
+ +
+ + + +
+ +
+ + + + + +@code { + + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + + private GraphServiceClient? graphClient; + private string? dateTimeFormat; + private string userTimeZone = string.Empty; + private List? timelines; + private bool emailsShowing; + private DisplayMode displayMode = DisplayMode.Default_Display; + + private enum DisplayMode { + Default_Display, + Calendar_Display, + } + + private List>? sortedAssessments; + private int emailsShowingTimeline; + + private Message? selectedEmail = null; + //private List? selectedAssociatedEmails; + private List selectedAssociatedEmails; + private List? filteresSelectedEmails; + string? searchValue = string.Empty; + + private string? SearchValue + { + get => searchValue; + set + { + if (value != searchValue) + { + searchValue = value; + DisposeTimer(); + //Add the debounce time in ms to the timer below + timer = new Timer(1500); + timer.Elapsed += TimerElapsed_TickAsync; + timer.Enabled = true; + timer.Start(); + } + } + } + private bool emailSearchIsFocused; + private static Timer timer; + private System.Threading.Timer debounceTimer; + private bool isSearchPending; + + private int autofillProgress; + + private IList toDos = new List(); + Dictionary TaskLists = new Dictionary(); + private string selectedList = "Tasks"; + + private bool fetchingEmails = false; + private bool fetchingTimelines = false; + private bool creatingApplicant = false; + + private bool fillingAssessments = false; + + private int fillingAssessmentsTimeline = -1; + + private string Username; + private bool isRegistered; + + private bool expandAssociatedEmails = false; + private int expandedEmailsTimeline = -1; + + private bool expandActions = false; + private int expandedActionsTimeline = -1; + + private IList allMessages = new List(); + public HashSet allSenders; + + private SortingCriteria sortingCriterion = SortingCriteria.Date_Added; + private enum SortingCriteria + { + Date_Added, + Starred_First, + Unread_Emails_First, + } + + bool IsHovered { get; set; } + + private string GetRightDivClass() + { + return emailsShowing ? "hidden" : "right-div"; + } + + protected override async Task OnInitializedAsync() + + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + var user = (await authenticationStateTask).User; + Username = user.Identity?.Name; + var graphTimeZone = user.GetUserGraphTimeZone(); + dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}"; + var startOfWeek = GetUtcStartOfWeekInTimeZone(DateTime.Today, graphTimeZone); + var endOfWeek = startOfWeek.AddDays(7); + + graphClient = clientFactory.GetAuthenticatedClient(); + emailsShowing = false; + fetchingTimelines = true; + timelines = await backendApiService.getUserTimelinesAsync(Username); + + if (timelines != null) + { + + isRegistered = true; + List allAssociatedEmails = new(); + HashSet allAssociatedEmailStrings = new(); + foreach (var currentAssociatedEmails in timelines.Select(t => t.associatedEmailAddresses)) + { + foreach (var email in currentAssociatedEmails) + { + allAssociatedEmailStrings.Add(email); + } + } + + var fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings); + var groupedEmails = (fetchedEmails.Count() == 0 ? null : (fetchedEmails.Where(msg => ((msg.Sender.EmailAddress != null) && (msg.Sender != null))).GroupBy(msg => msg.Sender.EmailAddress.Address). + ToDictionary(group => group.Key, group => group.ToList()))); + + if (groupedEmails != null) + { + for (int i = 0; i < timelines.Count(); i++) + { + var timeline = timelines[i]; + bool loopFlag = false; + foreach (var email in timeline.associatedEmailAddresses) + { + if (loopFlag) { break; } + if (groupedEmails.ContainsKey(email)) + { + var messages = groupedEmails[email]; + foreach (var msg in messages) + { + if (msg.IsRead == false) + { + timelines[i].hasUnreadEmails = true; + loopFlag = true; + break; + } + } + } + } + } + } + + + var mailPage = await graphClient.Me + .MailFolders["Inbox"] + .Messages + .GetAsync(config => + { + config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\""); + config.QueryParameters.Select = new string[] { "sender" }; + config.QueryParameters.Orderby = new string[] { "receivedDateTime desc" }; + config.QueryParameters.Top = 999; + }); + + allMessages = mailPage?.Value ?? new List(); + allSenders = new HashSet(allMessages.Select(msg => msg.Sender.EmailAddress.Address)); + + fetchingTimelines = false; + + var getLists = await graphClient.Me.Todo.Lists.GetAsync(); + toDos = getLists?.Value ?? new List(); + + foreach (var item in toDos) + { + if (item == null) + { + throw new ArgumentNullException(nameof(item)); + } + if (item.DisplayName != null) + { + TaskLists[item.DisplayName] = item.Id; + } + } + + + } + else + { + isRegistered = false; + } + + fetchingTimelines = false; + sortedAssessments = GetSortedAssessments(); + HandleSortCriterionChange(); + } + public async void ShowEmails(ApplicationTimeline timeline) + { + emailsShowing = true; + emailsShowingTimeline = timeline.timelineID; + await GetAssociatedEmails(timeline); + } + + public async Task GetAssociatedEmails(ApplicationTimeline timeline) + { + fetchingEmails = true; + HashSet allAssociatedEmailStrings = new(); + List? fetchedEmails = new(); + + if (timeline.associatedEmailAddresses.Count() == 0) + { + selectedAssociatedEmails = new List(); + fetchingEmails = false; + StateHasChanged(); + return; + } + + foreach (var email in timeline.associatedEmailAddresses) + { + allAssociatedEmailStrings.Add(email); + } + + fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings); + if (fetchedEmails != null) + { + selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList(); + } + + fetchingEmails = false; + StateHasChanged(); + } + + public async void RemoveEmail(string email, int timelineID) + { + + int index = timelines.FindIndex(tl => tl.timelineID == timelineID); + + timelines[index].associatedEmailAddresses.RemoveAll(e => e == email); + StateHasChanged(); + var response = await backendApiService.removeEmail(email, Username, timelineID); + + + if (response) + { + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID); + HashSet allAssociatedEmailStrings = new(); + foreach (var emailString in newTimeline.associatedEmailAddresses) + { + allAssociatedEmailStrings.Add(emailString); + } + + if (allAssociatedEmailStrings.Count() == 0) + { + if (index != -1) + { + newTimeline.hasUnreadEmails = false; + timelines[index] = newTimeline; + + StateHasChanged(); + } + + } + else + { + var fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings); + + if (index != -1) + { + newTimeline.hasUnreadEmails = fetchedEmails.Exists(msg => msg.IsRead.HasValue ? !msg.IsRead.Value : false); + timelines[index] = newTimeline; + HandleSortCriterionChange(); + StateHasChanged(); + } + } + } + } + + + public async void RemoveAssessment(Assessment assessment, int timelineID) + { + var response = await backendApiService.removeAssessment(assessment, Username, timelineID); + + if (response) + { + int index = timelines.FindIndex(tl => tl.timelineID == timelineID); + timelines[index].assessments.RemoveAll(a => a.date == assessment.date); + StateHasChanged(); + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID); + if (index != -1) + { + newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails; + timelines[index] = newTimeline; + StateHasChanged(); + } + } + + } + + private async Task UpdateArchivedStatus(ApplicationTimeline timeline, bool newStatus) + { + bool oldStatus = timeline.archived; + timeline.archived = newStatus; + HandleSortCriterionChange(); + StateHasChanged(); + bool result = await backendApiService.updateArchivedStatus(timeline.timelineID, Username, newStatus); + if(!result) + { + timeline.archived = oldStatus; + HandleSortCriterionChange(); + StateHasChanged(); + } + } + + + public async void CreateApplicant() + { + creatingApplicant = true; + var response = await backendApiService.createApplicant(Username); + + if (response) + { + timelines = new List(); + isRegistered = true; + creatingApplicant = false; + StateHasChanged(); + } + + } + + public async void UpdateAlertLevel(ApplicationTimeline timeline) + { + int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID); + int newLevel; + int oldLevel = timelines[index].alertLevel; + + if (index != -1) + { + + newLevel = (timelines[index].alertLevel + 1) % 2; + timelines[index].alertLevel = newLevel; + StateHasChanged(); + HandleSortCriterionChange(); + StateHasChanged(); + + var response = await backendApiService.updateAlertLevel(timeline.timelineID, Username, newLevel); + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID); + + if (newTimeline != null) + { + int newIndex = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID); + newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails; + timelines[newIndex] = newTimeline; + HandleSortCriterionChange(); + //StateHasChanged(); + } + else if (!response) + { + timelines[index].alertLevel = oldLevel; + //StateHasChanged(); + } + } + } + + private async Task HandleStatusChange(ApplicationTimeline timeline, Assessment assessment, AssessmentStatus newStatus) + { + int assessmentsIndex = timeline.assessments.FindIndex(a => a.date == assessment.date); + timeline.assessments[assessmentsIndex].status = newStatus; + StateHasChanged(); + var response = await backendApiService.updateAssessmentStatus(assessment, Username, timeline.timelineID, newStatus); + if (response) + { + int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID); + if (index != -1) + { + var assessments = timelines[index].assessments; + int assessmentsIndex2 = assessments.FindIndex(a => a.date == assessment.date); + assessments[assessmentsIndex2].status = newStatus; + StateHasChanged(); + } + } + + } + + private async Task HandleTypeChange(ApplicationTimeline timeline, Assessment assessment, AssessmentType newType) + { + var oldType = assessment.type; + var oldDescription = assessment.customDescription; + string? customDescription = null; + int assessmentsIndex = timeline.assessments.FindIndex(a => a.date == assessment.date); + timeline.assessments[assessmentsIndex].type = newType; + StateHasChanged(); + if (newType == AssessmentType.Custom) + { + var messageForm = ModalInputPopup.Show(); + var result = await messageForm.Result; + + if (result.Confirmed) + { + customDescription = result?.Data?.ToString(); + } + } + timeline.assessments[assessmentsIndex].customDescription = customDescription; + StateHasChanged(); + + var response = await backendApiService.updateAssessmentType(assessment, Username, timeline.timelineID, newType, customDescription); + if (response) + { + int assessmentsIndex2 = timeline.assessments.FindIndex(a => a.date == assessment.date); + timeline.assessments[assessmentsIndex2].type = newType; + timeline.assessments[assessmentsIndex2].customDescription = customDescription; + StateHasChanged(); + } + else + { + int assessmentsIndex2 = timeline.assessments.FindIndex(a => a.date == assessment.date); + timeline.assessments[assessmentsIndex2].type = oldType; + timeline.assessments[assessmentsIndex2].customDescription = oldDescription; + StateHasChanged(); + + } + } + + private async Task HandleDateChange(ApplicationTimeline timeline, Assessment assessment) + { + var oldDate = assessment.date; + DateTimeOffset? newDate = null; + int assessmentsIndex = timeline.assessments.FindIndex(a => a.date == assessment.date); + var parameters = new ModalParameters() + .Add(nameof(oldDate), oldDate); + + var messageForm = ModalInputPopup.Show("Passing Data", parameters); + var result = await messageForm.Result; + + if (result.Confirmed) + { + newDate = result.Data as DateTimeOffset?; + } + + if(newDate == null){ + return; + } + + timeline.assessments[assessmentsIndex].date = newDate.Value; + timeline.assessments.Sort((a1, a2) => a1.date.CompareTo(a2.date)); + HandleDisplayChange(); + StateHasChanged(); + + var response = await backendApiService.updateAssessments(timeline.assessments, Username, timeline.timelineID); + int assessmentsIndex2 = -1; + if (!response) + { + assessmentsIndex2 = timeline.assessments.FindIndex(a => a.date == newDate); + timeline.assessments[assessmentsIndex2].date = oldDate; + timeline.assessments.Sort((a1, a2) => a1.date.CompareTo(a2.date)); + HandleDisplayChange(); + StateHasChanged(); + + } + + } + + private void HandleSortCriterionChange() + { + if(timelines == null) + { + return; + } + switch (sortingCriterion) + { + case SortingCriteria.Date_Added: + timelines.Sort((t1, t2) => + { + + if (t1.archived && t2.archived) + return 0; + + else if (!t1.archived && t2.archived) + return -1; + + else if (t1.archived && !t2.archived) + return 1; + + return t1.timelineID.CompareTo(t2.timelineID); + } + ); + break; + + case SortingCriteria.Starred_First: + timelines.Sort((t1, t2) => + { + if (t1.archived && t2.archived) + return 0; + + else if (!t1.archived && t2.archived) + return -1; + + else if (t1.archived && !t2.archived) + return 1; + + int heightComparison = t2.alertLevel.CompareTo(t1.alertLevel); + if (heightComparison != 0) + return heightComparison; + else + return t2.timelineID.CompareTo(t2.timelineID); + }); + break; + case SortingCriteria.Unread_Emails_First: + timelines.Sort((t1, t2) => + { + if (t1.archived && t2.archived) + return 0; + + else if (!t1.archived && t2.archived) + return -1; + + else if (t1.archived && !t2.archived) + return 1; + + return (t1.hasUnreadEmails ? 0 : 1).CompareTo(t2.hasUnreadEmails ? 0 : 1); + }); + break; + } + } + + private async Task HandleEmailClick(Message email) + { + selectedEmail = email; + StateHasChanged(); + + var updatedEmail = new Message + { + IsRead = true + }; + + try + { + await graphClient.Me.Messages[email.Id].PatchAsync(updatedEmail); + email.IsRead = true; + StateHasChanged(); + } + catch (Exception ex) + { + ; + } + + } + + private async Task SendToDo(Assessment assessment, string company, string role, DateTimeOffset dueDate, int timelineID) + { + assessment.todoScheduled = true; + + var listsResult = await graphClient.Me.Todo.Lists.GetAsync(); + var lists = listsResult.Value; + + bool tasksExists = lists.Any(list => list.DisplayName.Equals("Tasks", StringComparison.OrdinalIgnoreCase)); + if (!tasksExists) + { + var creationRequestBody = new TodoTaskList + { + DisplayName = "Tasks" + }; + var tasksCreationResult = await graphClient.Me.Todo.Lists.PostAsync(creationRequestBody); + if (tasksCreationResult == null) + { + assessment.todoScheduled = false; + return; + } + else + { + TaskLists[tasksCreationResult.DisplayName] = tasksCreationResult.Id; + } + } + + var requestBody = new TodoTask + { + Title = $"Online assessment for the {role} position at {company}", + DueDateTime = new DateTimeTimeZone + { + DateTime = dueDate.ToString("MM/dd/yyyy HH:mm:ss", CultureInfo.GetCultureInfo("en-US")), + TimeZone = TimeZoneInfo.Local.Id + }, + ReminderDateTime = new DateTimeTimeZone + { + DateTime = dueDate.AddDays(-1).ToString("MM/dd/yyyy HH:mm:ss", CultureInfo.GetCultureInfo("en-US")), + TimeZone = TimeZoneInfo.Local.Id + } + }; + + try + { + var todoTask = await graphClient.Me.Todo.Lists[TaskLists[selectedList]].Tasks + .PostAsync(requestBody); + assessment.taskId = todoTask.Id; + var result = await backendApiService.updateAssessmentTodo(assessment, Username, timelineID, true); + if (!result) + { + assessment.todoScheduled = false; + assessment.taskId = null; + } + } + catch + { + assessment.todoScheduled = false; + assessment.taskId = null; + } + + } + + private async Task RemoveTodo(Assessment assessment, int timelineID) + { + assessment.todoScheduled = false; + string oldId = assessment.taskId; + assessment.taskId = null; + + var result = await backendApiService.updateAssessmentTodo(assessment, Username, timelineID, false); + + if (result) + { + + try + { + await graphClient.Me.Todo.Lists[TaskLists["Tasks"]].Tasks[oldId].DeleteAsync(); + } + catch (Exception err) + { + assessment.todoScheduled = true; + } + } + else + { + assessment.todoScheduled = true; + } + } + + private async Task HandleEmailAutofill(ApplicationTimeline? timeline) + { + if (timeline is not null && !string.IsNullOrWhiteSpace(timeline.company)) + { + string searchTerm = timeline.company.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = allSenders.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) + { + foreach (var email in temp) + { + if (!timeline.associatedEmailAddresses.Contains(email)) + { + timeline.associatedEmailAddresses.Add(email); + } + } + } + } + expandActions = false; + expandAssociatedEmails = true; + expandedEmailsTimeline = timeline.timelineID; + StateHasChanged(); + + int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID); + var fetchedEmails = await GetEmailsFromAddresses(new HashSet(timeline.associatedEmailAddresses)); + bool newHasUnread = fetchedEmails.Exists(msg => msg.IsRead.HasValue ? !msg.IsRead.Value : false); + timelines[index].hasUnreadEmails = newHasUnread; + + + var response = await backendApiService.addEmails(timeline.associatedEmailAddresses, Username, timeline.timelineID); + + if (response) + { + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID); + + newTimeline.hasUnreadEmails = timeline.hasUnreadEmails ? true : newHasUnread; + timelines[index] = newTimeline; + HandleSortCriterionChange(); + StateHasChanged(); + } + } + + } + + + /////////////////////////////////////// + //////Email Search Section //////////// + /////////////////////////////////////// + + private void HandleEmailsSearchTest(ChangeEventArgs args) + { + + if (isSearchPending) + { + return; + } + + isSearchPending = true; + + debounceTimer?.Dispose(); + + debounceTimer = new System.Threading.Timer((state) => + { + + if (args is not null && !string.IsNullOrWhiteSpace(args.Value?.ToString())) + { + string searchTerm = args.Value.ToString()!.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = selectedAssociatedEmails.Where(msg => ($"{msg.Sender?.EmailAddress?.Address} {msg.Subject}").ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) + { + filteresSelectedEmails = temp; + } + } + else + { + filteresSelectedEmails = null; + } + } + else + { + filteresSelectedEmails = null; + } + + InvokeAsync(StateHasChanged); + + isSearchPending = false; + }, null, (int)TimeSpan.FromMilliseconds(300).TotalMilliseconds, -1); + } + + + private void HandleEmailSearchFocus(){ + + timer = new Timer(500); + + timer.Elapsed += HandleEmailsSearchTest2; + + timer.Start(); + } + + private void HandleEmailSearchBlur(){ + + emailSearchIsFocused = false; + timer?.Stop(); + timer?.Dispose(); + } + private void HandleEmailsSearchTest2(object? sender, ElapsedEventArgs e) + { + + if (searchValue is not null && !string.IsNullOrWhiteSpace(searchValue)) + { + string searchTerm = searchValue.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = selectedAssociatedEmails.Where(msg => ($"{msg.Sender?.EmailAddress?.Address} {msg.Subject}").ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) + { + filteresSelectedEmails = temp; + } + } + else + { + filteresSelectedEmails = null; + } + } + else + { + filteresSelectedEmails = null; + } + + } + + private async Task HandleEmailsSearch() + { + + if (searchValue is not null && !string.IsNullOrWhiteSpace(searchValue)) + { + string searchTerm = searchValue.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = selectedAssociatedEmails.Where(msg => ($"{msg.Sender?.EmailAddress?.Address} {msg.Subject}").ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) + { + filteresSelectedEmails = temp; + } + } + else + { + filteresSelectedEmails = null; + } + } + else + { + filteresSelectedEmails = null; + } + + await InvokeAsync(StateHasChanged); + + } + + + private async void TimerElapsed_TickAsync(object? sender, EventArgs e) + { + DisposeTimer(); + await HandleEmailsSearch(); + } + + private void DisposeTimer() + { + if (timer != null) + { + timer.Enabled = false; + timer.Elapsed -= TimerElapsed_TickAsync; + timer.Dispose(); + timer = null; + } + } + + private void HandleClear(ChangeEventArgs args) + { + if (args is not null && string.IsNullOrWhiteSpace(args.Value?.ToString())) + { + DisposeTimer(); + filteresSelectedEmails = null; + SearchValue = string.Empty; + StateHasChanged(); + } + } + + + /////////////////////////////////////// + //////Email Search Section //////////// + /////////////////////////////////////// + + + [CascadingParameter] IModalService ModalInputPopup { get; set; } = default!; + + private async Task ShowAddEmailModal(int timelineID) + { + var parameters = new ModalParameters() + .Add(nameof(ApplicationTracker.allSenders), allSenders); + + var inputPopupModal = ModalInputPopup.Show("Passing Data", parameters); + var result = await inputPopupModal.Result; + + if (result.Confirmed) + { + string newEmail = result.Data?.ToString(); + if (newEmail != "") + { + int index = timelines.FindIndex(tl => tl.timelineID == timelineID); + + if (!timelines[index].associatedEmailAddresses.Contains(newEmail)) + { + timelines[index].associatedEmailAddresses.Add(newEmail); + } + else + { + expandActions = false; + expandAssociatedEmails = true; + expandedEmailsTimeline = timelineID; + StateHasChanged(); + return; + + } + + expandActions = false; + expandAssociatedEmails = true; + expandedEmailsTimeline = timelineID; + StateHasChanged(); + + var response = await backendApiService.addEmail(newEmail, Username, timelineID); + + var fetchedEmails = await GetEmailsFromAddresses(new HashSet(new [] {newEmail})); + bool newHasUnread = fetchedEmails.Exists(msg => msg.IsRead.HasValue ? !msg.IsRead.Value : false); + if (response) + { + index = timelines.FindIndex(tl => tl.timelineID == timelineID); + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID); + if (index != -1) + { + + newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails ? true : newHasUnread; + timelines[index] = newTimeline; + HandleSortCriterionChange(); + StateHasChanged(); + } + } + + } + } + } + + private async Task ShowAddTimelineModal() + { + var inputPopupModal = ModalInputPopup.Show(); + var result = await inputPopupModal.Result; + + if (result.Confirmed) + { + TimelineBson? newTimelineBson = result.Data as TimelineBson; + if (newTimelineBson != null) + { + int newTimelineID = await backendApiService.addTimeline(Username, newTimelineBson); + if (newTimelineID != -1) + { + try + { + ApplicationTimeline newTimeline = await backendApiService.getUserTimelineAsync(Username, newTimelineID); + timelines.Add(newTimeline); + HandleSortCriterionChange(); + HandleDisplayChange(); + StateHasChanged(); + } + catch + { + ; + } + } + + } + + } + } + + private async Task ShowAddAssessmentModal(ApplicationTimeline timeline) + { + var assessmentModal = ModalInputPopup.Show(); + var result = await assessmentModal.Result; + int timelineID = timeline.timelineID; + + if (result.Confirmed) + { + Assessment? newAssessment = result.Data as Assessment; + if (newAssessment != null) + { + timeline.assessments.Add(newAssessment); + timeline.assessments.OrderBy(a => a.date); + StateHasChanged(); + var response = await backendApiService.addAssessment(newAssessment, Username, timelineID); + if (response) + { + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timelineID); + int index = timelines.FindIndex(tl => tl.timelineID == timelineID); + if (index != -1) + { + newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails; + timelines[index] = newTimeline; + StateHasChanged(); + } + } + + } + } + } + + private async Task ShowRemoveTimelineModal(int timelineID) + { + var removeTimelinePopup = ModalInputPopup.Show(); + var result = await removeTimelinePopup.Result; + + if (result.Confirmed) + { + timelines.RemoveAll(tl => tl.timelineID == timelineID); + var response = await backendApiService.removeTimeline(Username, timelineID); + if (!response) + { + timelines = await backendApiService.getUserTimelinesAsync(Username); + HandleSortCriterionChange(); + StateHasChanged(); + } + } + } + + /////////////////////////////////////// + ////// Calendar view ///////////// + /////////////////////////////////////// + public List>? GetSortedAssessments() + { + List<(int, Assessment)>? flattenedTimelines = timelines? + .SelectMany(timeline => timeline.assessments + .Select(a => (timeline.timelineID, a))) + .ToList(); + + var sortedAssessments = flattenedTimelines?.GroupBy(a => new DateTimeOffset(a.Item2.date.Date, TimeSpan.Zero)).OrderBy(ag => ag.Key).ToList(); + + return sortedAssessments; + } + + public int GetPaneTimelineIndex(int timelineID) + { + int index = timelines.FindIndex(tl => tl.timelineID == timelineID); + return index; + } + + public void HandleDisplayChange(){ + if(displayMode == DisplayMode.Calendar_Display){ + sortedAssessments = GetSortedAssessments(); + } + StateHasChanged(); + } + /////////////////////////////////////// + ////// Calendar view ///////////// + /////////////////////////////////////// + + + /////////////////////////////////////// + ////// AI stuff ///////////// + /////////////////////////////////////// + + + public bool AppendAssessment(ApplicationTimeline timeline, Assessment newAssessment) + { + //Console.WriteLine($"newTime::::::::: {newAssessment.date}"); + if ((timeline.assessments.Count() == 0)) + { + timeline.assessments.Add(newAssessment); + return true; + } + + if (newAssessment.date == DateTimeOffset.MinValue) + { + timeline.assessments.Insert(0, newAssessment); + return true; + } + + for(int i = 0; i < timeline.assessments.Count(); i++) + { + var currentAssessment = timeline.assessments[i]; + if (newAssessment.date < currentAssessment.date){ + timeline.assessments.Insert(i, newAssessment); + return true; + } + else if (newAssessment.date == currentAssessment.date) + { + return false; + } + else if (i == (timeline.assessments.Count() - 1)){ + timeline.assessments.Add(newAssessment); + return true; + } + } + + return false; + } + + + + public async Task AutofillAssessments(ApplicationTimeline timeline) + { + + fillingAssessments = true; + fillingAssessmentsTimeline = timeline.timelineID; + HashSet allAssociatedEmailStrings = new(); + List? fetchedEmails = new(); + + if (timeline.associatedEmailAddresses.Count() == 0) + { + selectedAssociatedEmails = new List(); + StateHasChanged(); + return; + } + + foreach (var email in timeline.associatedEmailAddresses) + { + allAssociatedEmailStrings.Add(email); + } + + fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings); + //selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList(); + if (fetchedEmails != null) + { + selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList(); + } + + emailsShowing = false; + selectedEmail = null; + + string prompt; + List predictedAssessments = new(); + bool assessmentsUpdated = false; + autofillProgress = 0; + int emailCount = selectedAssociatedEmails.Count(); + int counter = 0; + + foreach(var email in selectedAssociatedEmails){ + //var body = new MarkupString(email.Body.Content); + string plainTextBody = Regex.Replace(email.Body.Content, "<.*?>", ""); + string dateOfEmail = Regex.Replace(email.CreatedDateTime.ToString(), "<.*?>", ""); + //Console.WriteLine($"Body || {plainTextBody} || End of body"); + if(plainTextBody.Count() < 10) + { + continue; + } + + prompt = $@"Please analyze the given email body and determine if it is an invitation to a job application assessment/interview. Fill in the fields of a JSON object with the following structure: {{'IsAssessmentInvitation': 'bool', 'Type': 'AssessmentType', 'Status': 'AssessmentStatus', 'AssessmentDate': 'DateTime', 'CustomDescription': 'string'}}. + + AssessmentType: Online_HR_Interview, In_Person_HR_Interview, Online_Technical_Interview, In_Person_Technical_Interview, Online_Assessment, Manager_Interview, Custom + AssessmentStatus: Scheduled, Passed, Pending, Failed + IsAssessmentInvitation: true, false + AssessmentDate: DateTime (with format 'yyyy-MM-dd HH:mm:ss') + CustomDescription: string + + Email Body: + {plainTextBody} + + Your response should be a string which can directly be deserialized when I pass it into JsonConvert.DeserializeObject() in C#. + If the IsAssessmentInvitation field is false, the rest of the fields shoudl be 'null'. Custom Description shouldn't be null only if the AssessmentType is 'Custom'. + If no year is given, base times off the email being sent on {dateOfEmail}."; + + //Console.WriteLine("Start of Json||" + completion + "||End of Json"); + try + { + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + int startIndex = completion.IndexOf('{'); + int endIndex = completion.LastIndexOf('}'); + string jsonString = completion.Substring(startIndex, endIndex - startIndex + 1); + AssessmentAIResponse? AIResponse = JsonConvert.DeserializeObject(jsonString); + if (AIResponse != null) + { + if (AIResponse.IsAssessmentInvitation) + { + DateTimeOffset parsedDateTime; + DateTimeOffset newDate = DateTimeOffset.TryParse(AIResponse.AssessmentDate, out parsedDateTime) ? parsedDateTime : DateTimeOffset.MinValue; + var newAssessment = new Assessment { + status = newDate <= DateTimeOffset.Now ? AssessmentStatus.Pending : AssessmentStatus.Scheduled, + type = AIResponse.Type.HasValue ? AIResponse.Type.Value : AssessmentType.Online_Technical_Interview, + date = newDate, + todoScheduled = false, + taskId = null, + customDescription = AIResponse.CustomDescription + }; + bool newAssessmentsUpdated = AppendAssessment(timeline, newAssessment); + if (newAssessmentsUpdated) + { + StateHasChanged(); + assessmentsUpdated = true; + } + } + + } + } + catch (Exception ex) + { + ; + } + counter += 100; + autofillProgress = (counter/emailCount); + Console.WriteLine(autofillProgress); + StateHasChanged(); + } + + if (assessmentsUpdated) + { + int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID); + var response = await backendApiService.updateAssessments(timeline.assessments, Username, timeline.timelineID); + if (response) + { + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID); + if (index != -1) + { + newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails; + timelines[index] = newTimeline; + StateHasChanged(); + } + } + + } + fillingAssessmentsTimeline = -1; + autofillProgress = 0; + fillingAssessments = false; + } + + public async Task AutofillAssessmentsV2(ApplicationTimeline timeline) + { + + fillingAssessments = true; + fillingAssessmentsTimeline = timeline.timelineID; + HashSet allAssociatedEmailStrings = new(); + List? fetchedEmails = new(); + + if (timeline.associatedEmailAddresses.Count() == 0) + { + selectedAssociatedEmails = new List(); + StateHasChanged(); + return; + } + + foreach (var email in timeline.associatedEmailAddresses) + { + allAssociatedEmailStrings.Add(email); + } + fetchedEmails = await GetEmailsFromAddresses(allAssociatedEmailStrings); + //selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList(); + if (fetchedEmails != null) + { + selectedAssociatedEmails = fetchedEmails.OrderByDescending(m => m.ReceivedDateTime).ToList(); + } + + emailsShowing = false; + selectedEmail = null; + + string prompt; + List predictedAssessments = new(); + + foreach(var email in selectedAssociatedEmails){ + //var body = new MarkupString(email.Body.Content); + string plainTextBody = Regex.Replace(email.Body.Content, "<.*?>", ""); + string dateOfEmail = Regex.Replace(email.CreatedDateTime.ToString(), "<.*?>", ""); + Console.WriteLine($"Body || {plainTextBody} || End of body"); + if(plainTextBody.Count() < 10) + { + continue; + } + @* prompt = $"Based on the email body I provide further on, fill the following json file based on if you think it is an invitation to an assessment: {{IsAssessmentInvitation: 'bool', type:'AssessmentType', status:'AssessmentStatus', AssessmentDate:'DateTime'}}. This is the email body: {plainTextBody}. Use these definitions for AssessmentType and AssessmentStatus: "+ + @" public enum AssessmentType + {{ + Online_HR_Interview, + In_Person_HR_Interview, + Online_Technical_Interview, + In_Person_Technical_Interview, + Online_Assessment, + Manager_Interview, + Custom + }} + public enum AssessmentStatus + {{ + Scheduled, + Passed, + Pending, + Failed + }}. Only fill in 'true' for IsAssessmentInvitation if you belive the email is an assessment invitation and be strickt about that. + The other Json fields can be null if it is not. Return A string in Json format so I can directly desirealize it into Json In my C# code by JsonConvert.DeserializeObject(response)" ; *@ + + prompt = $@"Please analyze the given email body and determine if it is an invitation to a job application assessment/interview. Fill in the fields of a JSON object with the following structure: {{'IsAssessmentInvitation': 'bool', 'Type': 'AssessmentType', 'Status': 'AssessmentStatus', 'AssessmentDate': 'DateTime', 'CustomDescription': 'string'}}. + + AssessmentType: Online_HR_Interview, In_Person_HR_Interview, Online_Technical_Interview, In_Person_Technical_Interview, Online_Assessment, Manager_Interview, Custom + AssessmentStatus: Scheduled, Passed, Pending, Failed + IsAssessmentInvitation: true, false + AssessmentDate: DateTime (with format 'yyyy-MM-dd HH:mm:ss') + CustomDescription: string + + Email Body: + {plainTextBody} + + Your response should be a string which can directly be deserialized when I pass it into JsonConvert.DeserializeObject() in C#. + If the IsAssessmentInvitation field is false, the rest of the fields should be 'null'. Custom Description shouldn't be null only if the AssessmentType is 'Custom'. + If no year is given, base times off the email being sent on {dateOfEmail}."; + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + + try + { + int startIndex = completion.IndexOf('{'); + int endIndex = completion.LastIndexOf('}'); + string jsonString = completion.Substring(startIndex, endIndex - startIndex + 1); + AssessmentAIResponse? response = JsonConvert.DeserializeObject(jsonString); + if (response != null){ + predictedAssessments.Add(response); + } + } + catch (Exception ex) + { + ; + } + } + if (predictedAssessments.Count() != 0) + { + List newAssessments; + newAssessments = predictedAssessments + .Where(pa => pa.IsAssessmentInvitation) + .Select(pa => { + DateTimeOffset parsedDateTime; + DateTimeOffset newDate = DateTimeOffset.TryParse(pa.AssessmentDate, out parsedDateTime) ? parsedDateTime : DateTimeOffset.MinValue; + return new Assessment { + status = newDate <= DateTimeOffset.Now ? AssessmentStatus.Pending : AssessmentStatus.Scheduled, + type = pa.Type.HasValue ? pa.Type.Value : AssessmentType.Online_Technical_Interview, + date = newDate, + todoScheduled = false, + taskId = null, + customDescription = pa.CustomDescription + }; + }) + .GroupBy(pa => pa.date) + .SelectMany(g => g.Key == DateTimeOffset.MinValue ? g : g.Take(1)) + .ToList(); + + if (newAssessments.Count() != 0) + { + timeline.assessments.AddRange(newAssessments); + timeline.assessments.Sort((a1, a2) => a1.date.CompareTo(a2.date)); + fillingAssessmentsTimeline = -1; + fillingAssessments = false; + StateHasChanged(); + + int index = timelines.FindIndex(tl => tl.timelineID == timeline.timelineID); + var response = await backendApiService.addAssessments(newAssessments, Username, timeline.timelineID); + if (response) + { + var newTimeline = await backendApiService.getUserTimelineAsync(Username, timeline.timelineID); + if (index != -1) + { + newTimeline.hasUnreadEmails = timelines[index].hasUnreadEmails; + timelines[index] = newTimeline; + StateHasChanged(); + } + } + + } + + } + fillingAssessmentsTimeline = -1; + fillingAssessments = false; + + } + + + /////////////////////////////////////// + ///////// AI stuff /////////// + /////////////////////////////////////// + + private async Task?> GetEmailsFromAddresses(HashSet emailAddresses) + { + var emailFilters = emailAddresses.Select(email => $"from/emailAddress/address eq '{email}'"); + var filter = string.Join(" or ", emailFilters); + + var result = await graphClient.Me.Messages.GetAsync((requestConfiguration) => + { + requestConfiguration.QueryParameters.Filter = filter; + requestConfiguration.QueryParameters.Top = 999; + }); + + return result?.Value; + } + + + private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId) + { + // Time zone returned by Graph could be Windows or IANA style + // TimeZoneConverter can take either + TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId); + + // Assumes Sunday as first day of week + int diff = System.DayOfWeek.Sunday - today.DayOfWeek; + + // create date as unspecified kind + var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified); + + // convert to UTC + return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone); + } + + private string FormatIso8601DateTime(string? iso8601DateTime) + { + if (string.IsNullOrEmpty(iso8601DateTime)) + { + return string.Empty; + } + + // Load into a DateTime + var dateTime = DateTime.Parse(iso8601DateTime); + + if (!string.IsNullOrWhiteSpace(dateTimeFormat)) + { + // Format it using the user's settings + return dateTime.ToString(dateTimeFormat); + } + + // Fallback to return original value + return iso8601DateTime; + } + + + } diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Authentication.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Authentication.razor new file mode 100644 index 000000000..5092e0ff2 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Authentication.razor @@ -0,0 +1,37 @@ +@page "/authentication/{action}" +@using Microsoft.AspNetCore.Components; +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication; + +@using System.Threading.Tasks; + +@using Microsoft.JSInterop + +@inject IJSRuntime JSRuntime + + + + +@code { + [Parameter] public string? Action { get; set; } + + private static RenderFragment LogInFailedFragment(string message) + { + return builder => + { + builder.OpenElement(0, "div"); + builder.AddAttribute(1, "class", "alert alert-danger"); + builder.AddAttribute(2, "role", "alert"); + builder.OpenElement(3, "p"); + builder.AddContent(4, "There was an error trying to log you in."); + builder.CloseElement(); + if (!string.IsNullOrEmpty(message)) + { + builder.OpenElement(5, "p"); + builder.AddContent(6, $"Error: {message}"); + builder.CloseElement(); + } + builder.CloseElement(); + }; + } + +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Calendar.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Calendar.razor new file mode 100644 index 000000000..2e09a4330 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Calendar.razor @@ -0,0 +1,905 @@ +@page "/calendar" +@using System.Security.Authentication +@using TimeZoneConverter +@using System.IO; +@using Azure +@using Azure.AI.OpenAI +@using System.Text +@using Microsoft.Graph.Beta + + +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject GraphSample.AI.OpenAIService OpenAIService + +@inject GraphSampleBeta.Graph.GraphClientFactoryBeta clientFactory + + + + + + + + + @* *@ +
+
+

Add Event

+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+

@MonthToText() @year

+
+ + + +
+ + + + + + + + + + + + + + @for (int r = 0; r < rowsCount; r++) + { + + @foreach (var item in days.Skip(r * 7).Take(7)) + { + if (item.Date == DateTime.Now.Date) + { + + } + else + { + if (selectedDay.Date.ToString()[0..10] == "01/01/0001") + { + + } + else + { + if (item.Date.ToString()[0..10] == selectedDay.Date.ToString()[0..10]) + { + + } + else + { + + } + } + } + } + + } + +
SunMonTueWedThuFriSat
+ @DayTemplate(item) + @DayTemplate(item) + @DayTemplate(item) + @DayTemplate(item)
+
+
+
+ @if (selectedDay.Date == DateTime.Now.Date) + { +

Events for today

+ } + else if (selectedDay.Date.ToString()[0..10] == "01/01/0001") + { + +

Events

+ } + else + { +

Events for @selectedDay.Date.ToString()[0..10]

+ } + + + + + + + + @* *@ + + @* *@ + + + + @if (getEventsOfSelectedDay(selectedDay).Count == 0) + { + + + + } + else + { + @foreach (var e in getEventsOfSelectedDay(selectedDay)) + { + if (!(bool)e.IsOnlineMeeting) + { + + + + + + + + + } + + else + { + + Didn't attend? Summarize this call + + + + + + + + + + + } + + } + } + +
OrganizerSubjectStart DayEnd DayStart TimeEnd Time
No events for this day
@e?.Organizer?.EmailAddress?.Name@e?.Subject@FormatIso8601DateTime(e?.Start?.DateTime).ToString()[0..10]@FormatIso8601DateTime(e?.Start?.DateTime).ToString()[11..16]
@e?.Organizer?.EmailAddress?.Name@e?.Subject@FormatIso8601DateTime(e?.Start?.DateTime).ToString()[0..10]@FormatIso8601DateTime(e?.Start?.DateTime).ToString()[11..16]
+
+
+ + + + + + +
+ + + +
+ +@code { + + @* --------------------------------------defintiions and calendar ------------------------ *@ + public class CalendarDay + { + public int DayNumber { get; set; } + public DateTime Date { get; set; } + public bool IsEmpty { get; set; } + public List dayEvents { get; set; } = new List(); + } + + private List days = new List(); + private int year = DateTime.Now.Year; + private int month = DateTime.Now.Month; + private int rowsCount = 0; + + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + private GraphServiceClient? graphClient; + public IList events = new List(); + private string? dateTimeFormat; + public CalendarDay selectedDay = new CalendarDay(); + + public string subject { get; set; } = ""; + private string attendees { get; set; } = string.Empty; + private DateTime start = new DateTime(DateTime.Today.Ticks); + private DateTime end = new DateTime(DateTime.Today.Ticks); + private string body = string.Empty; + private string userTimeZone = string.Empty; + protected string summary = ""; + private FluentDialog? MyFluentDialog; + + @* ---------------------------------initilaisation ------------------------------------------- *@ + protected override async Task OnInitializedAsync() + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + var user = (await authenticationStateTask).User; + userTimeZone = (await authenticationStateTask).User.GetUserGraphTimeZone() ?? "UTC"; + graphClient = clientFactory.GetAuthenticatedClient(); + var dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}"; + var eventPage = await graphClient.Me + .Calendar.Events + .GetAsync(config => + { + config.Headers.Add("Prefer", $"outlook.timezone=\"{userTimeZone}\""); + }); + @* var eventPage = await graphClient.Me.Calendar.Events.GetAsync(); *@ + events = eventPage?.Value ?? new List(); + + foreach (var e in events) + { + Console.WriteLine(e.ToString()); + } + + await base.OnInitializedAsync(); + await LoadCalendar(); + StateHasChanged(); + } + + private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId) + { + TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId); + int diff = System.DayOfWeek.Sunday - today.DayOfWeek; + var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified); + return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone); + } + + private string FormatIso8601DateTime(string? iso8601DateTime) + { + if (string.IsNullOrEmpty(iso8601DateTime)) + { + return string.Empty; + } + // Load into a DateTime + var dateTime = DateTime.Parse(iso8601DateTime); + if (!string.IsNullOrWhiteSpace(dateTimeFormat)) + { + // Format it using the user's settings + return dateTime.ToString(dateTimeFormat); + } + + // Fallback to return original value + return iso8601DateTime; + } + + + + @* -----------------------------building and making calendar ----------------------------------------- *@ + + [Parameter] + public RenderFragment DayTemplate { get; set; } = DefaultDayTemplate; + private static RenderFragment DefaultDayTemplate = (day) => builder => + { + if (day.DayNumber != 0) + { + builder.OpenElement(1, "div"); // Create a container div for the day + + builder.OpenElement(2, "div"); // Create a div for the day number + builder.AddContent(3, day.DayNumber); + builder.CloseElement(); + + // Display the events for the day + if (day.dayEvents != null) + { + if (day.dayEvents.Count > 0) + { + builder.OpenElement(4, "div"); // Create a div for ellipses + builder.AddContent(5, "..."); + builder.CloseElement(); + } + } + builder.CloseElement(); // Close the container div + } + }; + public async Task LoadCalendar() + { + List GenerateEmptyDays(int numberOfEmptyDays) + { + return Enumerable.Range(0, numberOfEmptyDays) + .Select(_ => new CalendarDay { DayNumber = 0, IsEmpty = true }) + .ToList(); + } + + List GenerateMonthDays() + { + int numberOfDaysInMonth = DateTime.DaysInMonth(year, month); + + return Enumerable.Range(1, numberOfDaysInMonth) + .Select(day => new CalendarDay + { + DayNumber = day, + IsEmpty = false, + Date = new DateTime(year, month, day), + dayEvents = new List() + }) + .ToList(); + } + + int CalculateNumberOfEmptyDays() + { + var firstDayDate = new DateTime(year, month, 1); + int weekDayNumber = (int)firstDayDate.DayOfWeek; + return weekDayNumber == 7 ? 0 : weekDayNumber; + } + + int CalculateRowsCount(int totalDays) + { + return totalDays % 7 == 0 + ? totalDays / 7 + : Convert.ToInt32(totalDays / 7) + 1; + } + + days = new List(); + + int numberOfEmptyDays = CalculateNumberOfEmptyDays(); + days.AddRange(GenerateEmptyDays(numberOfEmptyDays)); + + days.AddRange(GenerateMonthDays()); + + rowsCount = CalculateRowsCount(days.Count); + + foreach (var day in days) + { + day.dayEvents = getEventsofToday(day); + } + } + public string MonthToText() + { + switch (month) + { + case 1: return "January"; + case 2: return "February"; + case 3: return "March"; + case 4: return "April"; + case 5: return "May"; + case 6: return "June"; + case 7: return "July"; + case 8: return "August"; + case 9: return "September"; + case 10: return "October"; + case 11: return "November"; + case 12: return "December"; + default: return ""; + } + } + public async Task NextMonth() + { + (int updatedMonth, int updatedYear) = month == 12 + ? (1, year + 1) + : (month + 1, year); + + month = updatedMonth; + year = updatedYear; + + MonthToText(); + await LoadCalendar(); + StateHasChanged(); + } + + public async Task PreviousMonth() + { + (int updatedMonth, int updatedYear) = month == 1 + ? (12, year - 1) + : (month - 1, year); + + month = updatedMonth; + year = updatedYear; + + await LoadCalendar(); + StateHasChanged(); + } + public async Task Today() + { + selectedDay.Date = DateTime.Now.Date; + selectedDay.dayEvents = getEventsofToday(selectedDay); + month = DateTime.Now.Month; + year = DateTime.Now.Year; + await LoadCalendar(); + StateHasChanged(); + } + + @* --------------------------------------Events ---------------------------------------- *@ + public async Task> deleteItem(List e, Microsoft.Graph.Beta.Models.Event item) + { + e.Remove(item); + await graphClient.Me.Events[item.Id].DeleteAsync(); + StateHasChanged(); + return e; + } + + public List getEventsOfSelectedDay(CalendarDay day) + { + selectedDay = day; + return selectedDay.dayEvents; + } + + public List getEventsofToday(CalendarDay day) + { + List eventsOfDay = new List(); + foreach (var e in events) + { + if (((e.Start.DateTime).ToString()[0..10]).Split("-")[0] == ((day.Date).ToString()[0..10]).Split("/")[2] && + ((e.Start.DateTime).ToString()[0..10]).Split("-")[1] == ((day.Date).ToString()[0..10]).Split("/")[1] && + ((e.Start.DateTime).ToString()[0..10]).Split("-")[2] == ((day.Date).ToString()[0..10]).Split("/")[0]) + { + eventsOfDay.Add(e); + } + } + return eventsOfDay; + } + + + @* ----------------------------------------Adding Events --------------------------- *@ + public async Task AddEvent() + { + var newEvent = new Microsoft.Graph.Beta.Models.Event + { + Subject = subject, + Body = new Microsoft.Graph.Beta.Models.ItemBody + { + ContentType = Microsoft.Graph.Beta.Models.BodyType.Text, + Content = body + }, + Start = new Microsoft.Graph.Beta.Models.DateTimeTimeZone + { + DateTime = start.ToString("o"), + TimeZone = userTimeZone + }, + End = new Microsoft.Graph.Beta.Models.DateTimeTimeZone + { + DateTime = end.ToString("o"), + TimeZone = userTimeZone + }, + Attendees = new List() + }; + + var attendeesArray = attendees.Split(';'); + foreach (var attendee in attendeesArray) + { + newEvent.Attendees.Add(new Microsoft.Graph.Beta.Models.Attendee + { + EmailAddress = new Microsoft.Graph.Beta.Models.EmailAddress + { + Address = attendee.Trim() + }, + Type = Microsoft.Graph.Beta.Models.AttendeeType.Required + }); + } + + try + { + await graphClient.Me + .Events + .PostAsync(newEvent); + events = await getEvents(); + Console.WriteLine(userTimeZone.ToString()); + subject = ""; + attendees = ""; + start = new DateTime(DateTime.Today.Ticks); + end = new DateTime(DateTime.Today.Ticks); + body = ""; + } + catch (Exception ex) + { + Console.WriteLine(ex.Message); + } + } + + public async Task> getEvents() + { + graphClient = clientFactory.GetAuthenticatedClient(); + var eventPage = await graphClient.Me + .Calendar.Events + .GetAsync(config => + { + config.Headers.Add("Prefer", $"outlook.timezone=\"{userTimeZone}\""); + }); + events = eventPage?.Value ?? new List(); + await LoadCalendar(); + return events.ToList(); + } + + @* get free schedule *@ + + public async Task GetFreeSchedule() + { + // Code snippets are only available for the latest version. Current version is 5.x + + var graphClient = clientFactory.GetAuthenticatedClient(); + + @* turn this into a string list seperated by commas *@ + var attendeesArray = attendees.Split(';'); + var schedulesTemp = new List(); + foreach (string attendee in attendeesArray) + { + schedulesTemp.Add(attendee.Trim()); + }; + + + + + var requestBody = new Microsoft.Graph.Beta.Me.Calendar.GetSchedule.GetSchedulePostRequestBody + { + + Schedules = schedulesTemp, + + + StartTime = new Microsoft.Graph.Beta.Models.DateTimeTimeZone + { + DateTime = start.ToString("o"), + TimeZone = userTimeZone + }, + EndTime = new Microsoft.Graph.Beta.Models.DateTimeTimeZone + { + DateTime = end.ToString("o"), + TimeZone = userTimeZone + }, + AvailabilityViewInterval = 60, + }; + var result = await graphClient.Me.Calendar.GetSchedule.PostAsync(requestBody, (requestConfiguration) => + { + requestConfiguration.Headers.Add("Prefer", "outlook.timezone=\"Pacific Standard Time\""); + }); + } + + + + @* ---------------------------------------- AI Transcript Function --------------------------- *@ + + + protected override void OnAfterRender(bool firstRender) + { + if (firstRender) + MyFluentDialog!.Hide(); + } + + + private void OnOpen() + { + MyFluentDialog!.Show(); + } + + private void OnDismiss(DialogEventArgs args) + { + if (args is not null && args.Reason is not null && args.Reason == "dismiss") + { + MyFluentDialog!.Hide(); + } + } + + + protected async void GetContent(string meetingLink) + { + OnOpen(); + var originalString = "JoinWebUrl eq '1234'"; + string modifiedLink = originalString.Replace("'1234'", $"'{meetingLink}'"); + + Console.WriteLine(modifiedLink); + + var me = await graphClient.Me.GetAsync(); + + var meetingInfo = await graphClient.Me.OnlineMeetings.GetAsync((requestConfiguration) => + { + requestConfiguration.QueryParameters.Filter = modifiedLink; + }); + + var transcripts2 = await graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts.GetAsync(); + + + var requestInformation = graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts[transcripts2.Value[0].Id].Content.ToGetRequestInformation(); + requestInformation.UrlTemplate += "{?format}"; // Add the format query parameter to the template and query parameter. + requestInformation.QueryParameters.Add("format", "text/vtt"); + var content2 = await graphClient.RequestAdapter.SendPrimitiveAsync(requestInformation); + + var string2 = ConvertWebVttStreamToString(content2); + + await SummarizeText(string2); + StateHasChanged(); + //Console.WriteLine(summary); + } + + + protected string ConvertWebVttStreamToString(Stream? stream) + { + using (StreamReader reader = new StreamReader(stream, Encoding.UTF8)) + { + return reader.ReadToEnd(); + } + } + + // Event handler for the "Summarize" button click + protected async Task SummarizeText(string content) + { + + // Perform summarization until the overall summary is less than 3000 characters + var summaries = new List(); + var overallSummary = ""; + + // Split the content into smaller chunks + var chunkSize = 750; // Adjust this value as per your model's character limit + var chunks = SplitContentIntoChunks(content, chunkSize); + + // Perform summarization for each chunk + foreach (var chunk in chunks) + { + string prompt = $"Provide an executive level summary for the following meeting transcript in detail, assume the person was not able to attend this meeting. Ignore any timestamps and tags:\n\n{chunk}\n"; + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + + summaries.Add(completion); + string finish = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + + summaries.Add(completionFinish2); + } + + // Combine the individual summaries into an overall summary + overallSummary = string.Join(" ", summaries); + + //Break the loop if the overall summary exceeds 2500 characters + if (overallSummary.Length >= 5000) + { + summaries.Clear(); + + string prompt = $"This summary is slightly too long, please rewrite without losing any detail but in a more concise way:\n\n{overallSummary}\n"; + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + + summaries.Add(completion); + string finish = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + + summaries.Add(completionFinish2); + } + + //Break the loop if the overall summary exceeds 2500 characters + else if (overallSummary.Length <= 500) + { + summaries.Clear(); + + string prompt = $"This summary is slightly too short, please rewrite without losing any detail but in a more easy to understand way, including any extra details that would help:\n\n{overallSummary}\n"; + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + + summaries.Add(completion); + string finish = $"Keep summarising:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + + summaries.Add(completionFinish2); + } + + overallSummary = string.Join(" ", summaries); + summaries.Clear(); + summary = overallSummary; + Console.WriteLine("Generated AI summary"); + + } + + // Helper method to split the content into smaller chunks + private IEnumerable SplitContentIntoChunks(string content, int chunkSize) + { + var sentences = content.Split('.', '!', '?'); + var currentChunk = new StringBuilder(); + + foreach (var sentence in sentences) + { + if (currentChunk.Length + sentence.Length + 1 <= chunkSize) + { + currentChunk.Append(sentence).Append('.'); + } + else + { + yield return currentChunk.ToString(); + currentChunk.Clear().Append(sentence).Append('.'); + } + } + + if (currentChunk.Length > 0) + { + yield return currentChunk.ToString(); + } + } + + +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Chat.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Chat.razor new file mode 100644 index 000000000..8e6a6cd9a --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Chat.razor @@ -0,0 +1,482 @@ +@page "/chat" +@using System.Security.Authentication +@using System.Text +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@using Microsoft.Extensions.Logging +@using GrapeCity.Documents.Pdf +@using Azure +@using Azure.AI.OpenAI +@using static System.Environment +@using Microsoft.Fast.Components.FluentUI +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication +@using Newtonsoft.Json; + + +@inject GraphSample.Graph.GraphClientFactory clientFactory + + + + + + + + + +
+ +
+
+
+ + @foreach (var key in messages) + { + +
+ @key +
+ + @if (mesReply[key].Length < 1) + { + +
+ Typing.... +
+ } + else + { +
+ @mesReply[key] +
+ + } + + } +
+ +
+ Create To Do + Today's Weather + @* Schedule Meeting *@ +
+ +
+ + + +
+ +
+ +
+ +
+ @* use a chat icon here *@ + +
+ + +
+ +
+ + + + +
+ + +@code { + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + + private GraphServiceClient? graphClient; + protected string value3 = string.Empty; + public List messages = new List(); + private FluentDialog? MyFluentDialog; + public bool Modal = true; + Dictionary mesReply = new Dictionary(); + protected string reply = string.Empty; + private OpenAIService? openAIService; + public bool creating = false; + private string[]? todolist; + private string? todoStart; + private string todoTasks; + + Dictionary TaskDict = new Dictionary(); + + public bool Todo = false; + + public bool Weather = false; + + + private string selectedList = "Tasks"; + + private IList toDos = new List(); + + private string weatherData; + + public string weatherReply; + + + + protected override void OnAfterRender(bool firstRender) + { + if (firstRender) + MyFluentDialog!.Hide(); + } + + + private void OnOpen() + { + MyFluentDialog!.Show(); + + } + + private void OnDismiss(DialogEventArgs args) + { + if (args is not null && args.Reason is not null && args.Reason == "dismiss") + { + MyFluentDialog!.Hide(); + } + } + private void OnCloseModalRefButtonClick() => MyFluentDialog!.Hide(); + + protected override async Task OnInitializedAsync() + { + + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + var user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + + openAIService = new OpenAIService(); // Create an instance of the 'OpenAIService' + + var getLists = await graphClient.Me.Todo.Lists.GetAsync(); + toDos = getLists?.Value ?? new List(); + + foreach(var item in toDos) + { + if (item == null) + { + throw new ArgumentNullException(nameof(item)); + } + if (item.DisplayName == "Tasks"){ + selectedList = item.Id; + } + } + } + + private void HandleInput(ChangeEventArgs e) + { + value3 = e.Value.ToString(); + Console.WriteLine("hi enter"); + } + + private async Task HandleKeyPress(KeyboardEventArgs e) + { + if (e.Key == "Enter") + { + // call the async function from here; + await AddMessage(); + Console.WriteLine("Entered: " + value3); + } + } + + + public async Task AddMessage() + { + messages.Add(value3); + if (!mesReply.ContainsKey(value3)) + { + mesReply.Add(value3, ""); + } + + string temp = value3; + value3 = ""; + StateHasChanged(); + //reply = "Hello World"; + //Console.Write("Entered: " + temp); + if (Todo){ + Console.Write("Entered: " + temp); + await ConvertTasks(temp); + reply = "Your To Do List has been updated"; + Todo = false; + } + /* else if (Weather){ + await GetWeather(); + reply = weatherReply; + Weather = false; + } */ + else{ + await AIAnswer(temp); + } + mesReply[temp] = reply; + StateHasChanged(); + + } + + public async Task TodoPressed() + { + messages.Add("Create To Do List"); + StateHasChanged(); + mesReply["Create To Do List"] = "Please enter your plans for the day"; + Todo = true; + StateHasChanged(); + } + + public async Task WeatherPressed() + { + messages.Add("What is today's weather?"); + mesReply["What is today's weather?"] = ""; + StateHasChanged(); + await GetWeather(); + mesReply["What is today's weather?"] = weatherReply; + StateHasChanged(); + } + + private async Task ConvertTasks(string textValue) + { + creating = true; + Console.WriteLine("Entered: " + textValue); + textValue = textValue + " |||"; + //string completion = "+10:00 - 11:00> Reply to emails +11:00 - 12:00> Schedule a meeting +12:00 - 12:30> Grab morning coffee +12:30 - 13:30> Meet colleague at cafe for lunch +19:00 - 20:00> Meet friend for dinner"; *@ + string prompt = $"Can you create a to-do list including a suitable start time in the form of hh:mm for today according to my plan/plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise, the plans list ends with '|||' : \n {textValue}"; + Console.Write($"Input: {prompt}\n"); + + var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + //string completion = "+06:00 > Grab morning coffee +08:00 > Reply to emails +12:00 > Meet colleague at cafe for lunch +18:00 > Meet friend for dinner +20:00 > Schedule meeting with someone in Toronto"; + Console.WriteLine(completion); + todolist = completion.Split("\n"); + //todolist = completion.Split("+"); + + foreach (string todo in todolist) + { + if (todo.Contains("+") && todo.Contains(">")) + { + todoStart = todo.Split(">")[0].Split("+")[1]; + //todoStart = todo.Split(">")[0]; + todoTasks = todo.Split(">")[1]; + + TaskDict[todoStart] = todoTasks; + await SendToDo(todoTasks, todoStart); + } + } + creating = false; + + } + + private string FarenheitToCelsius(string temp) + { + double tempF = double.Parse(temp); + + double tempC = (tempF - 32) * 5 / 9; + + tempC = Math.Round(tempC); + return tempC.ToString(); + } + + private async Task GetWeather(){ + HttpClient client = new HttpClient(); + + var ip = await client.GetStringAsync("https://api.ipify.org"); + + string myIP = ip.ToString(); + + var loc = await client.GetStringAsync("https://api.ipgeolocation.io/ipgeo?apiKey=128faba391e648aba00fcf3acda914e3&ip="+ myIP); + + dynamic locationUser = JsonConvert.DeserializeObject(loc); + + var response = await client.GetAsync("https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/"+ locationUser.city +"?key=SWMLUUAV7UHPW5NZ6ZQQNK2G6"); + + response.EnsureSuccessStatusCode(); // Throw an exception if error + + weatherData = await response.Content.ReadAsStringAsync(); + + dynamic weather = JsonConvert.DeserializeObject(weatherData); + + + string weather_date = weather.days[0].datetime; + string weather_desc = weather.days[0].description; + string weather_tmaxF = weather.days[0].tempmax; + string weather_tmaxC = FarenheitToCelsius(weather_tmaxF); + string weather_tminF = weather.days[0].tempmin; + string weather_tminC = FarenheitToCelsius(weather_tminF); + + + weatherReply = "The date is " + weather_date + " \nGeneral conditions: " + weather_desc + "\nThe high temperature will be " + weather_tmaxC + " ºC\nThe low temperature will be: " + weather_tminC + " ºC" ; + + + //weatherReply = "General conditions: " + weather_desc + "\nThe high temperature will be " + weather_tmax + "\nThe low temperature will be: " + weather_tmin ; + } + + + private async Task SendToDo(string todoTasks, string todoStart){ + Console.WriteLine(todoStart); + Console.WriteLine("Sending"); + DateTime now = DateTime.UtcNow.Date; // Get the current date in UTC + + // Split the time string into hours and minutes + string[] timeParts = todoStart.Split(':'); + int hours = int.Parse(timeParts[0]); + int minutes = int.Parse(timeParts[1]); + + // Create a new DateTime object with the current date and the specified time + DateTime startTime = now.AddHours(hours).AddMinutes(minutes); + + DateTimeTimeZone dateTimeTimeZone = new DateTimeTimeZone + { + DateTime = startTime.ToString("yyyy-MM-ddTHH:mm:ss"), + TimeZone = TimeZoneInfo.Local.Id + }; + + var requestBody = new TodoTask + { + Title = todoTasks, + ReminderDateTime = dateTimeTimeZone, + }; + + var todoTask = await graphClient.Me.Todo.Lists[selectedList].Tasks + .PostAsync(requestBody); + Console.WriteLine("Sent"); + + } + + + + private async Task AIAnswer(string input) + { + //Given this question respond in a chatgpt like manner and don't take up a real human persona: + //string agenda = "Wake up, make my bed and eat breakfast"; + //string prompt = $"Can you create a to-do list including start time in the form of hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise: \n {textValue}"; + + string prompt = "Given this question respond in a chatgpt like manner and don't take up a real human persona: " + input; + + Console.Write($"Input: {prompt}\n"); + + +/* + CompletionsOptions options = new CompletionsOptions + { + Temperature = 0.1f, // Controls the randomness of the generated completion (0.0 - 1.0) + //Prompts = new[] { prompt }, + }; + + foreach (var item in options.Prompts){ + Console.WriteLine("HERE:"); + Console.WriteLine(item); + }*/ + + var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + foreach (var item in completionsResponse.Value.Choices){ + Console.WriteLine("HERE:"); + Console.WriteLine(item.Text); + } + reply = completion; + Console.Write($"Completion: {completion}\n"); + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Dashbar.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Dashbar.razor new file mode 100644 index 000000000..873a5af18 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Dashbar.razor @@ -0,0 +1,39 @@ + + +
+
+ +
+
diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/EditOneNote.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/EditOneNote.razor new file mode 100644 index 000000000..be0a1be29 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/EditOneNote.razor @@ -0,0 +1,59 @@ +@* @page "/onenote" +@inject IJSRuntime JsRuntime +@using System.Security.Authentication +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject NavigationManager NavigationManager +@using Microsoft.AspNetCore.Components +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication +@using Microsoft.JSInterop +@using Microsoft.Fast.Components.FluentUI + + +@using System.Text; + + + Add to OneNote + + +@code{ + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + + private GraphServiceClient? graphClient; + + [Inject] + protected IAccessTokenProvider AccessTokenProvider { get; set; } + protected string? AccessToken { get; private set; } + + protected override async Task OnInitializedAsync() + { + var tokenResult = await AccessTokenProvider.RequestAccessToken(); + if (tokenResult.TryGetToken(out var accessToken)) + { + AccessToken = accessToken.Value; + } + + + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + var user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + + + + var notebook = new Notebook + { + DisplayName = "My Notebook1" + }; + + var res = await graphClient.Me.Onenote.Notebooks.PatchAsync(notebook); + + Console.WriteLine("notebook", res.Id); + } +} *@ \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Index.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Index.razor new file mode 100644 index 000000000..10039e79f --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Index.razor @@ -0,0 +1,647 @@ +@page "/" +@inject IJSRuntime JsRuntime +@using System.Security.Authentication +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject NavigationManager NavigationManager +@using Microsoft.AspNetCore.Components +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication +@using Microsoft.JSInterop +@using Microsoft.Fast.Components.FluentUI + + +@inject IJSRuntime JSRuntime + + + + + + + + @if (DateTime.UtcNow.Hour >= 6 && DateTime.UtcNow.Hour < 11) + { + var name = context?.User?.Identity?.Name; + if (context?.User?.Identity?.Name.Length > 1) + { + name = context?.User?.Identity?.Name.Split(" ")[0]; + } +
Good Morning, @name
+ } + else if (DateTime.UtcNow.Hour >= 11 && DateTime.UtcNow.Hour < 18) + { + var name = context?.User?.Identity?.Name; + if (context?.User?.Identity?.Name.Length > 1) + { + name = context?.User?.Identity?.Name.Split(" ")[0]; + } +
Good Afternoon, @name
+ } + else + { + var name = context?.User?.Identity?.Name; + if (context?.User?.Identity?.Name.Length > 1) + { + name = context?.User?.Identity?.Name.Split(" ")[0]; + } +
Good Evening, @name
+ } + +
+
+

To Do

+
+ +
+
+
+

What have you missed?

+ @foreach (var mail in allMessages) + { + @if (mail.IsRead == false) + { + string mailId = mail.Id; + string url = "overview/mailid=" + mailId; + + @* link to the *@ + + + } + } +
+
+

Today

+ +
+
+

Teams

+ + + +
+
+
+ +
+ +
+ +
+ + + + +
+ + + +@code{ + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + private GraphServiceClient? graphClient; + private string? dateTimeFormat; + private IList toDos = new List(); + Dictionary TaskLists = new Dictionary(); + private IList allMessages = new List(); + private IList events = new List(); + private IList teams = new List(); + private string status = string.Empty; + private string userTimeZone = string.Empty; + private string subject = string.Empty; + private string attendees = string.Empty; + private DateTime start = new DateTime(DateTime.Today.Ticks); + private DateTime end = new DateTime(DateTime.Today.Ticks); + private string body = string.Empty; + + [Inject] + protected IAccessTokenProvider AccessTokenProvider { get; set; } + protected string? AccessToken { get; private set; } + public int count = 0; + public System.Security.Claims.ClaimsPrincipal user { get; set; } + + [JSInvokable] + private async Task GetAccessToken() + { + return this.AccessToken; + } + + protected override async Task OnInitializedAsync() + { + var tokenResult = await AccessTokenProvider.RequestAccessToken(); + if (tokenResult.TryGetToken(out var accessToken)) + { + AccessToken = accessToken.Value; + count += 1; + } + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + await JSRuntime.InvokeVoidAsync("mgtInterop.configureProvider", AccessToken); + //await RerunToDo(); + //await RerunCal(); + await RerunEmail(); + await BeginTeams(); + } + + public async Task BeginToDos() + { + if (count > 0) + { + var toDoList = await graphClient.Me.Todo.Lists.GetAsync( + config => + { + config.QueryParameters.Top = 5; + } + ); + toDos = toDoList?.Value ?? new List(); + foreach (var item in toDos) + { + if (item == null) + { + throw new ArgumentNullException(nameof(item)); + } + var resultTasks = await graphClient.Me.Todo.Lists[item.Id].Tasks.GetAsync(); + var key = item.DisplayName + "|" + item.Id; + TaskLists[key] = resultTasks; + } + } + } + + public async Task RerunToDo() + { + await BeginToDos(); + } + + public async Task BeginCal() + { + if (count > 0) + { + userTimeZone = user.GetUserGraphTimeZone() ?? "UTC"; + + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + var graphTimeZone = user.GetUserGraphTimeZone(); + dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}"; + DateTime currentDate = DateTime.Now.Date; + DateTime nextDay = currentDate.AddDays(1).Date; + DateTime endDateTime = nextDay.AddSeconds(-1); + + var eventPage = await graphClient.Me + .CalendarView + .GetAsync(config => + { + // Send user time zone in request so date/time in + // response will be in preferred time zone + config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\""); + // Specifies the start and end of the view on the calendar + // Translates to: ?startDateTime=""&endDateTime="" + config.QueryParameters.StartDateTime = currentDate.ToString("o"); + config.QueryParameters.EndDateTime = endDateTime.ToString("o"); + // Get max 50 per request + config.QueryParameters.Top = 50; + // Only return fields app will use + config.QueryParameters.Select = new[] { "subject", "organizer", "start", "end" }; + // Order results chronologically + config.QueryParameters.Orderby = new[] { "start/dateTime" }; + }); + + events = eventPage?.Value ?? new List(); + } + } + + public async Task RerunCal() + { + await BeginCal(); + } + public async Task BeginEmail() + { + // Get the user + if (count > 0) + { + await Task.Delay(1000); + var graphTimeZone = user.GetUserGraphTimeZone(); + dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}"; + + //Get mail from inbox + var mailPage = await graphClient.Me + .MailFolders["Inbox"] + .Messages + .GetAsync(config => + { + config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\""); + config.QueryParameters.Select = new string[] { "subject", "sender", "bodyPreview", "receivedDateTime", "isRead" }; + config.QueryParameters.Orderby = new string[] { "receivedDateTime desc" }; + }); + + allMessages = mailPage?.Value ?? new List(); + } + } + + public async Task RerunEmail() + { + await BeginEmail(); + StateHasChanged(); + } + + public async Task CompleteTask(string ListId, string TaskId) + { + + var requestBody = new TodoTask + { + Status = Microsoft.Graph.Models.TaskStatus.Completed + }; + var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody); + + await BeginToDos(); + Console.WriteLine(result.Status); + StateHasChanged(); + + } + + public async Task DeleteTask(string ListId, string TaskId) + { + + await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].DeleteAsync(); + await BeginToDos(); + StateHasChanged(); + + } + + public async Task UnDoTask(string ListId, string TaskId) + { + var requestBody = new TodoTask + { + Status = Microsoft.Graph.Models.TaskStatus.NotStarted + }; + var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody); + + await BeginToDos(); + Console.WriteLine(result.Status); + StateHasChanged(); + //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true); + } + + public async Task BeginTeams() + { + if (count > 0) + { + + var teamsPage = await graphClient.Me.JoinedTeams + .GetAsync(); + + teams = teamsPage.Value; + + //var res = await graphClient.Teams[teamsPage.Value.Id].Channels.GetAsync(); + + //Console.WriteLine(teamsPage.Value.Count); + } + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor new file mode 100644 index 000000000..59151aee0 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor @@ -0,0 +1,936 @@ +@page "/overview/{ids}" +@using System.Security.Authentication +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@using Microsoft.Fast.Components.FluentUI + +@inject GraphSample.Graph.GraphClientFactory clientFactory + + + + + + + + + +
+
+ + All + @foreach (var group in myGroups) + { + @group.Name + } + + +
+ +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ +
+ Add Filter +
+
+
+ + +
+
+ + + + + + @* OUTLOOK TAB *@ + +
+
+
+ @foreach (var mail in myMessages) + { +
+
+
+

@mail?.Sender?.EmailAddress?.Name

+

@mail?.Subject

+

@mail?.BodyPreview

+
+ + +
+
+
3:30PM
+ @if (@mail?.IsRead == false) {  } + else {  } +
+ +
+ +
+
+
+ } +
+
+ +
+ @if (currentEmail != null) + { +
+
+
+

@currentEmail?.Subject

+

From: @currentEmail?.Sender?.EmailAddress?.Name

+

To: @currentEmail?.ToRecipients?[0].EmailAddress?.Address

+
+ +
+ + + +
+ +
+ +
+
@((MarkupString)currentEmail?.Body?.Content)
+
+ + +
+ } +
+
+
+ + @* TEAMS TAB *@ + +
+
+ @foreach (var team in myTeams) + { +
+
 @team?.DisplayName
+
+ } +
+ +
+ @foreach (var channel in myChannels) + { +
+
 @channel?.DisplayName
+
+ } +
+ +
+ @if (currentChannel != null) + { +
+
    + @foreach (var full in fullPage) + { +
  • +
    +
    +
    @full?.mainMessage?.From?.User?.DisplayName
    +
    @full?.mainMessage?.CreatedDateTime
    + @if (full?.mainMessage?.DeletedDateTime != null) {
    This message has been deleted
    } + else {
    @((MarkupString)full?.mainMessage?.Body?.Content)
    } +
    + +
    + @if (full?.mainMessage?.From.User.Id == myID) + { + + } + +
    +
    +
      + @foreach (var reply in full?.replies) + { +
    • +
      +
      @reply?.From?.User?.DisplayName
      +
      @reply?.CreatedDateTime
      + + @if (reply?.DeletedDateTime != null) {
      This message has been deleted
      } + else {
      @((MarkupString)reply?.Body?.Content)
      } + +
      +
    • + } +
    +
  • + } +
+ + +
+ } +
+
+
+ + @* CHATS TAB *@ + +
+
+ @foreach (var myChat in myChats) + { + @if(myChat?.Topic == null) + { +
+
@myChat?.ChatType
+
+ } + else + { +
+
@myChat?.Topic
+
+ } + } +
+ +
+ +
+ +
+ +
+ +
+
+ +
+ @foreach (var calendarEvent in myEvents) + { +
+

@calendarEvent?.Subject

+ +
+

@FormatIso8601DateTime(calendarEvent?.Start?.DateTime).Substring(0, 10)

+

@FormatIso8601DateTime(calendarEvent?.Start?.DateTime).Substring(11, 5) - @FormatIso8601DateTime(calendarEvent?.Start?.DateTime).Substring(11, 5)

+
+ +

@calendarEvent?.Organizer?.EmailAddress?.Name

+ +
+ } +
+
+ +
+ + + + + +
+ + +
+ +
+ +@code{ + [Parameter] + public string ids{ get; set; } + + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + + private GraphServiceClient? graphClient; + private string? myID; + + private string? dateTimeFormat; + private string? oldData; + + protected override async Task OnInitializedAsync() + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + if (ids != null) { await initialLayout(); } + + graphClient = clientFactory.GetAuthenticatedClient(); + var me = await graphClient.Me.GetAsync(); + myID = me?.Id; + await refreshContent(4); + } + + /* + * REFRESH EVERY 10s + */ + private static System.Timers.Timer _timer; + private int counter = 60; + + protected override void OnInitialized() + { + StartTimer(); + } + + public void StartTimer() + { + _timer = new System.Timers.Timer(5000); + _timer.Elapsed += CountDownTimer; + _timer.Enabled = true; + } + + public async void CountDownTimer(Object source, System.Timers.ElapsedEventArgs e) + { + if (counter > 0) + { + counter -= 1; + } + else + { + _timer.Enabled = false; + } + + await refreshContent(4); + } + + public async Task initialLayout() + { + graphClient = clientFactory.GetAuthenticatedClient(); + string idss = ids; + string[] idArray = idss.Split('=', 2); + + if (idArray[0] == "mailid") + { + myActiveId = "Mail"; + var initMail = await graphClient.Me.Messages[idArray[1]].GetAsync(); + currentEmail = initMail; + } + else if (idArray[0] == "teamid") + { + myActiveId = "Teams"; + var initTeam = await graphClient.Teams[idArray[1]].GetAsync(); + currentTeam = initTeam; + } + StateHasChanged(); + } + + /* + * Refresh the screen + */ + public async Task refreshContent(int page) + { + if (page == 0) { await getMail(mailQuery); } + else if (page == 1) + { + //await getTeams(teamQuery); + //await getChannels(); + await displayChannelData(); + } + else if (page == 2) { await getChats("hi"); } + else if (page == 3) { } + else + { + await getMail(mailQuery); + await getTeams(teamQuery); + await getChats("hi"); + } + await getCal(calQuery); + StateHasChanged(); + } + + /* + * GET MAIL EVENTS + */ + /* MAIL LIST */ + private IList myMessages = new List(); + + /* ASYNCHRONOUSLY GET MAIL */ + public async Task getMail(string addresses) + { + graphClient = clientFactory.GetAuthenticatedClient(); + + var result = await graphClient.Me.MailFolders.GetAsync(); + + var mailPage = await graphClient.Me + .MailFolders["Inbox"] + .Messages + .GetAsync(config => + { + //config.Headers.Add("Prefer", "outlook.body-content-type='text'"); + //config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\""); + + if (addresses != "All") { config.QueryParameters.Filter = "(from/emailAddress/address) eq '" + addresses; } + + config.QueryParameters.Select = new string[] { "subject", "sender", "body", "isRead", "bodyPreview" }; + //config.QueryParameters.Orderby = new string[] { "receivedDateTime desc" }; + }); + + /* + * Set to non-async variable. Can then be accessed in html. + */ + myMessages = mailPage?.Value ?? new List(); + } + + // REPLY TO EMAILS + string? emailContent; + private bool emailReply { get; set; } = false; + private void replyToEmail(bool change) { emailReply = change; } + + public async void sendEmail(Message originEmail, string content) + { + graphClient = clientFactory.GetAuthenticatedClient(); + + var recipients = originEmail.ToRecipients; + var mainAddress = originEmail?.Sender?.EmailAddress?.Address; + + if (recipients == null) { recipients = new List { new Recipient { EmailAddress = new EmailAddress { Address = mainAddress, }, }, }; } + else + { + var mainAddressSend = new Recipient { EmailAddress = new EmailAddress { Address = mainAddress, }, }; + recipients.Add(mainAddressSend); + } + + var requestBody = new Microsoft.Graph.Me.Messages.Item.Reply.ReplyPostRequestBody + { + Message = new Message + { + ToRecipients = recipients, + }, + Comment = content, + }; + emailContent = String.Empty; + emailReply = false; + + await graphClient.Me.Messages[originEmail?.Id].Reply.PostAsync(requestBody); + await refreshContent(1); + } + + public async Task deleteMail(Message email) + { + graphClient = clientFactory.GetAuthenticatedClient(); + await graphClient.Me.Messages[email.Id].DeleteAsync(); + + if(email == currentEmail) { currentEmail = null; } + await refreshContent(0); + } + + /* + * GET TEAM EVENTS + */ + /* TEAMS LIST */ + private IList myTeams = new List(); + + /* ASYNCHRONOUSLY GET TEAMS */ + public async Task getTeams(string addresses) + { + graphClient = clientFactory.GetAuthenticatedClient(); + var teamPage = await graphClient.Me.JoinedTeams.GetAsync(); + myTeams = teamPage?.Value ?? new List(); + } + + /* + * GET CHANNEL EVENTS + */ + /* CHANNEL LIST */ + private IList myChannels = new List(); + + /* ASYNCHRONOUSLY GET CHANNELS */ + public async Task getChannels() + { + graphClient = clientFactory.GetAuthenticatedClient(); + var channelPage = await graphClient.Teams[currentTeam.Id].Channels.GetAsync(); + myChannels = channelPage?.Value ?? new List(); + } + + /* + * GET ALL CHANNEL CHATS + */ + public class messageBlock + { + public ChatMessage? mainMessage { get; set; } + public IList? replies { get; set; } + } + + private IList fullPage = new List(); + private IList myConvos = new List(); + private IList myReplies = new List(); + + public async Task displayChannelData() + { + graphClient = clientFactory.GetAuthenticatedClient(); + var fullPageLocal = new List(); + + if (currentChannel != null) + { + var convoPageTest = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages.GetAsync(); + myConvos = convoPageTest?.Value ?? new List(); + + foreach (var conversation in myConvos) + { + var replyPageTest = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages[conversation.Id].Replies.GetAsync(); + myReplies = replyPageTest?.Value ?? new List(); + + fullPageLocal.Add(new messageBlock { mainMessage = conversation, replies = myReplies }); + } + } + + fullPageLocal.Reverse(); + fullPage = fullPageLocal; + await refreshContent(1); + } + + // Create new channel message + string? newChannelMessageContent; + private bool newChannelMessageBool { get; set; } = false; + private void sendChannelMessage(bool change) { newChannelMessageBool = change; } + + public async void newChannelMessage(string content) + { + graphClient = clientFactory.GetAuthenticatedClient(); + + var requestBody = new ChatMessage + { + Body = new ItemBody + { + Content = content, + }, + }; + + newChannelMessageContent = String.Empty; + newChannelMessageBool = false; + + var result = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages.PostAsync(requestBody); + await refreshContent(1); + } + + // Delete Channel message + public async void delChannelMessage(ChatMessage currMessage) + { + graphClient = clientFactory.GetAuthenticatedClient(); + await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages[currMessage.Id].SoftDelete.PostAsync(); + await refreshContent(1); + } + + // Reply to a message account + string? messageContent; + private bool messageReply { get; set; } = false; + private void replyToChannelMsg(bool change) { messageReply = change; } + + public async void replyChannelMessage(ChatMessage currMessage) + { + graphClient = clientFactory.GetAuthenticatedClient(); + var requestBody = new ChatMessage + { + Body = new ItemBody + { + ContentType = BodyType.Html, + Content = "Hello World", + }, + }; + var result = await graphClient.Teams[currentTeam.Id].Channels[currentChannel.Id].Messages[currMessage.Id].Replies.PostAsync(requestBody); + await refreshContent(1); + } + + /* + * GET PERSONAL CHATS + */ + /* CHAT LIST */ + private IList myChats = new List(); + private IList myChatReplies = new List(); + + /* ASYNCHRONOUSLY GET CHATS */ + public async Task getChats(string addresses) + { + graphClient = clientFactory.GetAuthenticatedClient(); + var chatPage = await graphClient.Me.Chats.GetAsync(); + + myChats = chatPage?.Value ?? new List(); + + foreach (var c in myChats) + { + + } + } + + + /* + * GET CALENDAR EVENTS + */ + /* EVENTS LIST */ + private IList myEvents = new List(); + + /* ASYNCHRONOUSLY GET EVENTs */ + public async Task getCal(string addresses) + { + // Get the user + //var user = (await authenticationStateTask).User; + //var graphTimeZone = user.GetUserGraphTimeZone(); + //dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}"; + + // Calculate the start and end of the current week in user's time zone + //var startOfWeek = GetUtcStartOfWeekInTimeZone(DateTime.Today, graphTimeZone); + //var endOfWeek = startOfWeek.AddDays(7); + + graphClient = clientFactory.GetAuthenticatedClient(); + + /* + * GET ALL CALENDAR EVENTS + */ + /*var eventPage = await graphClient.Me + .CalendarView + .GetAsync(config => + { + //config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\""); + //config.QueryParameters.StartDateTime = startOfWeek.ToString("o"); + //config.QueryParameters.EndDateTime = endOfWeek.ToString("o"); + config.QueryParameters.Top = 50; + config.QueryParameters.Select = new[] { "subject", "organizer", "start", "end" }; + config.QueryParameters.Orderby = new[] { "start/dateTime" }; + });*/ + + var eventPage = await graphClient.Me.Calendar.Events.GetAsync(); + + myEvents = eventPage?.Value ?? new List(); + } + + /* + * NEW GROUP ADDED - UPDATE ASYNC + */ + public string mailQuery { get; set; } = "All"; + public string teamQuery { get; set; } = "All"; + public string calQuery { get; set; } = "All"; + + async void UpdateGroup(ChangeEventArgs args) + { + if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString())) + { + string searchTerm = args.Value.ToString()!.ToLower(); + if (searchTerm == "all") + { + mailQuery = "All"; + teamQuery = "All"; + calQuery = "All"; + await refreshContent(4); + } + else + { + mailQuery = searchTerm.Split(';')[0] + "'"; + teamQuery = searchTerm.Split(';')[1] + "'"; + calQuery = searchTerm.Split(';')[2] + "'"; + + await refreshContent(4); + } + } + } + + /* + * DATE-TIME STUFF + */ + private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId) + { + // Time zone returned by Graph could be Windows or IANA style + // TimeZoneConverter can take either + TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId); + + // Assumes Sunday as first day of week + int diff = System.DayOfWeek.Sunday - today.DayOfWeek; + + // create date as unspecified kind + var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified); + + // convert to UTC + return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone); + } + + private string FormatIso8601DateTime(string? iso8601DateTime) + { + if (string.IsNullOrEmpty(iso8601DateTime)) + { + return string.Empty; + } + + // Load into a DateTime + var dateTime = DateTime.Parse(iso8601DateTime); + + if (!string.IsNullOrWhiteSpace(dateTimeFormat)) + { + // Format it using the user's settings + return dateTime.ToString(dateTimeFormat); + } + + // Fallback to return original value + return iso8601DateTime; + } + + /* + * HANDLE WHICH TAB IS BEING PRESENTED + */ + string? myActiveId; + FluentTab? changedto; + private void HandleOnTabChange(FluentTab tab) { changedto = tab; } + + /* + * SHOW THE DETAILS OF THE CURRENT EMAIL/TEAM/CHANNEL/CHAT + */ + private Message currentEmail { get; set; } = null; + private async void ToggleMail(Message email) + { + graphClient = clientFactory.GetAuthenticatedClient(); + + currentEmail = (currentEmail == email) ? null : email; + + + //Set to read. + if(currentEmail?.IsRead == false) + { + var requestBody = new Message + { + IsRead = true, + }; + await graphClient.Me.Messages[currentEmail.Id].PatchAsync(requestBody); + await getMail("All"); + StateHasChanged(); + } + + emailContent = String.Empty; + emailReply = false; + } + + private Team currentTeam { get; set; } = null; + private async void ToggleTeam(Team teamsChat) + { + currentTeam = (currentTeam == teamsChat) ? null : teamsChat; + currentChannel = null; + await getChannels(); + StateHasChanged(); + } + + private Channel currentChannel { get; set; } = null; + private async void ToggleChannel(Channel channelChat) + { + currentChannel = (currentChannel == channelChat) ? null : channelChat; + StateHasChanged(); + } + + private Chat currentChat { get; set; } = null; + private void ToggleChat(Chat chat) + { + currentChat = (currentChat == chat) ? null : chat; + } + + /* + * ALL INPUT BOXES TO CREATE GROUPS + * GETTING DATA FROM GRAPH TO FILL SEARCH BOXES + */ + FluentSearch? mailSearchTest; + FluentSearch? teamSearchTest; + FluentSearch? calSearchTest; + string? mailListValue = string.Empty; + string? teamNameValue = string.Empty; + string? calendarValue = string.Empty; + + List searchData = new() + { + "ajp20@7qp7mb.onmicrosoft.com", + "Brendon", + "Charmaine", + "Indraneel", + "Konstantinos", + "Mahanoor" + }; + + List mailResults = defaultResults(); + List teamResults = defaultResults(); + List calResults = defaultResults(); + static string defaultResultsText = "no results"; + + static List defaultResults() + { + return new() { defaultResultsText }; + } + + void handleMailSearchInput(ChangeEventArgs args) + { + if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString())) + { + string searchTerm = args.Value.ToString()!.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = searchData.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) { mailResults = temp; } + } + } + else + { + mailResults = defaultResults(); + mailListValue = string.Empty; + } + } + + void handleTeamSearchInput(ChangeEventArgs args) + { + if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString())) + { + string searchTerm = args.Value.ToString()!.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = searchData.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) { teamResults = temp; } + } + } + else + { + teamResults = defaultResults(); + teamNameValue = string.Empty; + } + } + + void handleCalSearchInput(ChangeEventArgs args) + { + if (args is not null && !string.IsNullOrWhiteSpace(args.Value.ToString())) + { + string searchTerm = args.Value.ToString()!.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = searchData.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) { calResults = temp; } + } + } + else + { + calResults = defaultResults(); + calendarValue = string.Empty; + } + } + + /* + * CREATE LOCAL CLASS TO STORE GROUPS. + * ALSO SEND TO API MONGO DB + */ + public class GroupItem + { + public string? Name { get; set; } + public string? mailName { get; set; } + public string? teamName { get; set; } + public string? calName { get; set; } + } + + string? placename { get; set; } = string.Empty; + string? selectedGroupValue; + private List myGroups = new(); + + void addToGroup(string m, string t, string c) + { + if (!string.IsNullOrWhiteSpace(placename) && !string.IsNullOrWhiteSpace(m) && !string.IsNullOrWhiteSpace(t) && !string.IsNullOrWhiteSpace(c)) + { + myGroups.Add(new GroupItem { Name = placename, mailName = m, teamName = t, calName = c }); + } + } + + +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor.css b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor.css new file mode 100644 index 000000000..eb57fac12 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Overview.razor.css @@ -0,0 +1,628 @@ + +.chat-bot { + position: fixed; + bottom: 20px; + right: 20px; + z-index: 3; +} + +/* +*Generic +*/ +ul { + list-style-type: none; +} + +.mainContent { + display: flex; + z-index: 25; +} + +.emailTeamsSection { + width: 85%; +} + +/* +* EMAILS +*/ +.mailPage { + height: 70vh; + display: flex; +} + +.emailBar { + height: 100%; + width: 25%; + overflow-y: scroll; +} + +.emailSelect { +} + +.emailSelectBox { + font-family: 'Pavanam', sans-serif; + padding: 5px; + padding-left: 15px; + display: flex; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; +} + + .emailSelectBox:hover { + border-radius: 10px; + box-shadow: 0 0 3px rgba(33,33,33,.2); + } + +.emailData { + width: 70%; +} + + .emailData .sender { + padding-right: 10px; + margin-bottom: 0; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .subject { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .content { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + +.emailRight { + width: 30%; + display: flex; + flex-direction: column; +} + + .emailRight .emailRightData { + display: flex; + width: 100%; + justify-content: space-between; + } + +.emailRightData .timing { +} + +.emailRightData .dotOn { + height: 15px; + width: 15px; + background-color: #ADD8E6; + border: 1px solid #cdd4d4; + border-radius: 50%; +} + +.emailRightData .dotOff { + width: 10%; + height: 15px; + width: 15px; + border: 1px solid #cdd4d4; + background-color: white; + border-radius: 50%; +} + +.emailRight .emailInteraction { + display: flex; +} + + +$delete2-red: red; + +.btn { +} + +.btn-delete { + +} + +.btn2 { + display: flex; + align-items: center; + background: none; + border: none; + height: 35px; + cursor: pointer; +} + + .btn2:focus { + outline: none; + border: none; + } + + .btn2 .mdi { + margin-right: 4px; + margin-left: 4px; + } + + .btn2 > .mdi-delete { + color: red; + } + + .btn2 > .mdi-reply-outline { + color: dodgerblue; + } + + .btn2 > .mdi-reply-all-outline { + color: dodgerblue; + } + + .btn2 > .mdi-send-outline { + color: blue; + } + + .btn2 > .mdi-close { + color: black; + } + +.btn-delete2 { + font-size: 16px; +} + + .btn-delete2 > .mdi-delete-empty { + display: none; + color: red; + } + + .btn-delete2 > .mdi-reply { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-reply-all { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-send { + display: none; + color: blue; + } + + .btn-delete2 > .mdi-close-outline { + display: none; + color: red; + } + + .btn-delete2:hover { + background-color: lighten(red, 48%); + } + + .btn-delete2:hover > .mdi-delete-empty { + display: block; + } + + .btn-delete2:hover > .mdi-delete { + display: none; + } + + .btn-delete2:hover > .mdi-reply { + display: block; + } + + .btn-delete2:hover > .mdi-reply-outline { + display: none; + } + + .btn-delete2:hover > .mdi-reply-all { + display: block; + } + + .btn-delete2:hover > .mdi-reply-all-outline { + display: none; + } + + .btn-delete2:hover > .mdi-send { + display: block; + } + + .btn-delete2:hover > .mdi-send-outline { + display: none; + } + + .btn-delete2:hover > .mdi-close-outline { + display: block; + } + + .btn-delete2:hover > .mdi-close { + display: none; + } + + .btn-delete2:focus { + box-shadow: 0px 0px 0px 4px lighten(red, 40%); + } + +.emailGap { + padding-bottom: 5px; + opacity: 0; +} + +.emailDisplay { + width: 75%; + overflow-y: scroll; + margin-left: 25px; + margin-top: 5px; +} + +.emailDisplayContent { + font-family: 'Pavanam', sans-serif; + height: 100%; +} + + .emailDisplayContent .heading { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + margin-bottom: 10px; + + display: flex; + justify-content: space-between; + } + .emailDisplayContent .heading .ccDetails { + width: 85%; + } + + .emailDisplayContent .heading .emailInteraction { + width: 15%; + display: flex; + } + + .emailDisplayContent .heading .ccDetails .subject { + overflow-wrap: break-all; + font-size: large; + padding: 10px; + margin-bottom: 5px; + } + + .emailDisplayContent .heading .ccDetails .sender { + padding-left: 10px; + margin-bottom: 0px; + } + + .emailDisplayContent .heading .ccDetails .recipient { + padding-left: 10px; + font-size: small; + margin-bottom: 0px; + padding-bottom: 15px; + } + + .emailDisplayContent .content { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + width: 100%; + } + + .emailDisplayContent .content .body { + word-wrap: break-word; + padding-left: 20px; + padding-right: 20px; + padding-bottom: 15px; + } + + .emailDisplayContent .emailReply { + width: 100%; + margin-top:10px; + } + + .emailReply { + } + + .emailReply .heading { + display:flex; + flex-direction: column; + padding: 20px; + margin-bottom: 0px; + } + .heading .subject { + font-size:large; + margin-bottom: 0px; + } + .heading .recipient { + margin-bottom: 5px; + } + + .emailReply .emailResponseContent{ + width: 100%; + display: flex; + } + + .replyDetails { + display: flex; + justify-content: space-between; + padding: 0; + border: none; + background: none; + } + + .replyDetails .replyContent { + padding: 0; + border: none; + background: none; + } + + .replyDetails .mdi-close { + padding: 0; + border: none; + background: none; + font-size: large; + } + + + .emailResponseContent .mdi-send { + padding: 0; + border: none; + background: none; + font-size: large; + } + + .emailResponseContent .responseBox { + margin-top: 20px; + width:100px; + } +/* +* TEAMS +*/ + +.teamsPage { + display: flex; + height: 70vh; + width: 100%; +} + +.teamsBar { + height: 100%; + width: 20%; + margin-left: 0px; + padding-top: 5px; +} + +.teamsSelectBox { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; +} + .teamName { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.channelBar { + height: 100%; + width: 15%; + margin-left: 10px; + margin-top: 0; + padding-top: 5px; +} + .channelSelectBox { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + + .channelName { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.teamChatBar { + width: 65%; + overflow-y: scroll; + display: flex; + flex-direction: column-reverse; + + margin-left: 10px; +} + +.teamsMessageBlock { + padding: 20px; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); +} + +.nestedMessages { + padding: 10px; +} + +.teamMessageBlock { + font-family: 'Pavanam', sans-serif; + + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + + margin-top: 20px; + padding-top:10px; + padding-bottom:10px; +} + +.teamChatInital { + display:flex; + justify-content:space-between; + padding-left: 20px; + margin-bottom: 10px; + margin-top: 10px; +} + + .teamChatInital .details { + width: 90%; + } + .teamChatInital .interact { + width: 10%; + } + +.teamChatName { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; +} + +.teamChatContent { + width: 100%; + padding-bottom: 5px; + font-size:medium; +} + +.teamReplySection { + width: 70%; + margin-bottom: 10px; +} + +.teamInteract { + display: flex; +} + +.teamMsgInteract { + display: flex; + flex-direction: column; + justify-content: space-between; +} + +/* +* Chats +*/ +.chatsPage { + display: flex; + height: 70vh; + width: 100%; +} + +.mypChats { + width: 20%; + height: 100%; + margin-left: 0px; + padding-top: 5px; +} + + .chatSelectBox { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + .chatName { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.myChatBar { + width: 80%; +} + + +/* +* Calendar section +*/ +.calendarSection { + font-family: 'Pavanam', sans-serif; + width: 15%; + height: 70vh; + flex-direction: column; + display: flex; + overflow-y: scroll; + margin-left: 20px; + margin-top: 40px; +} + + .calendarSection .event { + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + padding: 10px; + margin-top:5px; + } + .event .subject { + font-size:large; + padding-bottom: 0px; + margin-bottom: 0px; + text-align: center; + } + + .event .timing { + } + .event .timing .date { + margin-bottom: 0px; + } + + .event .timing .time { + margin-bottom: 0px; + } + + .event .organiser { + margin-bottom: 0px; + } + +/* +* Group settings +*/ +.groupSec { + display: flex; +} + +.groupSettings { + display: flex; +} + +.addGroup { + display: flex; +} + +.testing1 { + position: absolute; + z-index: 99; +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Schedulingmeeting.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Schedulingmeeting.razor new file mode 100644 index 000000000..697ef4443 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Schedulingmeeting.razor @@ -0,0 +1,249 @@ +@page "/meeting" + +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using Azure +@using Azure.AI.OpenAI +@using System.Text +@using System.Security.Authentication +@using TimeZoneConverter +@using System; +@using System.Linq; + +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject GraphSample.AI.OpenAIService OpenAIService +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication + + + + + + +
+

Meeting

+

Here you can schedule a meeting with your team

+ +
+
+ + + + + + +
+
+ + + + +
+
+ @if (meetingTimeSuggestions != null) + { + foreach (var suggestion in meetingTimeSuggestions) + { +

@suggestion.MeetingTimeSlot.Start.DateTime

+ } + } +
+
+ @* display the gettingFreeSchedule results here in a table *@ +
+
+ @if (gettingFreeSchedule != null) + { + + + + + + + + + @foreach (var attendee in gettingFreeSchedule) + { + + + + + } + +
AttendeeAvailability
@attendee[0]@attendee[1]
+ } +
+
+
+ +@code{ + + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + private GraphServiceClient? graphClient; + string attendees = string.Empty; + private DateTime startTime = new DateTime(DateTime.Today.Ticks); + private DateTime endTime = new DateTime(DateTime.Today.Ticks); + public List? meetingTimeSuggestions; + public List> gettingFreeSchedule = new List>(); + + [Inject] + protected IAccessTokenProvider? AccessTokenProvider { get; set; } + protected string? AccessToken { get; private set; } + public List messages = new List(); + private static HttpClient Http = new HttpClient(); + + private string changeFormat(string inputtedFromUser){ // "2019-04-16T09:00:00", + string[] dateAndTime = inputtedFromUser.Split(' '); + string[] date = dateAndTime[0].Split('/'); + string[] time = dateAndTime[1].Split(':'); + string year = date[2]; + string month = date[1]; + string day = date[0]; + string hour = time[0]; + string minute = time[1]; + string second = time[2]; + string result = year + "-" + month + "-" + day + "T" + hour + ":" + minute + ":" + second[0..2]; + return result; + } + + protected override async Task OnInitializedAsync() + { + var tokenResult = await AccessTokenProvider.RequestAccessToken(); + if (tokenResult.TryGetToken(out var accessToken)) + { + AccessToken = accessToken.Value; + } + + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + graphClient = clientFactory.GetAuthenticatedClient(); + + } + public async Task FindMeetingTimes(){ + var attendeesArray = attendees.Split(';') + .Select(email => email.Trim()) + .ToList(); + + var requestBody = new Microsoft.Graph.Me.FindMeetingTimes.FindMeetingTimesPostRequestBody + { + Attendees = attendeesArray.Select(email => new AttendeeBase + { + Type = AttendeeType.Required, + EmailAddress = new EmailAddress + { + Address = email, + }, + }).ToList(), + + + TimeConstraint = new TimeConstraint + { + ActivityDomain = ActivityDomain.Work, + TimeSlots = new List + { + new TimeSlot + { + Start = new DateTimeTimeZone + { + DateTime = changeFormat(startTime.ToString()), + TimeZone = "Pacific Standard Time", + }, + End = new DateTimeTimeZone + { + DateTime = changeFormat(endTime.ToString()), + TimeZone = "Pacific Standard Time", + }, + }, + }, + }, + IsOrganizerOptional = false, + MeetingDuration = TimeSpan.FromHours(1), + ReturnSuggestionReasons = true, + MinimumAttendeePercentage = 100, + }; + var result = await graphClient.Me.FindMeetingTimes.PostAsync(requestBody, (requestConfiguration) => + { + requestConfiguration.Headers.Add("Prefer", "outlook.timezone=\"Pacific Standard Time\""); + }); + Console.WriteLine(startTime.ToString()); + Console.WriteLine(endTime.ToString()); + Console.WriteLine(result.MeetingTimeSuggestions.ToList().Count); + meetingTimeSuggestions = result.MeetingTimeSuggestions; + + } + + + public async Task GetFreeSchedule(){ + // Code snippets are only available for the latest version. Current version is 5.x + var attendeesArray = attendees.Split(';') + .Select(email => email.Trim()) + .ToList(); + + // create a new List that sotes the email addresses of the attendees + + var requestBody = new Microsoft.Graph.Me.Calendar.GetSchedule.GetSchedulePostRequestBody + { + Schedules = new List + { + attendeesArray[0], + }, + StartTime = new DateTimeTimeZone + { + DateTime = changeFormat(startTime.ToString()), + TimeZone = "Pacific Standard Time", + }, + EndTime = new DateTimeTimeZone + { + DateTime = changeFormat(endTime.ToString()), + TimeZone = "Pacific Standard Time", + }, + AvailabilityViewInterval = 60, + }; + var result = await graphClient.Me.Calendar.GetSchedule.PostAsync(requestBody, (requestConfiguration) => + { + requestConfiguration.Headers.Add("Prefer", "outlook.timezone=\"Pacific Standard Time\""); + }); + + @* foreach (var schedule in result.Value) + { + Console.WriteLine("ScheduleId: " + schedule.ScheduleId); + Console.WriteLine("AvailabilityView: " + schedule.AvailabilityView); + Console.WriteLine("ScheduleItems:"); + + foreach (var scheduleItem in schedule.ScheduleItems) + { + Console.WriteLine(" Status: " + scheduleItem.Status); + Console.WriteLine(" Start: " + scheduleItem.Start.DateTime); + Console.WriteLine(" End: " + scheduleItem.End.DateTime); + Console.WriteLine(" TimeZone: " + scheduleItem.Start.TimeZone); + Console.WriteLine(); + } + + Console.WriteLine("Working Hours:"); + Console.WriteLine(" StartTime: " + schedule.WorkingHours.StartTime); + Console.WriteLine(" EndTime: " + schedule.WorkingHours.EndTime); + Console.WriteLine(" TimeZone: " + schedule.WorkingHours.TimeZone.Name); + Console.WriteLine(); + } + *@ + foreach (var schedule in result.Value) + { + foreach (var scheduleItem in schedule.ScheduleItems){ + gettingFreeSchedule.Add(new List(){scheduleItem.Start.DateTime.ToString(), scheduleItem.End.DateTime.ToString()}); + } + + } + foreach (var item in gettingFreeSchedule){ + Console.WriteLine(item[0]); + Console.WriteLine(item[1]); + } + + } + +} + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SignIn.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SignIn.razor new file mode 100644 index 000000000..ef818245a --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SignIn.razor @@ -0,0 +1,134 @@ +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication +@using Microsoft.JSInterop +@using Microsoft.AspNetCore.WebUtilities +@using Microsoft.Graph + +@inject IJSRuntime JSRuntime +@inject NavigationManager Navigation +@inject SignOutSessionStateManager SignOutManager + +@using System.Security.Authentication +@using Microsoft.Graph.Models +@using TimeZoneConverter +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject NavigationManager NavigationManager +@using Microsoft.AspNetCore.Components +@using Microsoft.Fast.Components.FluentUI + + + + + + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor new file mode 100644 index 000000000..8126f9b89 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor @@ -0,0 +1,744 @@ +@page "/NotesPro" + +@using System.Security.Authentication +@using System.IO; +@using GrapeCity.Documents.Pdf; +@using DocumentFormat.OpenXml.Packaging; +@using Azure +@using Azure.AI.OpenAI +@using System.Text +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using Microsoft.Graph.Models.ODataErrors +@using Microsoft.Kiota.Abstractions +@using Microsoft.Kiota.Abstractions.Serialization +@using Microsoft.Fast.Components.FluentUI +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject GraphSample.AI.OpenAIService OpenAIService + + +@inject GraphSample.Graph.GraphClientFactory clientFactory +@*@inject ILogger Logger*@ +@inject GraphSample.AI.OpenAIService OpenAIService + + + + + + + + +
+
+ + + + + + + +
+ +
+
+ + + +
+
+ + +
+ File Chosen: @fileName + @if (fileName != String.Empty) + { + + } + +
+ + + +
+ @if (isLoading) + { +

Uploading...

+ } + +
+ @if (isSummarising) + { +

Summarising...

+ + } + + else if (isWriting) + { +

Writing to OneNote...

+ +

Summary:

+

@summary

+ } + + else if (!string.IsNullOrEmpty(summary)) + { +

Summary:

+

@summary

+ } +
+ +
+ + + +
+ + + + + +
+ +
+ +
+ +@code{ + + //ToDo: + // 1. Return tuple instead for PDF/DOC/ppt to refactor + // 2. Apply error handling to GetContent so folders not clicked + // 3. Clean up the AI function too bulky + + + [CascadingParameter] + protected Task? authenticationStateTask { get; set; } + private FluentDialog? MyFluentDialog; + public bool Modal = true; + private GraphServiceClient? graphClient; + private List data_response = new List(); + protected const string path = "/me/drive/items/"; + protected string driveId = ""; + protected string itemId = ""; + protected string summary = ""; + protected bool uploadMethod = true; // true for file upload, false for M365 + + //File Upload variables + private List loadedFile = new(); + private long maxFileSize = 1024 * 100000; + private int maxAllowedFiles = 1; + private bool isLoading; + private bool isSummarising; + private bool isWriting; + private bool noSummary = true; + + FluentTab? changedto; + private string dropClass = ""; + public string fileName = ""; + + private async void HandleOnTabChange(FluentTab tab) + { + changedto = tab; + if (tab.Text == "Upload from OneDrive") + { + uploadMethod = false; + await listFiles(); + } + } + + private void HandleDragEnter() + { + dropClass = "dropzone-drag"; + } + + private void HandleDragLeave() + { + dropClass = ""; + } + + protected override void OnAfterRender(bool firstRender) + { + if (firstRender) + { + MyFluentDialog!.Hide(); + } + } + + protected override async Task OnInitializedAsync() + { + await listFiles(); + } + + private async void OnOpen() + { + MyFluentDialog!.Show(); + Console.WriteLine("Clicked"); + //uploadMethod = false; + //await listFiles(); + + } + + private void OnDismiss(DialogEventArgs args) + { + if (args is not null && args.Reason is not null && args.Reason == "dismiss") + { + MyFluentDialog!.Hide(); + } + } + + // Loading files + private void LoadFile(InputFileChangeEventArgs e) + { + isLoading = true; + loadedFile.Clear(); + + foreach (var file in e.GetMultipleFiles(maxAllowedFiles)) + { + loadedFile.Add(file); + fileName = file.Name; + } + + isLoading = false; + MyFluentDialog!.Hide(); + } + + + // apply error handling to not click on folders + // Can do regex to check if path is folder + protected void GetContent(string path, string name) + { + + Console.WriteLine("Clicked on: " + path); + itemId = path; + fileName = name; + MyFluentDialog!.Hide(); + + } + + public async Task ConvertToStream(IBrowserFile file) + { + var memoryStream = new MemoryStream(); + await file.OpenReadStream(maxFileSize).CopyToAsync(memoryStream); + memoryStream.Seek(0, SeekOrigin.Begin); + return memoryStream; + } + + + private async Task SummariseFile() + { + summary = ""; + var content = ""; + isSummarising = true; // Set the flag to indicate that summarization is in progress + + if (uploadMethod) + { + if (loadedFile.Count == 0) + { + isSummarising = false; + return; + } + + // Read the content of the file + var file = loadedFile[0]; + Stream stream = await ConvertToStream(file); + fileName = file.Name; + content = ExtractTextFromStream(stream); + + Console.WriteLine("Extracted text"); + } + + else + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + var user = (await authenticationStateTask).User; + var contentStream = await graphClient.Drives[driveId].Items[itemId].Content.GetAsync(); + content = ExtractTextFromStream(contentStream); + var fileItem = await graphClient.Drives[driveId].Items[itemId].GetAsync(); + fileName = fileItem.Name; + + Console.WriteLine("Got text response"); + } + + + await SummariseText(content); + noSummary = false; + isSummarising = false; + Console.WriteLine(summary); + } + + + // Event handler for the "Summarise" button click + protected async Task SummariseText(string content) + { + + // Perform summarization until the overall summary is less than 3000 characters + var summaries = new List(); + var overallSummary = ""; + Console.WriteLine("Inside ai: " + content); + + // Split the content into smaller chunks + var chunkSize = 750; // Adjust this value as per your model's character limit + var chunks = SplitContentIntoChunks(content, chunkSize); + + // Perform summarization for each chunk + foreach (var chunk in chunks) + { + string prompt = $"Summarise the following text in a professional and business like manner and in extreme detail (Include any equations mentioned):\n\n{chunk}\n"; + //Console.Write($"Input: {prompt}\n"); + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + //Console.Write($"Completion: {completion}\n"); + summaries.Add(completion); + string finish = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + //Console.Write($"Completion: {completionFinish}\n"); + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + //Console.Write($"Completion: {completionFinish}\n"); + summaries.Add(completionFinish2); + } + + // Combine the individual summaries into an overall summary + overallSummary = string.Join(" ", summaries); + + //Break the loop if the overall summary exceeds 2500 characters + if (overallSummary.Length >= 5000) + { + summaries.Clear(); + + string prompt = $"This summary is slightly too long, please rewrite without losing any detail but in a more concise way:\n\n{overallSummary}\n"; + //Console.Write($"Input: {prompt}\n"); + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + //Console.Write($"Completion: {completion}"); + summaries.Add(completion); + string finish = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + //Console.Write($"Completion: {completionFinish}\n"); + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + //Console.Write($"Completion: {completionFinish}\n"); + summaries.Add(completionFinish2); + } + + //Break the loop if the overall summary exceeds 2500 characters + else if (overallSummary.Length <= 500) + { + summaries.Clear(); + + string prompt = $"This summary is slightly too short, please rewrite without losing any detail but in a more easy to understand way, including any extra details that would help:\n\n{overallSummary}\n"; + //Console.Write($"Input: {prompt}\n"); + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + //Console.Write($"Completion: {completion}"); + summaries.Add(completion); + string finish = $"Keep summarising:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + //Console.Write($"Completion: {completionFinish}\n"); + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + //Console.Write($"Completion: {completionFinish}\n"); + summaries.Add(completionFinish2); + } + + overallSummary = string.Join(" ", summaries); + summaries.Clear(); + summary = overallSummary; + Console.WriteLine("Generated AI summary"); + + } + + // Helper method to split the content into smaller chunks + private IEnumerable SplitContentIntoChunks(string content, int chunkSize) + { + var sentences = content.Split('.', '!', '?'); + var currentChunk = new StringBuilder(); + + foreach (var sentence in sentences) + { + if (currentChunk.Length + sentence.Length + 1 <= chunkSize) + { + currentChunk.Append(sentence).Append('.'); + } + else + { + yield return currentChunk.ToString(); + currentChunk.Clear().Append(sentence).Append('.'); + } + } + + if (currentChunk.Length > 0) + { + yield return currentChunk.ToString(); + } + } + + // Maybe return tuple instead + protected string ExtractTextFromStream(Stream input) + { + string text = ""; + + if (IsPDF(input)) + { + text = ExtractTextFromPDF(input); + Console.WriteLine("Is PDF"); + } + else if (IsWordDocument(input)) + { + text = ExtractTextFromWord(input); + Console.WriteLine("Is Word"); + } + else if (IsPowerPointDocument(input)) + { + text = ExtractTextFromPowerPoint(input); + Console.WriteLine("Is PPT"); + } + + return text; + } + + private bool IsPDF(Stream stream) + { + try + { + var document = new GcPdfDocument(); + document.Load(stream); + return true; + } + catch + { + return false; + } + } + + public string ExtractTextFromPDF(Stream stream) + { + + var document = new GcPdfDocument(); + document.Load(stream); + var text = document.GetText(); + + return text; + } + + private bool IsWordDocument(Stream stream) + { + try + { + using (var document = WordprocessingDocument.Open(stream, false)) + { + return true; + } + } + catch + { + return false; + } + } + + private string ExtractTextFromWord(Stream stream) + { + var text = ""; + + using (var document = WordprocessingDocument.Open(stream, false)) + { + var body = document.MainDocumentPart.Document.Body; + text = body.InnerText; + } + + return text; + } + + private bool IsPowerPointDocument(Stream stream) + { + try + { + using (var presentation = PresentationDocument.Open(stream, false)) + { + return true; + } + } + catch + { + return false; + } + } + + private string ExtractTextFromPowerPoint(Stream stream) + { + var text = ""; + + using (var presentation = PresentationDocument.Open(stream, false)) + { + var slideText = ""; + + foreach (var slidePart in presentation.PresentationPart.SlideParts) + { + var slide = slidePart.Slide; + var paragraphs = slide.Descendants(); + + foreach (var paragraph in paragraphs) + { + slideText += paragraph.InnerText + " "; + } + } + + text = slideText.Trim(); + } + + return text; + } + + + protected async Task listFiles() + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + // Get the user + var user = (await authenticationStateTask).User; + + graphClient = clientFactory.GetAuthenticatedClient(); + + var driveItem = await graphClient.Me.Drive.GetAsync(); + driveId = driveItem.Id; + + // List children in the drive + var files = await graphClient.Drives[driveId].Items["root"].Children.GetAsync(); + Console.WriteLine("Getting files..."); + data_response = files.Value; + StateHasChanged(); + + // The type of files is Microsoft.Graph.Models.DriveItem + } + + private async Task WriteToOneNote() + { + if (summary == "") + { + noSummary = true; + return; + } + noSummary = false; + if (fileName == "") + { + fileName = "summary"; + } + isWriting = true; // Set the flag to indicate that writing to OneNote is in progress + var user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + var requestBody = new Notebook + { + //set the displayName to the name of the uploaded file witha unique ID + DisplayName = $"{fileName} {DateTime.Now.ToString("yyyyMMddHHmmss")}" + }; + var result = await graphClient.Me.Onenote.Notebooks.PostAsync(requestBody); + + // Get the ID of the newly created notebook + var notebookId = result.Id; + // create a new section in the notebook + var section = new OnenoteSection + { + DisplayName = "Summarised Notes" + }; + var sectionResult = await graphClient.Me.Onenote.Notebooks[notebookId].Sections.PostAsync(section); + // Get the ID of the newly created section + var sectionId = sectionResult.Id; + + // Create the title of the page + string pageTitle = $"Summary of {fileName}"; + + // Create the HTML body content + string htmlContent = "\n" + + "\n" + + " \n" + + " " + pageTitle + "\n" + + " \n" + + " \n" + + " \n" + + "

" + summary + "

\n" + + " \n" + + ""; + + // Convert the HTML string to a byte array using UTF-8 encoding + byte[] contentBytes = Encoding.UTF8.GetBytes(htmlContent); + + // Create multipart object with the relevant content + var multipartContent = new MultipartFormDataContent(); + var htmlString = htmlContent; + var presentation = new StringContent(htmlString, Encoding.UTF8, "text/html"); + multipartContent.Add(presentation, "Presentation");//needs a name + + // We can add more httpcontent instance here if we wish to + + // create a request information instance and make a request. + var requestInformation = graphClient.Me.Onenote.Sections[sectionId].Pages.ToGetRequestInformation(); + requestInformation.Headers.Add("Content-Type", multipartContent.Headers.ContentType.ToString()); + requestInformation.HttpMethod = Method.POST; + requestInformation.Content = await multipartContent.ReadAsStreamAsync(); + var errorMapping = new Dictionary> { + {"4XX", ODataError.CreateFromDiscriminatorValue}, + {"5XX", ODataError.CreateFromDiscriminatorValue}, + }; + var pageResult = await graphClient.RequestAdapter.SendAsync(requestInformation, OnenotePage.CreateFromDiscriminatorValue, errorMapping); + isWriting = false; // Set the flag to indicate that writing to OneNote is complete + Console.WriteLine("Done"); + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor.css b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor.css new file mode 100644 index 000000000..2b10d1a29 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/SummarizeFiles.razor.css @@ -0,0 +1,5 @@ +::deep > fluent-dialog::part(control) { + --dialog-width: 45%; + --dialog-height: 65%; + border: 2px ridge black; +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Teams.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Teams.razor new file mode 100644 index 000000000..aef877dfa --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Teams.razor @@ -0,0 +1,235 @@ +@* + +@page "/teams" +@using System.Security.Authentication +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter + +@inject GraphSample.Graph.GraphClientFactory clientFactory + + +
+ + +

Teams

+ + + + + + + + + + @foreach(var teamsChat in chats) + { + + + + } + +
SenderMessage
@teamsChat
+ +
+
+

To Do

+
+ @if (TaskLists.Count != 0) + { + @foreach (var key in TaskLists.Keys) + { + @if (TaskLists[key].Value?.Count != 0){ +
+

@key.Split("|")[0]

+
+ @foreach (var item in TaskLists[key].Value) + { + string ListId = @key.Split("|")[1]; + string TaskId = @item.Id; + + if (item.Status == Microsoft.Graph.Models.TaskStatus.Completed) + { +
+ @item.Title + + + + + +
+ } + else if (item.Status == Microsoft.Graph.Models.TaskStatus.NotStarted){ +
+ @item.Title + + + + + +
+ } + + } +
+ } + + } + } + else + { +

No To Do's

+ } + +
+
+ + + +
+
+@code{ + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + + private GraphServiceClient? graphClient; + private IList chats = new List(); + private string? dateTimeFormat; + + Dictionary TaskLists = new Dictionary(); + + private IList toDos = new List(); + + private int count = 0; + + protected override async Task OnInitializedAsync() + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + // Get the user + var user = (await authenticationStateTask).User; + var graphTimeZone = user.GetUserGraphTimeZone(); + dateTimeFormat = $"{user.GetUserGraphDateFormat()} {user.GetUserGraphTimeFormat()}"; + + // Calculate the start and end of the current week in user's time zone + var startOfWeek = GetUtcStartOfWeekInTimeZone(DateTime.Today, graphTimeZone); + var endOfWeek = startOfWeek.AddDays(7); + + graphClient = clientFactory.GetAuthenticatedClient(); + + var chatPage = await graphClient.Me + .Chats + .GetAsync(config => + { + config.QueryParameters.Top = 50; + //config.Headers.Add("Prefer", $"outlook.timezone=\"{graphTimeZone}\""); + //config.QueryParameters.Select = new string[] { "subject", "sender"}; + //config.QueryParameters.Orderby = new string[] { "receivedDateTime" }; + + }); + + chats = chatPage?.Value ?? new List(); + + await BeginToDos(); + } + + private DateTime GetUtcStartOfWeekInTimeZone(DateTime today, string timeZoneId) + { + // Time zone returned by Graph could be Windows or IANA style + // TimeZoneConverter can take either + TimeZoneInfo userTimeZone = TZConvert.GetTimeZoneInfo(timeZoneId); + + // Assumes Sunday as first day of week + int diff = System.DayOfWeek.Sunday - today.DayOfWeek; + + // create date as unspecified kind + var unspecifiedStart = DateTime.SpecifyKind(today.AddDays(diff), DateTimeKind.Unspecified); + + // convert to UTC + return TimeZoneInfo.ConvertTimeToUtc(unspecifiedStart, userTimeZone); + } + + + public async Task BeginToDos() + { + if(count > 0) { + //await Task.Delay(1000); + //Console.WriteLine("Access " + AccessToken); + //graphClient = clientFactory.GetAuthenticatedClient(); + + var toDoList = await graphClient.Me.Todo.Lists.GetAsync( + config=>{ + config.QueryParameters.Top = 5; + } + ); + + toDos = toDoList?.Value ?? new List(); + + foreach(var item in toDos) + { + if (item == null) + { + throw new ArgumentNullException(nameof(item)); + } + var resultTasks = await graphClient.Me.Todo.Lists[item.Id].Tasks.GetAsync(); + var key = item.DisplayName + "|" + item.Id; + TaskLists[key] = resultTasks; + } + + } + } + + + + public async Task CompleteTask(string ListId, string TaskId){ + + var requestBody = new TodoTask + { + Status = Microsoft.Graph.Models.TaskStatus.Completed + }; + var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody); + + await BeginToDos(); + Console.WriteLine(result.Status); + StateHasChanged(); + //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true); + + } + + public async Task DeleteTask(string ListId, string TaskId){ + + await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].DeleteAsync(); + await BeginToDos(); + StateHasChanged(); + //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true); + + } + + public async Task UnDoTask(string ListId, string TaskId){ + var requestBody = new TodoTask + { + Status = Microsoft.Graph.Models.TaskStatus.NotStarted + }; + var result = await graphClient.Me.Todo.Lists[ListId].Tasks[TaskId].PatchAsync(requestBody); + + await BeginToDos(); + Console.WriteLine(result.Status); + StateHasChanged(); + //NavigationManager.NavigateTo(NavigationManager.Uri, forceLoad: true); + } +} *@ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/TestAI.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/TestAI.razor new file mode 100644 index 000000000..c05bf7510 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/TestAI.razor @@ -0,0 +1,157 @@ +@page "/testai" + +@using System.Security.Authentication +@using System.Text +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@using Microsoft.Extensions.Logging +@using GrapeCity.Documents.Pdf +@using Azure +@using Azure.AI.OpenAI +@using static System.Environment +@using Microsoft.Fast.Components.FluentUI +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication + + +@inject GraphSample.Graph.GraphClientFactory clientFactory + + +

Todo

+ +@* + Type your plans for the day... + *@ + + + + + + +

+

@todoStart :: @todoEnd

+

+ +
+
+ + + @foreach (var item in toDos) + { + + } + + +
+ +
+ + +@code{ + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + private GraphServiceClient? graphClient; + private string? textValue; + private string[]? todolist; + private string? todoStart; + private string? todoEnd; + private string todoTasks; + private IList toDos = new List(); + private string selectedList = "Tasks"; + Dictionary TaskLists = new Dictionary(); + + public System.Security.Claims.ClaimsPrincipal? user { get; set; } + + private OpenAIService? openAIService; + + [Inject] + protected IAccessTokenProvider? AccessTokenProvider { get; set; } + protected string? AccessToken { get; private set; } + + protected override async Task OnInitializedAsync() + { + var tokenResult = await AccessTokenProvider.RequestAccessToken(); + if (tokenResult.TryGetToken(out var accessToken)) + { + AccessToken = accessToken.Value; + } + + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + //user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + + openAIService = new OpenAIService(); // Create an instance of the 'OpenAIService' + var getLists = await graphClient.Me.Todo.Lists.GetAsync(); + toDos = getLists?.Value ?? new List(); + + foreach(var item in toDos) + { + if (item == null) + { + throw new ArgumentNullException(nameof(item)); + } + if (item.DisplayName != null){ + TaskLists[item.DisplayName] = item.Id; + } + } + } + + + private void ExtractText() + { + string extractedText = textValue; + Console.WriteLine(extractedText); + } + + private async Task ConvertToDo() + { + Console.WriteLine("Converting to do list to a schedule..."); + //string agenda = "Wake up, make my bed and eat breakfast"; + string prompt = $"Can you create a to-do list including start time and end time in the form of hh:mm - hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a '+' where the time is written first and the task is written next to it, separated by ':' and rewrite some tasks to make them clearer and more precise: \n {textValue}"; + Console.Write($"Input: {prompt}\n"); + + var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + Console.Write($"Completion: {completion}\n"); + } + + private async Task ConvertTasks() + { + string completion = "+10:00 - 11:00> Reply to emails +11:00 - 12:00> Schedule a meeting +12:00 - 12:30> Grab morning coffee +12:30 - 13:30> Meet colleague at cafe for lunch +19:00 - 20:00> Meet friend for dinner"; + todolist = completion.Split("+"); + foreach (string todo in todolist) + { + if (todo.Length > 0) + { + todoStart = todo.Split("- ")[0]; + todoEnd = todo.Split("- ")[1].Split("> ")[0]; + todoTasks = todo.Split("- ")[1].Split("> ")[1]; + + DateTime startTime = DateTime.UtcNow; // Example DateTime object representing the start time + + DateTimeTimeZone dateTimeTimeZone = new DateTimeTimeZone + { + DateTime = startTime.ToString("yyyy-MM-ddTHH:mm:ss"), + TimeZone = TimeZoneInfo.Utc.Id + }; + + + var requestBody = new TodoTask + { + Title = todoTasks, + ReminderDateTime = dateTimeTimeZone, + }; + + var todoTask = await graphClient.Me.Todo.Lists[TaskLists[selectedList]].Tasks + .PostAsync(requestBody); + + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ToDo.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ToDo.razor new file mode 100644 index 000000000..1a806ad70 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/ToDo.razor @@ -0,0 +1,297 @@ +@page "/todo" + +@using System.Security.Authentication +@using System.Text +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@using Microsoft.Extensions.Logging +@using GrapeCity.Documents.Pdf +@using Azure +@using Azure.AI.OpenAI +@using static System.Environment +@using Microsoft.Fast.Components.FluentUI +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication + + +@inject GraphSample.Graph.GraphClientFactory clientFactory + + + + +

Todo

+ +
+
+
+ + +
+
+
+ + + + +
+ Create To Do List +
+ + @if (creating){ + + } +
+ + @* *@ + + @*
+ + + + + + + @foreach (var key in TaskDict.Keys) + { + string time = key.Remove(key.Length - 1, 1); + + + + + + } +
Task Time Confirm
+
+ @tasknew = TaskDict[key]; + +
+
+
+ @timenew = time; + + +
+
+ +
+
*@ +
+ +@* *@ + +@*
+ @foreach (var key in TaskDict.Keys){ + string time = key.Remove(key.Length - 1, 1); +
+ + +
+ } +
*@ + +@* @for (int i = 0; i < TaskDict.Count; i++){ + string time = TaskDict.Keys.ElementAt(i).Remove(TaskDict.Keys.ElementAt(i).Length - 1, 1); +
+ + +
+} + *@ + + +@code{ + + string? tasknew; + + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + private GraphServiceClient? graphClient; + private string? textValue; + private string[]? todolist; + private string? todoStart; + private string? todoEnd; + private string todoTasks; + private IList toDos = new List(); + private string selectedList = "Tasks"; + + private string timenew = "09:00"; + private TimeOnly startTime; + Dictionary TaskDict = new Dictionary(); + + Dictionary TaskLists = new Dictionary(); + + public System.Security.Claims.ClaimsPrincipal? user { get; set; } + + private OpenAIService? openAIService; + + public bool creating = false; + + public List tas = new List(); + + [Inject] + protected IAccessTokenProvider? AccessTokenProvider { get; set; } + protected string? AccessToken { get; private set; } + + public void Print(){ + tas.Add(tasknew); + foreach (var item in tas){ + Console.WriteLine(item); + } + } + + protected override async Task OnInitializedAsync() + { + var tokenResult = await AccessTokenProvider.RequestAccessToken(); + if (tokenResult.TryGetToken(out var accessToken)) + { + AccessToken = accessToken.Value; + } + + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + //user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + + openAIService = new OpenAIService(); // Create an instance of the 'OpenAIService' + var getLists = await graphClient.Me.Todo.Lists.GetAsync(); + toDos = getLists?.Value ?? new List(); + + foreach(var item in toDos) + { + if (item == null) + { + throw new ArgumentNullException(nameof(item)); + } + if (item.DisplayName != null){ + TaskLists[item.DisplayName] = item.Id; + } + } + } + + + private void ExtractText() + { + string extractedText = textValue; + Console.WriteLine(extractedText); + } + + private async Task ConvertToDo() + { + Console.WriteLine("Converting to do list to a schedule..."); + //string agenda = "Wake up, make my bed and eat breakfast"; + string prompt = $"Can you create a to-do list including start time in the form of hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise: \n {textValue}"; + Console.Write($"Input: {prompt}\n"); + + var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + Console.Write($"Completion: {completion}\n"); + } + + private async Task ConvertTasks() + { + creating = true; + //string completion = "+10:00 - 11:00> Reply to emails +11:00 - 12:00> Schedule a meeting +12:00 - 12:30> Grab morning coffee +12:30 - 13:30> Meet colleague at cafe for lunch +19:00 - 20:00> Meet friend for dinner"; *@ + string prompt = $"Can you create a to-do list including start time in the form of hh:mm for today according to my plans below, it is not always written in chronological order. List each todo task with a ‘+’ where the time is written first and the task is written next to it, separated by ‘>’ and rewrite some tasks to make them clearer and more precise: \n {textValue}"; + //Console.Write($"Input: {prompt}\n"); + + var completionsResponse = await openAIService.client.GetCompletionsAsync(openAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + //string completion = "+06:00 > Grab morning coffee +08:00 > Reply to emails +12:00 > Meet colleague at cafe for lunch +18:00 > Meet friend for dinner +20:00 > Schedule meeting with someone in Toronto"; + Console.WriteLine(completion); + todolist = completion.Split("\n"); + //todolist = completion.Split("+"); + + foreach (string todo in todolist) + { + if (todo.Length > 2) + { + todoStart = todo.Split(">")[0].Split("+")[1]; + //todoStart = todo.Split(">")[0]; + todoTasks = todo.Split(">")[1]; + + TaskDict[todoStart] = todoTasks; + await SendToDo(todoTasks, todoStart); + } + } + creating = false; + + } + + private async Task SendToDo(string todoTasks, string todoStart){ + Console.WriteLine(todoStart); + Console.WriteLine("Sending"); + DateTime now = DateTime.UtcNow.Date; // Get the current date in UTC + + // Split the time string into hours and minutes + string[] timeParts = todoStart.Split(':'); + int hours = int.Parse(timeParts[0]); + int minutes = int.Parse(timeParts[1]); + + // Create a new DateTime object with the current date and the specified time + DateTime startTime = now.AddHours(hours).AddMinutes(minutes); + + DateTimeTimeZone dateTimeTimeZone = new DateTimeTimeZone + { + DateTime = startTime.ToString("yyyy-MM-ddTHH:mm:ss"), + TimeZone = TimeZoneInfo.Local.Id + }; + + var requestBody = new TodoTask + { + Title = todoTasks, + ReminderDateTime = dateTimeTimeZone, + }; + + var todoTask = await graphClient.Me.Todo.Lists[TaskLists[selectedList]].Tasks + .PostAsync(requestBody); + Console.WriteLine("Sent"); + + } + + +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Transcript.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Transcript.razor new file mode 100644 index 000000000..fa7bf2cea --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Transcript.razor @@ -0,0 +1,305 @@ +@using System.Security.Authentication +@using System.IO; +@using Azure +@using Azure.AI.OpenAI +@using System.Text +@using Microsoft.Graph.Beta + + +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject GraphSample.AI.OpenAIService OpenAIService + +@inject GraphSampleBeta.Graph.GraphClientFactoryBeta clientFactory + + + + + + +

Transcript.Ai

+ +
+ + + + +
+ +
+

Summary:

+ @if (!string.IsNullOrEmpty(summary)) + { +

@summary

+ } + +
+ + + +
+ + + + +
+ +@code{ + + [CascadingParameter] + protected Task? authenticationStateTask { get; set; } + private GraphServiceClient? graphClient; + protected string summary = ""; + + private FluentDialog? MyFluentDialog; + protected List data_response = new List(); + + + protected async Task testing() + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + var user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + + + var me = await graphClient.Me.GetAsync(); + + var user1 = await graphClient.Me.Events.GetAsync((requestConfiguration) => + { + requestConfiguration.QueryParameters.Select = new string[] { "subject", "organizer", "isOnlineMeeting", "onlineMeeting,start,end" }; + }); + + data_response = user1.Value; + + } + + protected override void OnAfterRender(bool firstRender) + { + if (firstRender) + MyFluentDialog!.Hide(); + } + + + private async void OnOpen() + { + await testing(); + MyFluentDialog!.Show(); + } + + private void OnDismiss(DialogEventArgs args) + { + if (args is not null && args.Reason is not null && args.Reason == "dismiss") + { + MyFluentDialog!.Hide(); + } + } + + protected async void GetContent(string meetingLink) + { + var originalString = "JoinWebUrl eq '1234'"; + string modifiedLink = originalString.Replace("'1234'", $"'{meetingLink}'"); + + Console.WriteLine(modifiedLink); + + var me = await graphClient.Me.GetAsync(); + + var meetingInfo = await graphClient.Me.OnlineMeetings.GetAsync((requestConfiguration) => + { + requestConfiguration.QueryParameters.Filter = modifiedLink; + }); + + var transcripts2 = await graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts.GetAsync(); + + //Console.WriteLine(transcripts2.Value[0].Id); + //Console.WriteLine(transcripts2.Value[0].CreatedDateTime); + + //Console.WriteLine(me.Id); + //Console.WriteLine(meetingInfo.Value[0].Id); + //Console.WriteLine(transcripts2.Value[0].Id); + + + var requestInformation = graphClient.Users[me.Id].OnlineMeetings[meetingInfo.Value[0].Id].Transcripts[transcripts2.Value[0].Id].Content.ToGetRequestInformation(); + requestInformation.UrlTemplate += "{?format}"; // Add the format query parameter to the template and query parameter. + requestInformation.QueryParameters.Add("format", "text/vtt"); + var content2 = await graphClient.RequestAdapter.SendPrimitiveAsync(requestInformation); + + var string2 = ConvertWebVttStreamToString(content2); + + await SummarizeText(string2); + StateHasChanged(); + //Console.WriteLine(summary); + } + + + protected string ConvertWebVttStreamToString(Stream? stream) + { + using (StreamReader reader = new StreamReader(stream, Encoding.UTF8)) + { + return reader.ReadToEnd(); + } + } + + // Event handler for the "Summarize" button click + protected async Task SummarizeText(string content) + { + + // Perform summarization until the overall summary is less than 3000 characters + var summaries = new List(); + var overallSummary = ""; + + // Split the content into smaller chunks + var chunkSize = 750; // Adjust this value as per your model's character limit + var chunks = SplitContentIntoChunks(content, chunkSize); + + // Perform summarization for each chunk + foreach (var chunk in chunks) + { + string prompt = $"Summarize the following text for an executive summary and in detail:\n\n{chunk}\n"; + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + + summaries.Add(completion); + string finish = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + + summaries.Add(completionFinish2); + } + + // Combine the individual summaries into an overall summary + overallSummary = string.Join(" ", summaries); + + //Break the loop if the overall summary exceeds 2500 characters + if (overallSummary.Length >= 5000) + { + summaries.Clear(); + + string prompt = $"This summary is slightly too long, please rewrite without losing any detail but in a more concise way:\n\n{overallSummary}\n"; + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + + summaries.Add(completion); + string finish = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + + summaries.Add(completionFinish2); + } + + //Break the loop if the overall summary exceeds 2500 characters + else if (overallSummary.Length <= 500) + { + summaries.Clear(); + + string prompt = $"This summary is slightly too short, please rewrite without losing any detail but in a more easy to understand way, including any extra details that would help:\n\n{overallSummary}\n"; + + var completionsResponse = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, prompt); + var completion = completionsResponse.Value.Choices[0].Text; + + summaries.Add(completion); + string finish = $"Keep summarising:\n\n{prompt}\n\nGave summary:\n\n{completion}"; + var completionsResponseFinish = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish); + var completionFinish = completionsResponseFinish.Value.Choices[0].Text; + + summaries.Add(completionFinish); + string finish2 = $"Keep summarising in extreme detail:\n\n{prompt}\n\nGave summary:\n\n{completionFinish}"; + var completionsResponseFinish2 = await OpenAIService.client.GetCompletionsAsync(OpenAIService.engine, finish2); + var completionFinish2 = completionsResponseFinish2.Value.Choices[0].Text; + + summaries.Add(completionFinish2); + } + + overallSummary = string.Join(" ", summaries); + summaries.Clear(); + summary = overallSummary; + Console.WriteLine("Generated AI summary"); + + } + + // Helper method to split the content into smaller chunks + private IEnumerable SplitContentIntoChunks(string content, int chunkSize) + { + var sentences = content.Split('.', '!', '?'); + var currentChunk = new StringBuilder(); + + foreach (var sentence in sentences) + { + if (currentChunk.Length + sentence.Length + 1 <= chunkSize) + { + currentChunk.Append(sentence).Append('.'); + } + else + { + yield return currentChunk.ToString(); + currentChunk.Clear().Append(sentence).Append('.'); + } + } + + if (currentChunk.Length > 0) + { + yield return currentChunk.ToString(); + } + } + + +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/UniversalSearch.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/UniversalSearch.razor new file mode 100644 index 000000000..bab85a477 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/UniversalSearch.razor @@ -0,0 +1,414 @@ +@page "/Search" +@using Microsoft.Graph +@using Microsoft.Graph.Models +@inject GraphSample.Graph.GraphClientFactory clientFactory + + + + + + + + + + + + + + + + +@code{ + + [CascadingParameter] + protected Task? authenticationStateTask { get; set; } + + protected string searchValue = string.Empty; + protected string DropDownStyle = string.Empty; + protected string ProgressStyle = "display: none;"; + protected bool isSearching = false; + protected string InputStyle = ""; + + private GraphServiceClient? graphClient; + private List data_response = new List(); + + + protected void HandleInputFocus() + { + InputStyle = "width:65vw;"; + } + + + protected void MouseOut() + { + Console.WriteLine("mouse outside"); + InputStyle = ""; + data_response.Clear(); + ToggleDropdown(false); + } + + protected void ToggleDropdown(bool visibility) + { + if (visibility) + { + DropDownStyle = "display: block;"; + } + + else + { + DropDownStyle = "display: none;"; + } + } + + public class Author + { + public string Sender { get; } + public string Title { get; } + public string Url { get; } + public string App { get; } + + public Author(string sender, string title, string webLink, string app) + { + Sender = sender; + Title = title; + Url = webLink; + App = app; + } + } + + + private void HandleInput(ChangeEventArgs e) + { + searchValue = e.Value.ToString(); + data_response.Clear(); + isSearching = false; + if (String.IsNullOrEmpty(searchValue)) + { + ToggleDropdown(false); + } + } + + private async Task HandleKeyPress(KeyboardEventArgs e) + { + if (e.Key == "Enter" && (isSearching == false)) + { + // call the async function from here + ProgressStyle = "display: block;"; + string searchTerm = searchValue; + searchTerm += "*"; + isSearching = true; + data_response.Clear(); + await CallApiAsync(searchTerm); + ToggleDropdown(true); + Console.WriteLine("Search value: " + searchTerm); + ProgressStyle = "display: none;"; + } + } + + + protected async Task CallApiAsync(string searchTerm) + { + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + + // Get the user + var user = (await authenticationStateTask).User; + + graphClient = clientFactory.GetAuthenticatedClient(); + + + var requestBodyMail = new Microsoft.Graph.Search.Query.QueryPostRequestBody + { + Requests = new List + { + new SearchRequest + { + EntityTypes = new List + { + EntityType.Message, + }, + Query = new SearchQuery + { + QueryString = searchTerm, + }, + QueryAlterationOptions = new SearchAlterationOptions + { + EnableModification = true, + }, + EnableTopResults = true, + }, + }, + }; + + var requestBodyTeams = new Microsoft.Graph.Search.Query.QueryPostRequestBody + { + Requests = new List + { + new SearchRequest + { + EntityTypes = new List + { + EntityType.ChatMessage, + }, + Query = new SearchQuery + { + QueryString = searchTerm, + }, + QueryAlterationOptions = new SearchAlterationOptions + { + EnableModification = true, + }, + }, + }, + }; + + var requestBodyDrive = new Microsoft.Graph.Search.Query.QueryPostRequestBody + { + Requests = new List + { + new SearchRequest + { + EntityTypes = new List + { + EntityType.DriveItem, + }, + Query = new SearchQuery + { + QueryString = searchTerm, + }, + QueryAlterationOptions = new SearchAlterationOptions + { + EnableModification = true, + } + }, + }, + }; + + + var batchRequestContent = new BatchRequestContent(graphClient); + + var team = graphClient.Search.Query.ToPostRequestInformation(requestBodyTeams); + var mail = graphClient.Search.Query.ToPostRequestInformation(requestBodyMail); + var drive = graphClient.Search.Query.ToPostRequestInformation(requestBodyDrive); + + var teamId = await batchRequestContent.AddBatchRequestStepAsync(team); + var mailId = await batchRequestContent.AddBatchRequestStepAsync(mail); + var driveId = await batchRequestContent.AddBatchRequestStepAsync(drive); + + var returnedResponse = await graphClient.Batch.PostAsync(batchRequestContent); + + // teams code + try + { + + var user1 = await returnedResponse.GetResponseByIdAsync(teamId); + // check for hits is 0 or not then it is empty + if (user1?.Value?[0]?.HitsContainers?[0]?.Total == 0) + { + Console.WriteLine("Nothing found in Teams"); + } + + else + { + for (int i = 0; i < user1?.Value?[0]?.HitsContainers?[0]?.Hits?.Count; i++) + { + var searchItems = user1?.Value?[0]?.HitsContainers?[0]?.Hits?[i]?.Resource?.AdditionalData; + + JsonElement fromMessage = (JsonElement)searchItems["from"]; + string teamName = fromMessage.GetProperty("emailAddress").GetProperty("name").GetString(); + + data_response.Add(new Author(teamName, user1.Value[0].HitsContainers[0].Hits[0].Summary, searchItems["webLink"].ToString(), "Teams")); + Console.WriteLine(" found in teams"); + } + + } + + } + catch (ServiceException ex) + { + Console.WriteLine("Get Teams failed" + ex); + } + + // mail code + try + { + var user1 = await returnedResponse.GetResponseByIdAsync(mailId); + + if (user1?.Value?[0]?.HitsContainers?[0]?.Total == 0) + { + Console.WriteLine("Nothing found in Mail"); + } + + else + { + + for (int i = 0; i < user1?.Value?[0]?.HitsContainers?[0]?.Hits?.Count; i++) + { + var searchItems = user1?.Value?[0]?.HitsContainers?[0]?.Hits?[i]?.Resource?.AdditionalData; + + JsonElement fromMessage = (JsonElement)searchItems["from"]; + string messageName = fromMessage.GetProperty("emailAddress").GetProperty("name").GetString(); + + data_response.Add(new Author(messageName, searchItems?["subject"].ToString(), searchItems["webLink"].ToString(), "Outlook")); + Console.WriteLine(" found in outlook"); + } + } + + + } + catch (ServiceException ex) + { + Console.WriteLine("Get Mail Failed" + ex); + } + + // drive code + try + { + var user1 = await returnedResponse.GetResponseByIdAsync(driveId); + + if (user1?.Value?[0]?.HitsContainers?[0]?.Total == 0) + { + Console.WriteLine("Nothing found in OneDrive"); + } + + else + { + + for (int i = 0; i < user1?.Value?[0]?.HitsContainers?[0]?.Hits?.Count; i++) + { + var searchItems = user1?.Value?[0]?.HitsContainers?[0]?.Hits?[i]?.Resource?.AdditionalData; + + JsonElement lastModifiedBy = (JsonElement)searchItems["lastModifiedBy"]; + string oneDriveCreator = lastModifiedBy.GetProperty("user").GetProperty("displayName").GetString(); + + data_response.Add(new Author(oneDriveCreator, searchItems?["name"].ToString(), searchItems["webUrl"].ToString(), "OneDrive")); + Console.WriteLine("found in drive"); + } + } + + } + + catch (ServiceException ex) + { + Console.WriteLine("Get OneDrive Failed" + ex); + } + + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Weather.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Weather.razor new file mode 100644 index 000000000..fd8c5bd2d --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Pages/Weather.razor @@ -0,0 +1,91 @@ +@* @page "/weather" + +@using Newtonsoft.Json; + +

Weather

+ +

@weatherData

+ +@code { + private string weatherData; + + protected override async Task OnInitializedAsync() + { + HttpClient client = new HttpClient(); + + var response = await client.GetAsync("https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/London?key=SWMLUUAV7UHPW5NZ6ZQQNK2G6"); + + response.EnsureSuccessStatusCode(); // Throw an exception if error + + weatherData = await response.Content.ReadAsStringAsync(); + + dynamic weather = JsonConvert.DeserializeObject(weatherData); + + // Loop through every "day" in the JSON and print a few details + foreach(var day in weather.days) + { + string weather_date = day.datetime; + string weather_desc = day.description; + string weather_tmax = day.tempmax; + string weather_tmin = day.tempmin; + + Console.WriteLine(" Forecast for date: " + weather_date); + Console.WriteLine(" General conditions: " + weather_desc); + Console.WriteLine(" The high temperature will be " + weather_tmax); + Console.WriteLine(" The low temperature will be: " + weather_tmin); + } + } +} *@ + + + +@page "/weather" + +@using Newtonsoft.Json; +@using System.Collections.Generic; +@using System; +@using System.Text; +@using System.Net; + +@inject IJSRuntime JSRuntime + +

Weather

+ + + +@code { + private List dates = new List(); + private List tmax = new List(); + private List tmin = new List(); + + protected override async Task OnInitializedAsync() + { + HttpClient client = new HttpClient(); + + var ip = await client.GetStringAsync("https://api.ipify.org"); + string myIP = ip.ToString(); + var loc = await client.GetStringAsync("https://api.ipgeolocation.io/ipgeo?apiKey=128faba391e648aba00fcf3acda914e3&ip="+ myIP); + + + + dynamic location = JsonConvert.DeserializeObject(loc); + Console.WriteLine(location.city); + + + var response = await client.GetAsync("https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/"+ location.city +"?key=SWMLUUAV7UHPW5NZ6ZQQNK2G6"); + + response.EnsureSuccessStatusCode(); // Throw an exception if error + + var weatherData = await response.Content.ReadAsStringAsync(); + + dynamic weather = JsonConvert.DeserializeObject(weatherData); + + // Loop through every "day" in the JSON and extract temperature data + foreach (var day in weather.days) + { + dates.Add(day.datetime.ToString()); + tmax.Add(day.tempmax.ToString()); + tmin.Add(day.tempmin.ToString()); + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Program.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Program.cs new file mode 100644 index 000000000..ed81feeaa --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Program.cs @@ -0,0 +1,53 @@ +using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Components.WebAssembly.Authentication; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using GraphSample; +using GraphSample.Graph; +using GraphSample.Services; +using GraphSampleBeta.Graph; +using GraphSample.ReusableComponents; +using Microsoft.JSInterop; +using Blazored.Modal; +using Microsoft.Fast.Components.FluentUI; + +var builder = WebAssemblyHostBuilder.CreateDefault(args); +builder.RootComponents.Add("#app"); +builder.RootComponents.Add("head::after"); + +// HttpClient for passing into GraphServiceClient constructor +builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri("https://graph.microsoft.com") }); + +builder.Services.AddMsalAuthentication(options => +{ + //options.ProviderOptions.LoginMode = "Redirect"; + var scopes = builder.Configuration.GetValue("GraphScopes"); + if (string.IsNullOrEmpty(scopes)) + { + Console.WriteLine("WARNING: No permission scopes were found in the GraphScopes app setting. Using default User.Read."); + scopes = "User.Read"; + } + + foreach (var scope in scopes.Split(';')) + { + Console.WriteLine($"Adding {scope} to requested permissions"); + options.ProviderOptions.DefaultAccessTokenScopes.Add(scope); + } + + builder.Configuration.Bind("AzureAd", options.ProviderOptions.Authentication); +}) +.AddAccountClaimsPrincipalFactory(); + + +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); + +builder.Services.AddScoped(); +builder.Services.AddBlazoredModal(); +builder.Services.AddFluentUIComponents(); + +LibraryConfiguration config = new(ConfigurationGenerator.GetIconConfiguration(), ConfigurationGenerator.GetEmojiConfiguration()); +builder.Services.AddFluentUIComponents(config); + +await builder.Build().RunAsync(); diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/PublishProfiles/binderconnect - Zip Deploy.pubxml b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/PublishProfiles/binderconnect - Zip Deploy.pubxml new file mode 100644 index 000000000..8f1f057de --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/PublishProfiles/binderconnect - Zip Deploy.pubxml @@ -0,0 +1,16 @@ + + + + ZipDeploy + Release + Any CPU + /subscriptions/9eb1b5cd-a6e6-4ec7-a8d1-7830525b2e46/resourceGroups/SummerProject/providers/Microsoft.Web/sites/binderconnect + SummerProject + AzureWebSite + https://binderconnect.scm.azurewebsites.net/ + https://binderconnect.azurewebsites.net + True + $binderconnect + <_SavePWD>True + + \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/launchSettings.json b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/launchSettings.json new file mode 100644 index 000000000..66578a6e1 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Properties/launchSettings.json @@ -0,0 +1,29 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:17204", + "sslPort": 44309 + } + }, + "profiles": { + "GraphSample": { + "commandName": "Project", + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "https://localhost:7067;http://localhost:5230", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor new file mode 100644 index 000000000..0b4f9709a --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor @@ -0,0 +1,107 @@ +@using Microsoft.AspNetCore.Components.Forms +@using SharedModels.Models + + + +
+ +
+ +
+ +
+
+ +
+ +
+
+
+ +@code { + public Form _form = new(); + + [CascadingParameter] BlazoredModalInstance BlazoredAssessmentModal { get; set; } = default!; + + protected override void OnInitialized() => BlazoredAssessmentModal.SetTitle("Enter Custom Description"); + + private async Task SubmitForm() + { + await BlazoredAssessmentModal.CloseAsync(ModalResult.Ok(_form.customDescription)); + } + + private async Task Cancel() { + await BlazoredAssessmentModal.CancelAsync(); + } + + public class Form{ + public string? customDescription { get; set; } = string.Empty; + } + + } \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor new file mode 100644 index 000000000..d70a7f6df --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor @@ -0,0 +1,99 @@ +@using Microsoft.AspNetCore.Components.Forms +@using SharedModels.Models + + + +
+ +
+ + +
+
+ + +
+ +
+ +
+
+
+ +@code { + private readonly TimelineBson _form = new(); + + [CascadingParameter] BlazoredModalInstance BlazoredModal { get; set; } = default!; + + protected override void OnInitialized() => BlazoredModal.SetTitle("Enter a new application:"); + + private async Task SubmitForm() => await BlazoredModal.CloseAsync(ModalResult.Ok(_form)); + private async Task Cancel() => await BlazoredModal.CancelAsync(); + +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor new file mode 100644 index 000000000..fe61bbce4 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor @@ -0,0 +1,145 @@ +@using Microsoft.AspNetCore.Components.Forms +@using SharedModels.Models +@using Microsoft.Fast.Components.FluentUI + + + + +
+ +
+ + +
+
+ +
+ + @if(_form.type == AssessmentType.Custom){ + + } +
+
+ +
+ + +
+
+ +
+
+
+ +@code { + public Assessment _form = new(); + + [CascadingParameter] BlazoredModalInstance BlazoredAssessmentModal { get; set; } = default!; + + protected override void OnInitialized(){ + BlazoredAssessmentModal.SetTitle("Enter The Assessment Details"); + _form.date = DateTime.Now.Date.AddHours(DateTime.Now.Hour + 1).AddMinutes(0).AddSeconds(0); + } + + private async Task SubmitForm() + { + Console.WriteLine("Confirmed"); + _form.date = _form.date.AddHours(1); + await BlazoredAssessmentModal.CloseAsync(ModalResult.Ok(_form)); + } + + private async Task Cancel() { + Console.WriteLine("Cancelled"); + await BlazoredAssessmentModal.CancelAsync(); + } +} + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/InputPopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/InputPopup.razor new file mode 100644 index 000000000..b23b0c7ea --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/InputPopup.razor @@ -0,0 +1,141 @@ +@using Microsoft.AspNetCore.Components.Forms + + + +
+ + +
+ + +
+ +
+
+
+ +@code { + + List searchResults = defaultResults(); + + static string defaultResultsText = "no results"; + FluentSearch? searchTest; + string? searchValue = string.Empty; + static List defaultResults() + { + return new() { defaultResultsText }; + } + + + + void handleSearchInput(ChangeEventArgs args) + { + if (args is not null && !string.IsNullOrWhiteSpace(args.Value?.ToString())) + { + string searchTerm = args.Value.ToString()!.ToLower(); + + if (searchTerm.Length > 0) + { + List temp = allSenders.Where(str => str.ToLower().Contains(searchTerm)).Select(str => str).ToList(); + if (temp.Count() > 0) + { + searchResults = temp; + } + } + } + else + { + searchResults = defaultResults(); + searchValue = string.Empty; + } + } + + private readonly Form _form = new(); + + [CascadingParameter] BlazoredModalInstance BlazoredModal { get; set; } = default!; + [Parameter] public HashSet allSenders { get; set; } + + protected override void OnInitialized() => BlazoredModal.SetTitle("Enter an Email Address"); + + private async Task SubmitForm() => await BlazoredModal.CloseAsync(ModalResult.Ok(searchValue)); + private async Task Cancel() => await BlazoredModal.CancelAsync(); + + class Form + { + // take care of the nullability of the string public string Message; + public string Message { get; set; } = string.Empty; + + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor new file mode 100644 index 000000000..902d2fac9 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor @@ -0,0 +1,83 @@ +@using Microsoft.AspNetCore.Components.Forms + + + + +
+ +
+ +
+
+
+ +@code { + private readonly Form _form = new(); + [CascadingParameter] BlazoredModalInstance BlazoredModal { get; set; } = default!; + + protected override void OnInitialized() => BlazoredModal.SetTitle("Are you sure you want to delete a timeline?"); + + private async Task SubmitForm() => await BlazoredModal.CloseAsync(ModalResult.Ok()); + private async Task Cancel() => await BlazoredModal.CancelAsync(); + + class Form { }; + +} + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor new file mode 100644 index 000000000..a01eb0c0f --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor @@ -0,0 +1,99 @@ +@using Microsoft.AspNetCore.Components.Forms +@using SharedModels.Models + + + +
+ + +
+ +
+
+
+ +@code { + public Form _form = new(); + + [CascadingParameter] BlazoredModalInstance BlazoredAssessmentModal { get; set; } = default!; + + [Parameter] public DateTimeOffset oldDate { get; set; } + + protected override void OnInitialized() + { + _form.date = oldDate; + BlazoredAssessmentModal.SetTitle("Enter New Date"); + } + + private async Task SubmitForm() + { + await BlazoredAssessmentModal.CloseAsync(ModalResult.Ok(_form.date)); + } + + private async Task Cancel() { + await BlazoredAssessmentModal.CancelAsync(); + } + + public class Form{ + public DateTimeOffset? date { get; set; } = null; + } + + } \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Services/BackendApiService.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/BackendApiService.cs new file mode 100644 index 000000000..38abcb505 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/BackendApiService.cs @@ -0,0 +1,218 @@ +using System; +using System.Text.Json; +using SharedModels.Models; +using MongoDB.Bson; +using MongoDB.Bson.IO; +using MongoDB.Bson.Serialization; +using System.Net.Http.Json; +using System.Threading.Tasks; + +namespace GraphSample.Services +{ + public class BackendApiService: IBackendApiService + { + + private readonly HttpClient httpClient; + + public BackendApiService(HttpClient httpClient) + { + this.httpClient = httpClient; + } + + public async Task?> getUserTimelinesAsync(string username) + { + var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/get-timelines/{username}"); + + if (response.IsSuccessStatusCode) + { + string responseBody = await response.Content.ReadAsStringAsync(); + + List? timelines = BsonSerializer.Deserialize>(responseBody); + return timelines; + } + return null; + } + + + public async Task getUserTimelineAsync(string username, int timelineID) + { + var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/get-timeline/{username}/{timelineID}"); + string responseBody = await response.Content.ReadAsStringAsync(); + + ApplicationTimeline timelines = BsonSerializer.Deserialize(responseBody); + return timelines; + } + + public async Task createApplicant(string username) + { + var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/create-applicant/{username}"); + return response.IsSuccessStatusCode; + } + + + public async Task addTimeline(string username, TimelineBson newTimelineBson) + { + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-timeline/{username}", newTimelineBson); + string responseBody = await response.Content.ReadAsStringAsync(); + int newTimelineID = int.Parse(responseBody); + return response.IsSuccessStatusCode ? newTimelineID : -1; + + } + + public async Task updateReadEmailsDict(string username, ReadEmailsBson readEmails) + { + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-read-emails/{username}", readEmails); + return response.IsSuccessStatusCode; + } + + + public async Task removeTimeline(string username, int timelineID) + { + + var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/remove-timeline/{username}/{timelineID}"); + + return response.IsSuccessStatusCode; + + } + + + public async Task removeEmail(string email, string username, int timelineID) + { + var selectedEmail = new EmailBson { emailAddress = email, timelineID = timelineID }; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/remove-email/{username}", selectedEmail); + + return response.IsSuccessStatusCode; + + } + + public async Task addEmail(string email, string username, int timelineID) + { + var selectedEmail = new EmailBson { emailAddress = email, timelineID = timelineID }; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-email/{username}", selectedEmail); + + return response.IsSuccessStatusCode; + } + + public async Task addEmails(List emails, string username, int timelineID) + { + var updatedEmails = new EmailsBson { emailAddresses = emails, timelineID = timelineID }; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-emails/{username}", updatedEmails); + + return response.IsSuccessStatusCode; + + } + + public async Task removeAssessment(Assessment assessment, string username, int timelineID) + { + var selectedAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID}; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/remove-assessment/{username}", selectedAssessment); + + return response.IsSuccessStatusCode; + + } + + public async Task addAssessment(Assessment assessment, string username, int timelineID) + { + var newAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID }; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-assessment/{username}", newAssessment); + + return response.IsSuccessStatusCode; + + } + + public async Task addAssessments(List assessments, string username, int timelineID) + { + var newAssessments = new AssessmentsBson { assessments = assessments, timelineID = timelineID }; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/add-assessments/{username}", newAssessments); + + return response.IsSuccessStatusCode; + + } + + public async Task updateAssessments(List assessments, string username, int timelineID) + { + var updatedAssessments = new AssessmentsBson { assessments = assessments, timelineID = timelineID }; + + Console.WriteLine("In backend API funciton"); + foreach(var assessment in updatedAssessments.assessments){ + Console.WriteLine(assessment.date); + } + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessments/{username}", updatedAssessments); + + return response.IsSuccessStatusCode; + + } + + public async Task updateAssessmentStatus(Assessment assessment, string username, int timelineID, AssessmentStatus newStatus) + { + var newAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID}; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-status/{username}/{newStatus}", newAssessment); + + return response.IsSuccessStatusCode; + } + + public async Task updateAssessmentType(Assessment assessment, string username, int timelineID, AssessmentType newType, string? customDescription) + { + Assessment newAssessment = new Assessment{ + date = assessment.date, + status = assessment.status, + taskId = assessment.taskId, + todoScheduled = assessment.todoScheduled, + type = newType, + customDescription = customDescription + }; + + var newAssessmentBson = new AssessmentBson { assessment = newAssessment, timelineID = timelineID}; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-type/{username}", newAssessmentBson); + + return response.IsSuccessStatusCode; + } + + public async Task updateAssessmentDate(string username, int timelineID, DateTimeOffset oldDate, DateTimeOffset newDate) + { + + var datesBson = new DatesBson { + oldDate = oldDate, + newDate = newDate, + timelineID = timelineID + }; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-date/{username}/", datesBson); + + return response.IsSuccessStatusCode; + } + + + public async Task updateAssessmentTodo(Assessment assessment, string username, int timelineID, bool newTodoStatus) + { + var newAssessment = new AssessmentBson { assessment = assessment, timelineID = timelineID }; + + var response = await httpClient.PostAsJsonAsync($"https://localhost:7023/api/JobApplicants/update-assessment-todo/{username}/{newTodoStatus}", newAssessment); + + return response.IsSuccessStatusCode; + } + + public async Task updateAlertLevel(int timelineID, string username, int newLevel) + { + var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/update-alert-level/{username}/{timelineID}/{newLevel}"); + + return response.IsSuccessStatusCode; + } + + public async Task updateArchivedStatus(int timelineID, string username, bool newStatus) + { + var response = await httpClient.GetAsync($"https://localhost:7023/api/JobApplicants/update-archived-status/{username}/{timelineID}/{newStatus}"); + + return response.IsSuccessStatusCode; + } + } +} + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Services/IBackendApiService.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/IBackendApiService.cs new file mode 100644 index 000000000..af7207330 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Services/IBackendApiService.cs @@ -0,0 +1,30 @@ +using System; +using System.Threading.Tasks; +using SharedModels.Models; + +namespace GraphSample.Services +{ + public interface IBackendApiService + { + public Task?> getUserTimelinesAsync(string username); + public Task getUserTimelineAsync(string username, int timelineID); + public Task removeEmail(string email, string username, int timelineID); + public Task addEmail(string email, string username, int timelineID); + public Task removeAssessment(Assessment assessment, string username, int timelineID); + public Task addAssessment(Assessment assessment, string username, int timelineID); + public Task addAssessments(List assessments, string username, int timelineID); + public Task updateAssessments(List assessments, string username, int timelineID); + public Task addTimeline(string username, TimelineBson newTimeLineBson); + public Task removeTimeline(string username, int timelineID); + public Task updateReadEmailsDict(string username, ReadEmailsBson readEmails); + public Task createApplicant(string username); + public Task updateAssessmentStatus(Assessment assessment, string username, int timelineID, AssessmentStatus newStatus); + public Task updateAssessmentType(Assessment assessment, string username, int timelineID, AssessmentType newType, string? customDescription); + public Task updateAssessmentDate(string username, int timelineID, DateTimeOffset oldDate, DateTimeOffset newDate); + public Task updateAssessmentTodo(Assessment assessment, string username, int timelineID, bool newTodoStatus); + public Task updateAlertLevel(int timelineID, string username, int newLevel); + public Task updateArchivedStatus(int timelineID, string username, bool newStatus); + public Task addEmails(List emails, string username, int timelineID); + } +} + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/LoginDisplay.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/LoginDisplay.razor new file mode 100644 index 000000000..859076a78 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/LoginDisplay.razor @@ -0,0 +1,116 @@ +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication +@using System.Security.Authentication +@using Microsoft.Graph +@using Microsoft.AspNetCore.Components +@using Microsoft.JSInterop + +@inject NavigationManager Navigation +@inject SignOutSessionStateManager SignOutManager + + + + + + + + +
+ Log in +
+
+
+ +@code{ + private async Task BeginLogout(MouseEventArgs args) + { + await SignOutManager.SetSignOutState(); + Navigation.NavigateToLogout("authentication/logout"); + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor new file mode 100644 index 000000000..82008bc2a --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor @@ -0,0 +1,71 @@ +@inherits LayoutComponentBase + +@using System.Security.Authentication +@using Microsoft.Graph +@using Microsoft.Graph.Models +@using TimeZoneConverter +@inject GraphSample.Graph.GraphClientFactory clientFactory +@inject NavigationManager NavigationManager +@using Microsoft.AspNetCore.Components +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication +@using Microsoft.JSInterop +@using Microsoft.Fast.Components.FluentUI + +@inject IJSRuntime JSRuntime + + + +
+
+
+ +
+
+
+
+
+ +
+ +
+ @Body +
+
+
+ +@code{ + [CascadingParameter] + private Task? authenticationStateTask { get; set; } + private GraphServiceClient? graphClient; + + [Inject] + protected IAccessTokenProvider AccessTokenProvider { get; set; } + protected string? AccessToken { get; private set; } + public int count = 0; + public System.Security.Claims.ClaimsPrincipal user { get; set; } + + + [JSInvokable] + private async Task GetAccessToken() + { + return this.AccessToken; + } + + protected override async Task OnInitializedAsync() + { + var tokenResult = await AccessTokenProvider.RequestAccessToken(); + if (tokenResult.TryGetToken(out var accessToken)) + { + AccessToken = accessToken.Value; + count += 1; + } + if (authenticationStateTask == null) + { + throw new AuthenticationException( + "Unable to access authentication state"); + } + user = (await authenticationStateTask).User; + graphClient = clientFactory.GetAuthenticatedClient(); + await JSRuntime.InvokeVoidAsync("mgtInterop.configureProvider", AccessToken); + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor.css b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor.css new file mode 100644 index 000000000..cb61f7e89 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/MainLayout.razor.css @@ -0,0 +1,26 @@ +.page { + position: relative; + display: flex; + flex-direction: column; +} + + +.content { + width: 100%; +} + +.outerSearch { + /* put this search bar in line with the nav bar */ + position: fixed; + top: 20px; + left: 11rem; + z-index: 4; +} + +.seperateNavBar { + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 3; +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/RedirectToLogin.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/RedirectToLogin.razor new file mode 100644 index 000000000..66133c3c3 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/Shared/RedirectToLogin.razor @@ -0,0 +1,11 @@ + + +@inject NavigationManager Navigation + +@code { + protected override void OnInitialized() + { + Navigation.NavigateTo($"authentication/login?returnUrl={Uri.EscapeDataString(Navigation.Uri)}"); + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/_Imports.razor b/samples/app-nexus-productivity/GraphSample/GraphSample/_Imports.razor new file mode 100644 index 000000000..9b0f9a62a --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/_Imports.razor @@ -0,0 +1,22 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using System +@using System.Text.Json; +@using System.Security.Authentication +@using TimeZoneConverter +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Components.Forms +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.Web.Virtualization +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using GraphSample +@using GraphSample.Shared +@using Microsoft.Fast.Components.FluentUI +@using Blazored.Modal +@using Blazored.Modal.Services +@using GraphSample.AI + +@using Microsoft.AspNetCore.Components.Authorization +@using Microsoft.AspNetCore.Components.WebAssembly.Authentication diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.Core.dll new file mode 100644 index 000000000..2c8f63787 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.SecurityToken.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.SecurityToken.dll new file mode 100644 index 000000000..a97c0efa8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AWSSDK.SecurityToken.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.OpenAI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.OpenAI.dll new file mode 100644 index 000000000..c5019ede1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.OpenAI.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.TextAnalytics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.TextAnalytics.dll new file mode 100644 index 000000000..17936adff Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.AI.TextAnalytics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.Core.dll new file mode 100644 index 000000000..730ec4b53 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Azure.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AzureOpenAIClient.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AzureOpenAIClient.Http.dll new file mode 100644 index 000000000..c86ec00ff Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/AzureOpenAIClient.Http.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BlazorInputFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BlazorInputFile.dll new file mode 100644 index 000000000..53c55570c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BlazorInputFile.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Blazored.Modal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Blazored.Modal.dll new file mode 100644 index 000000000..8b8bad035 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Blazored.Modal.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BouncyCastle.Crypto.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BouncyCastle.Crypto.dll new file mode 100644 index 000000000..9265a5833 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/BouncyCastle.Crypto.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ChartJSCore.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ChartJSCore.dll new file mode 100644 index 000000000..79fa1fa95 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ChartJSCore.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DnsClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DnsClient.dll new file mode 100644 index 000000000..39aa546ad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DnsClient.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DocumentFormat.OpenXml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DocumentFormat.OpenXml.dll new file mode 100644 index 000000000..1857a116d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/DocumentFormat.OpenXml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Imaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Imaging.dll new file mode 100644 index 000000000..ae466c458 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Imaging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Pdf.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Pdf.dll new file mode 100644 index 000000000..92224c755 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GrapeCity.Documents.Pdf.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.dll new file mode 100644 index 000000000..4087361e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.pdb new file mode 100644 index 000000000..758251dcf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.pdb differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.staticwebassets.runtime.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.staticwebassets.runtime.json new file mode 100644 index 000000000..dfa257c8b --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/GraphSample.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\","C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\bundle\\","C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"icon-192.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"icon-192.png"},"Patterns":null},"identityTeams.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"identityTeams.js"},"Patterns":null},"img":{"Children":{"bindercoloured.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/bindercoloured.png"},"Patterns":null},"binder_RGB_logotype_white_transparent_1135x512.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/binder_RGB_logotype_white_transparent_1135x512.png"},"Patterns":null},"nexus.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/nexus.png"},"Patterns":null},"no-profile-photo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/no-profile-photo.png"},"Patterns":null},"openai-white-logomark.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/openai-white-logomark.png"},"Patterns":null}},"Asset":null,"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"intro.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"intro.jpg"},"Patterns":null},"manifest.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"manifest.json"},"Patterns":null},"mgtInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"mgtInterop.js"},"Patterns":null},"service-worker.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"service-worker.js"},"Patterns":null},"service-worker.published.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"service-worker.published.js"},"Patterns":null},"teamHelper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"teamHelper.js"},"Patterns":null},"TeamsLogin.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"TeamsLogin.js"},"Patterns":null},"windowResizeInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"windowResizeInterop.js"},"Patterns":null},"_content":{"Children":{"Microsoft.Fast.Components.FluentUI":{"Children":{"Components":{"Children":{"Anchor":{"Children":{"FluentAnchor.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/Anchor/FluentAnchor.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null},"DataGrid":{"Children":{"FluentDataGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/DataGrid/FluentDataGrid.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null},"HorizontalScroll":{"Children":{"FluentHorizontalScroll.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"reboot.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/reboot.css"},"Patterns":null},"variables.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/variables.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"CacheStorageAccessor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/CacheStorageAccessor.js"},"Patterns":null},"web-components.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/web-components.js"},"Patterns":null},"web-components.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/web-components.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Fast.Components.FluentUI.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Microsoft.Fast.Components.FluentUI.lib.module.js"},"Patterns":null},"icons":{"Children":{"PresenceAvailable":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceAway":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceBusy":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceDND":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Add":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Alert":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertSnooze":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBidirectionalUpDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowClockwise":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCounterclockwise":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowNext":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowPrevious":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepIn":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepInLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepInRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepOut":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSync":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrending":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Attach":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Backpack":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Balloon":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BezierCurveSquare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Briefcase":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Call":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallMissed":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretDownRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelShare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Chat":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatEmpty":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxUnchecked":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkmark":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Circle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleHalfFill":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleLine":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clock":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Comment":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentAdd":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeftTempLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeftTempRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRightTempLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRightTempRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentCheckmark":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Couch":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cube":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Delete":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dentist":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dismiss":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Doctor":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drop":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EqualOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ErrorCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eye":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Filter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodCake":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Glance":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceDefault":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceDefault/12_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceDefault/12_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceHorizontal":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Globe":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HatGraduation":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Heart":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Home":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Important":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Info":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Link":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkSquare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Location":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrow":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockClosed":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mail":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailUnread":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mention":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MyLocation":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Notepad":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Organization":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pause":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"People":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Phone":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pin":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Play":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Premium":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Prohibited":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QuestionCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Record":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RecordStop":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RectangleLandscape":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Reward":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Ribbon":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanDash":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Search":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shield":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlashForward":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitHorizontal":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitVertical":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Square":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareShadow":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Star":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarHalf":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarOneQuarter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarThreeQuarter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Status":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sticker":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Subtract":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tablet":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tent":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Text":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/16_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/16_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextT":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Toolbox":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Triangle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPerson":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Warning":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Accessibility":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSubtractCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AirplaneTakeOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertBadge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertUrgent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignBottom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignCenterHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignCenterVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeBottom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeBottom/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeBottom/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeLeft/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeLeft/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeRight/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeRight/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeTop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeTop/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeTop/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStretchHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStretchVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignTop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalCat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalDog":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalRabbit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalTurtle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ApprovalsApp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Apps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsAddIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Archive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBounce":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDownload":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowFitIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookDownRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMaximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMinimize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowParagraph":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedoTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedoTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeat1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeatAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeatAllOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReply":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReplyAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReplyDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRotateClockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowShuffle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowShuffleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortDownLines":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSprint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepOver":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndoTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndoTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpload":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoSum":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Backspace":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Beach":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Beaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BinderTriangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bluetooth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Blur":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Board":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardHeart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bookmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookNumber":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowlChopsticks":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Box":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Braces":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesCheckmark/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesCheckmark/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesDismiss/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesDismiss/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Branch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchCompare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchFork":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BriefcaseMedical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BriefcaseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrightnessHigh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrightnessLow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BroadActivityFeed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Broom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bug":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Building":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBank":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBankLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingFactory":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingHome":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingPeople":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingShop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingSkyscraper":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Button":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Calculator":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalculatorMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Calendar3Day":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowCounterclockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAssistant":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarCancel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarDataBar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarEmpty":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPattern":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPhone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarReply":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarToday":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWorkWeek":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallEnd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallInbound":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallOutbound":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallPark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallTransfer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Camera":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraDome":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CatchUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CD":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CD/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CD/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Certificate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Channel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatArrowDoubleBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatBubblesQuestion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatCursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMultipleHeart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxChecked":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxCheckedSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxIndeterminate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkStarburst":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkUnderlineCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDownUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronUpDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"City":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Classification":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClearFormatting":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clipboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clipboard3Day":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardBulletListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardBulletListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardCode":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardLetter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMonth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardNote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardPaste":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTask":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockAlarm":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClosedCaption":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClosedCaptionOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cloud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArchive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudWords":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clover":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Code":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeBlock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeFS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeFSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeJS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeJSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodePY":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePY/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePY/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodePYRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePYRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePYRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeRB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeRBRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRBRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRBRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTextOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextOff/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextOff/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeVB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeVBRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVBRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVBRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Color":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorFill":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorLine":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnSingle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnSingleCompare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMention":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultipleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultipleLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Communication":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CompassNorthwest":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Compose":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cone/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cone/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ConferenceRoom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Connected":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Connector":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardGroup":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContractDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Copy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopyArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Crop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Crown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeQuick":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CurrencyDollarEuro":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CurrencyDollarRupee":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorHover":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorHoverOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarHorizontalDescending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontalDescending/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontalDescending/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalAscending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAscending/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAscending/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Database":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseStack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseStack/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseStack/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataHistogram":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataTrending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesignIdeas":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Desktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopCursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopKeyboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopMac":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopPulse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceEQ":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceMeetingRoom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceMeetingRoomRemote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diamond":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Directions":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DividerShort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DividerTall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Document":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Document100":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListCube":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCatchUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentContract/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentContract/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCopy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCSS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentData":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDataLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFooter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderFooter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJAVA":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMention":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentNumber1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentNumber1/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentNumber1/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageBeaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageBeaker/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageBeaker/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPDF":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPY":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPY/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPY/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentRB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSASS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSplitHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSplitHintOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTarget":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTarget/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTarget/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentVB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentVB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentVB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentYML":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Door":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drafts":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBeer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkCoffee":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkMargarita":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkWine":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dumbbell":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Earth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EarthLeaf":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Edit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Emoji":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiAngry":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiHand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiLaugh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiMeh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSad":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ErrorCircleSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExpandUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExpandUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eyedropper":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeTracking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeTrackingOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FastForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fax":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Feed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Filmstrip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilmstripPlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilmstripSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fire":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagPride":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/48_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flash":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashFlow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flashlight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlipHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlipVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fluid":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Folder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderGlobe":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderOpenVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderZip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontSpaceTrackingIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontSpaceTrackingOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Food":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodChickenLeg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodEgg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodToast":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS30":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS60":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Frame":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FStop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FullScreenMaximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FullScreenMinimize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Games":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GanttChart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gavel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GavelProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GIF":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gift":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceHorizontalSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/16_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/16_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Glasses":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlassesOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Grid":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridKanban":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guest":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guitar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandDraw":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandLeftChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Handshake":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandWave":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HardDrive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HD":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Headset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartBroken":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartCircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Highlight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HighlightAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"History":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Hourglass":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassHalf":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassOneQuarter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassThreeQuarter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Image":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageAltText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageBorder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageMultipleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageStack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageTable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImmersiveReader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkingTool":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkingToolAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/32_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InPrivateAccount":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"IoT":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"IoTAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"JavaScript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Key":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Keyboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardMouse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardMouse/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardMouse/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardShift":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardShiftUppercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyCommand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Laptop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaptopDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaptopShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafOne":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafThree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafTwo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Library":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lightbulb":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbFilament":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Likert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal4":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal4Search":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"List":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBarTree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBarTreeOffset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocalLanguage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/20_f.svg"},"Patterns":null},"ja":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockClosedKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Luggage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAllRead":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowDoubleBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAttach":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInbox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailOpenPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailPause":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailRead":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailReadMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailTemplate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Map":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MapDrive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormatProfessional":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormula":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathSymbols":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Maximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MeetNow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Megaphone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneLoud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Memory":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Memory/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Memory/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Merge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mic":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicPulse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicPulseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Molecule":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Money":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoviesandTV":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MultiselectLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MultiselectRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNoteOff2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Navigation":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NetworkAdapter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkAdapter/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkAdapter/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"New":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"News":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Next":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Note":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NoteAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Notebook":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotepadEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotepadPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotePin":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle3":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle4":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle5":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbol":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Open":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Options":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Oval":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PageFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrush":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBucket":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftExpand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftFocusRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/28_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeaderAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeaderKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftTextAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftTextDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Password":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Payment":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCommunity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeam":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamDelete":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleToolbox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAvailable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonBoard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonDelete":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonFeedback":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLightning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonNote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStanding":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStanding/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStanding/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSupport":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonWalking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneEraser":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLaptop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpanIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpanOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPicture":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPictureEnter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPictureExit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pill":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PinOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayCircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Poll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PollHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PremiumPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PreviewLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Previous":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Print":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProhibitedMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreenDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProtocolHandler":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzleCube":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Puzzlepiece":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Question":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadioButton":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadioButtonOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButtonOff/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButtonOff/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RAM":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RatingMature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadAloud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingListAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Receipt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptMoney":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Remote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rename":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrderDotsHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrderDotsVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeLarge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeSmall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rewind":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rhombus":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RoadCone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rocket":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Ruler":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Run":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Save":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Savings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScaleFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scan":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanCamera":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanThumbUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanThumbUpOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Script":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Script/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Script/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchVisual":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Send":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendBeaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SerialPort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Server":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerSurface":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurface/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurface/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerSurfaceMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurfaceMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurfaceMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServiceBell":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Settings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeExclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeIntersect":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shapes":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeUnion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Share":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonOverlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonOverlayInside":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonP":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenStop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldGlobe":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldKeyhole":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldQuestion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldTask":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shifts":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsActivity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Signature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SIM":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideEraser":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideRecord":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Snooze":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Space3D":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SparkleCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker0":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerMute":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sport":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportSoccer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SprayCan":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SprayCan/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SprayCan/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarLineHorizontal3":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Step":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Step/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Step/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Steps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StoreMicrosoft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Subtitles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircleArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircleArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractSquare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Symbols":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SyncOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tab":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopArrowClockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabInPrivate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Table":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableBottomRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCalculator":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellsMerge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellsSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDeleteColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDeleteRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRowTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRowTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableInsertColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableInsertRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLightning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveAbove":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveBelow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableResizeColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableResizeRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleExclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleInclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackAbove":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackBelow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSwitch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tabs":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagLockAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/32_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Target":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TargetArrow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TargetEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Temperature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TetrisApp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenterRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenterRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRightRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRightRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBold":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"de":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ms":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"no":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"pt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr-cyrl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr-latn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignMiddle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListTree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseLowercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseTitle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseUppercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextChangeCase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextClearFormatting":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/24_f.svg"},"Patterns":null},"ko":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/ko/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/20_f.svg"},"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColorAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDensity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextExpand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextField":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFont":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFontInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFontSize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarWand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextItalic":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"de":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"eu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"no":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraph":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ja":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirectionLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirectionRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquareLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquareRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextQuote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSortAscending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fi":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"se":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSortDescending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fi":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"se":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextStrikethrough":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSubscript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSuperscript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextTTag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextTTag/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextTTag/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderline":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"eu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"pt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderlineCharacterU":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWrap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWrapOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ThumbDislike":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ThumbLike":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TicketDiagonal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Translate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TranslateAuto":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TranslateOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Trophy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrophyLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrophyOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TV":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TVUSB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Vault":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleBicycle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleBus":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCab":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarCollision":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarParking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileLTRClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleShip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleSubway":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruck":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckProfile":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoBackgroundEffect":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoBackgroundEffectHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClipMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClipOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Voicemail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wallet":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WalletCreditCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Water":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherMoon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherMoonOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherPartlyCloudyDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunny":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WebAsset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Window":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowApps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDevEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDevTools":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowNew":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowWrench":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wrench":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxController":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AccessibilityCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AccessTime":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Airplane":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Album":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlbumAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertOn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignEndHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignEndVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceAroundHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceAroundVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceBetweenHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceBetweenVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceEvenlyHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceEvenlyVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceFitVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceFitVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceFitVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStartHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStartVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalRabbitOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppGeneric":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppRecent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsListDetail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppTitle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitContent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeightDotted":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeightIn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitWidthDotted":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBetweenDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBetweenUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowClockwiseDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCollapseAll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCounterclockwiseDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEject/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEject/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnterLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnterUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForwardDownLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForwardDownPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowImport":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowJoin":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowJoin/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowJoin/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMaximizeVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMinimizeVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMove":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMoveInward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMoveInward/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMoveInward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowOutlineUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRotateCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRouting":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRoutingRectangleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowsBidirectional":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSquareDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingSparkle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingWrench":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnBidirectionalDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnUpDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowWrap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrap/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrap/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowWrapOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrapOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrapOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AttachArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AttachText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Autocorrect":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoFitHeight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoFitWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BackpackAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Badge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BarcodeScanner":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery0":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery6":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery7":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery8":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery9":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryCharge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatterySaver":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BinFull":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothDisabled":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothSearching":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardGames":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardGames/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardGames/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Book":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookArrowClockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookCoins":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookCompass":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookContacts":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDefault":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDefault/20_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookExclamationMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookInformation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookLetter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpenGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpenMicrophone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookQuestionMarkRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookTemplate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTemplate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTemplate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookTheta":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottomDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottomThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderLeftRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderNone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderOutside":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderOutsideThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottomDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottomThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BotAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BotSparkle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowlSalad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowTie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesVariable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrainCircuit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchForkHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchForkLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchRequest":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchRequest/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchRequest/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BreakoutRoom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BubbleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BubbleMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BubbleMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BugArrowCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugArrowCounterclockwise/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugArrowCounterclockwise/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BugProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugProhibited/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBankToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingGovernment":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingLighthouse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingLighthouse/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingLighthouse/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingTownhouse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalculatorArrowClockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAgenda":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarChat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMention":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMention/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMention/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMonth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWeekNumbers":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWeekStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallConnecting":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallConnecting/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallConnecting/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallExclamation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallExclamation/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallExclamation/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenError/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenError/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenQuestionMark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenQuestionMark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CardUI":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cast":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular3G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular4G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular5G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CenterHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CenterVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChartMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChartPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatHelp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMail/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMail/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Check":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkNote/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Chess":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chess/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chess/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleEraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEraser/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleMultipleSubtractCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleMultipleSubtractCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleMultipleSubtractCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleSmall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Class":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardDataBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskListLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskListRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockArrowDownload":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDatabase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDatabase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDesktop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDesktop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudFlow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTextEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Collections":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CollectionsAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorBackground":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Column":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Column/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Column/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnArrowRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnArrowRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnDoubleCompare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnDoubleCompare/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnDoubleCompare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnTriple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnTripleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Comma":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommunicationPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentView":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentViewGallery":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ControlButton":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ConvertRange":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cookies":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopyAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopySelect":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropInterim":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropInterimOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeLink/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeRotate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeRotate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeRotate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeTree":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorClick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DarkTheme":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataArea":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLightning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabasePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabasePlugConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePlugConnected/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePlugConnected/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSwitch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSwitch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWarning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWarning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseWindow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWindow/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWindow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataFunnel":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataPie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataScatter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataSunburst":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataTreemap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataWaterfall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataWhisker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DecimalArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DecimalArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteLines/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteLines/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopFlow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSignal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSpeakerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopTower":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardLightningToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightningToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightningToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diagram":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dialpad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DialpadOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dishwasher":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diversity":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DockRow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBorder":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBorderPrint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBriefcase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentChevronDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentEndnote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFlowchart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFooterDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeartPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJavascript":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentKey/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentKey/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscape":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeData":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeSplitHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMargins":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultiplePercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultipleProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultipleSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageColumns":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBreak":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageNumber":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPrint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueue":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueueAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueueMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSave":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableTruck":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextExtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleSwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleSwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleTapSwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleTapSwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerArrowDownload":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerSubtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawShape":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBottle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBottleOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkToGo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DriveTrain":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenClosedAlert":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenGroup":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenHeader":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenMirror":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenPagination":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSpan":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenStatusBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenTablet":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenUpdate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenVerticalScroll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenVibrate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dust":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Elevator":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSadSlight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSmileSlight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSurprise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Engine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EqualCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserMedium":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserSegment":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserSmall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserTool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExtendedDock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyedropperOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FastAcceleration":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fingerprint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fireplace":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FixedWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagCheckered":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagCheckered/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagCheckered/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashAuto":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashlightOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flowchart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlowchartCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fluent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderBriefcase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderBriefcase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderBriefcase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderPeople":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontDecrease":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontIncrease":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodApple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodCarrot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodFish":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodGrains":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodPizza":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Form":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FormMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FormNew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS120":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS240":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS960":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gas":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GasPump":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gather":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gather/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gather/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gauge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GaugeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GaugeAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GaugeAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gesture":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeLocation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeProhibited/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeSurface":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridDots":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Group":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupReturn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guardian":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GuestAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandOpenHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandRightOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRightOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRightOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HDR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HDROff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Headphones":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadphonesSoundWave":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadsetAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadsetVR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HighlightLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightLink/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HistoryDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Icons":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowBack":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageReflection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageShadow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Incognito":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InfoShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InfoShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InfoShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStroke":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStrokeArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStrokeArrowUpDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Insert":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Insert/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Insert/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSChevronRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSChevronRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSChevronRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Joystick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Joystick/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Joystick/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Keyboard123":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardDock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutFloat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutOneHandedLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutResize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardTab":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaserTool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaserTool/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaserTool/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lasso":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LauncherSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Layer":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LayerDiagonal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LayerDiagonalPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonalPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonalPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LearningApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Line":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal1/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal1/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal3/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal3/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal5Error":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5Error/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5Error/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineStyle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineThickness":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Live":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LiveOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationLive":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lottery":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAllUnread":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllUnread/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllUnread/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxAll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Markdown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Markdown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Markdown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MatchAppLayout":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormatLinear":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MentionArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionArrowDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MentionBrackets":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionBrackets/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionBrackets/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Microscope":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Midi":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MobileOptimized":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mold":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyCalculator":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyHand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneySettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneySettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneySettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainLocationBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainLocationTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainTrail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_2x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_5x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_8x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier2x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier_5x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote2Play":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2Play/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2Play/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNoteOff1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationUnread":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NetworkCheck":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookEye":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookEye/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookEye/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSectionArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSubsection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NoteEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbolDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbolSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OrganizationHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OrganizationHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OrganizationHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Orientation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Oven":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrushArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrushArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pair":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottom/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottom/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottomContract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomContract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomContract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottomExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightCursor":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelSeparateWindow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelSeparateWindow/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelSeparateWindow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelTopContract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopContract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopContract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelTopExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Patch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Patient":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pentagon":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleAudience":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCommunityAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleQueue":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person6":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAccounts":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDesktop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDesktop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonKey/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonKey/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLightbulb":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonPill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonRunning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRunning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRunning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStarburst":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonVoice":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonWrench":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWrench/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWrench/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDesktopAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktopAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktopAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLinkSetup":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhonePageHeader":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhonePagination":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneScreenTime":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneShake":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneStatusBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneTablet":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneUpdate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneUpdateCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneVerticalScroll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneVibrate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhotoFilter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pi":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pipeline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelineAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelineArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelinePlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelinePlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelinePlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pivot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlantGrass":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlantRagweed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayingCards":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayingCards/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayingCards/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlaySettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlaySettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlaySettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnectedAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnectedCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugDisconnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PointScan":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortHDMI":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortMicroUSB":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortUSBA":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortUSBC":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionBackward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionToBack":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionToFront":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Power":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Predictions":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Presenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenterOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PrintAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Production":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProductionCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProhibitedNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedNote/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PulseSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzleCubePiece":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCubePiece/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCubePiece/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzlePieceShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzlePieceShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzlePieceShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QRCode":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QuizNew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Radar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Radar/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Radar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadarCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadarRectangleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarRectangleMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarRectangleMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RatioOneToOne":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingModeMobile":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RealEstate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptBag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RectanglePortraitLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectanglePortraitLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectanglePortraitLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Recycle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Replay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Replay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Replay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Resize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeTable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RotateLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RotateRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Router":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RowTriple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RSS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sanitize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveImage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScaleFill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scales":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanObject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanType":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTypeCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTypeOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scratchpad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenCut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenCut/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenCut/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Screenshot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchInfo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectAllOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectAllOn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkewDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkewEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SettingsChat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SettingsCogMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareAndroid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareCloseTray":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareiOS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldBadge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldDismissShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismissShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismissShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldPersonAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPersonAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPersonAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shifts30Minutes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsAvailability":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsOpen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsTeam":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shortpick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Showerhead":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SidebarSearchLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchLTR/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchLTR/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SidebarSearchRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchRTL/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SignOut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipBack10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForward10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForward30":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForwardTab":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sleep":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideGrid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideHide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideLayout":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMicrophone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultipleArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultipleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTransition":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Smartwatch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SmartwatchDot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SoundSource":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SoundWaveCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Spacebar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerBluetooth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerUSB":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpinneriOS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpinneriOS/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpinneriOS/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHint/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportAmericanFootball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportBaseball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportBasketball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportHockey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareEraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareEraser/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintApps":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquaresNested":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquaresNested/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquaresNested/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackArrowForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowRightEnd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowRightStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarEmphasis":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stethoscope":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StickerAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Storage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stream":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamInput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamInputOutput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInputOutput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInputOutput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamOutput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamOutput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamOutput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StyleGuide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubGrid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SurfaceEarbuds":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SurfaceHub":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwimmingPool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Syringe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"System":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopClock/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopClock/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopCopy/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopCopy/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopMultipleBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopNewPage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopNewPage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopNewPage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabInPrivateAccount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableChecker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableChecker/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableChecker/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableColumnTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCopy/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCopy/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableImage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetLessThanOrEqualTo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSplit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSplit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabletLaptop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletLaptop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletLaptop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabletSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabShieldDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagCircle/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagCircle/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TapDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TapSingle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareDatabase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareDatabase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquarePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquarePerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquarePerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TasksApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Teddy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddSpaceAfter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddSpaceBefore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddT":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributedEvenly":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributedVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustify":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLow90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLowRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLowRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAsterisk":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAsterisk/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAsterisk/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBaseline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBaseline/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBaseline/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignBottomRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignMiddleRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignTopRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListDismiss/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTRRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTLRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTLRotate90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTLRotate90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareClock/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareClock/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquarePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCollapse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOne":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneNarrow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneSemiNarrow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneWide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneWideLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnThree":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwoLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwoRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextContinuous":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescription":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescriptionLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescriptionRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate270Right":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90Left":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90Right":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextEditStyle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextEffects":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLineTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLineTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFootnote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeftTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeftTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRightTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRightTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarError/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarError/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHanging":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHangingTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHangingTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextLineSpacing":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberFormat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/20_f.svg"},"Patterns":null},"LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/20_f.svg"},"Patterns":null},"LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPeriodAsterisk":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPeriodAsterisk/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPeriodAsterisk/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionBehind":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionFront":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionThrough":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionTight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextProofingTools":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderlineDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWholeWord":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWholeWord/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWholeWord/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWordCount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Thinking":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TicketHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimeAndWeather":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timeline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimePicker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TooltipQuote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TopSpeed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Transmission":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrayItemAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrayItemRemove":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeDeciduous":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeEvergreen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeEvergreen/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeEvergreen/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TVArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVArrowRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVArrowRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Umbrella":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"UninstallApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"USBPlug":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"UsbStick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCableCar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckBag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video360":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video360Off":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360Off/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360Off/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonStarOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPlayPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoRecording":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoRecording/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoRecording/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSecurity":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ViewDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ViewDesktopMobile":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VirtualNetwork":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetwork/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetwork/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VirtualNetworkToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetworkToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetworkToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowSubtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowSubtract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Vote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WalkieTalkie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wallpaper":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WarningShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WarningShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WarningShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Washer":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherBlowingSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherCloudy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherDrizzle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherDuststorm":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherFog":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHailDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHailNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHaze":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherPartlyCloudyNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRain":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainShowersDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainShowersNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowflake":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowShowerDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowShowerNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSqualls":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunnyHigh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunnyLow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherThunderstorm":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Whiteboard":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAdOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAdPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowBulletList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletList/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletList/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowBulletListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletListAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletListAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowConsole":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowConsole/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowConsole/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderHorizontalOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontalOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontalOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowInPrivate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowInPrivateAccount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivateAccount/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivateAccount/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowMultipleSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultipleSwap/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultipleSwap/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowText/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowText/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WrenchScrewdriver":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxConsole":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxControllerError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Xray":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppStore":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppStore/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppStore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingMore":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMore/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Component2DoubleTapSwipeDown":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeDown/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Component2DoubleTapSwipeUp":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeUp/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropSparkle":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropSparkle/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridCircles":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/28_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSArrowLTR":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowLTR/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSArrowRTL":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowRTL/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreenText":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenText/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanQRCode":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanQRCode/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanQRCode/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideContent":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideContent/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideContent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTRRotate270":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate270/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatBubbles":{"Children":{"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/32_f.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardText":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardText/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardText/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDefault":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDefault/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDefault/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAbcUnderlineDouble":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAbcUnderlineDouble/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAbcUnderlineDouble/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPeople":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPeople/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPeople/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceBlocked":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceOffline":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceOOF":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceUnknown":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorFillAccent":{"Children":{"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorLineAccent":{"Children":{"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorBackgroundAccent":{"Children":{"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackgroundAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackgroundAccent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Fast.Components.FluentUI.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Microsoft.Fast.Components.FluentUI.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"BlazorInputFile":{"Children":{"inputfile.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"inputfile.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazored.Modal":{"Children":{"BlazoredModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"BlazoredModal.razor.js"},"Patterns":null},"Blazored.Modal.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Blazored.Modal.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"GraphSample.styles.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"GraphSample.styles.css"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"_framework":{"Children":{"AWSSDK.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.Core.dll"},"Patterns":null},"AWSSDK.SecurityToken.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.SecurityToken.dll"},"Patterns":null},"Azure.AI.OpenAI.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.OpenAI.dll"},"Patterns":null},"Azure.AI.TextAnalytics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.TextAnalytics.dll"},"Patterns":null},"Azure.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.Core.dll"},"Patterns":null},"AzureOpenAIClient.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AzureOpenAIClient.Http.dll"},"Patterns":null},"Blazored.Modal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Blazored.Modal.dll"},"Patterns":null},"BlazorInputFile.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BlazorInputFile.dll"},"Patterns":null},"ChartJSCore.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ChartJSCore.dll"},"Patterns":null},"DnsClient.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DnsClient.dll"},"Patterns":null},"GrapeCity.Documents.Imaging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Imaging.dll"},"Patterns":null},"GrapeCity.Documents.Pdf.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Pdf.dll"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll"},"Patterns":null},"Microsoft.AspNetCore.WebUtilities.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.WebUtilities.dll"},"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Authentication.WebAssembly.Msal.dll"},"Patterns":null},"Microsoft.Bcl.AsyncInterfaces.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Bcl.AsyncInterfaces.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll"},"Patterns":null},"Microsoft.Extensions.Hosting.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Hosting.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Http.dll"},"Patterns":null},"Microsoft.Extensions.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.dll"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Options.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Options.dll"},"Patterns":null},"Microsoft.Extensions.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll"},"Patterns":null},"Microsoft.Fast.Components.FluentUI.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Fast.Components.FluentUI.dll"},"Patterns":null},"Microsoft.Graph.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.dll"},"Patterns":null},"Microsoft.Graph.Beta.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Beta.dll"},"Patterns":null},"Microsoft.Graph.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Core.dll"},"Patterns":null},"Microsoft.IdentityModel.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Abstractions.dll"},"Patterns":null},"Microsoft.IdentityModel.JsonWebTokens.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.JsonWebTokens.dll"},"Patterns":null},"Microsoft.IdentityModel.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Logging.dll"},"Patterns":null},"Microsoft.IdentityModel.Protocols.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.dll"},"Patterns":null},"Microsoft.IdentityModel.Protocols.OpenIdConnect.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll"},"Patterns":null},"Microsoft.IdentityModel.Tokens.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Tokens.dll"},"Patterns":null},"Microsoft.JSInterop.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.dll"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll"},"Patterns":null},"Microsoft.Kiota.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Abstractions.dll"},"Patterns":null},"Microsoft.Kiota.Authentication.Azure.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Authentication.Azure.dll"},"Patterns":null},"Microsoft.Kiota.Http.HttpClientLibrary.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Form.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Form.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Json.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Text.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Text.dll"},"Patterns":null},"Microsoft.Net.Http.Headers.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Net.Http.Headers.dll"},"Patterns":null},"MongoDB.Bson.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Bson.dll"},"Patterns":null},"MongoDB.Driver.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.dll"},"Patterns":null},"MongoDB.Driver.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.Core.dll"},"Patterns":null},"MongoDB.Libmongocrypt.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Libmongocrypt.dll"},"Patterns":null},"Newtonsoft.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Newtonsoft.Json.dll"},"Patterns":null},"DocumentFormat.OpenXml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DocumentFormat.OpenXml.dll"},"Patterns":null},"BouncyCastle.Crypto.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BouncyCastle.Crypto.dll"},"Patterns":null},"SharpCompress.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharpCompress.dll"},"Patterns":null},"Snappier.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Snappier.dll"},"Patterns":null},"System.IdentityModel.Tokens.Jwt.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IdentityModel.Tokens.Jwt.dll"},"Patterns":null},"System.IO.Packaging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Packaging.dll"},"Patterns":null},"System.IO.Pipelines.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipelines.dll"},"Patterns":null},"System.Memory.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.Data.dll"},"Patterns":null},"Tavis.UriTemplates.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Tavis.UriTemplates.dll"},"Patterns":null},"TimeZoneConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/TimeZoneConverter.dll"},"Patterns":null},"ZstdSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ZstdSharp.dll"},"Patterns":null},"ja":{"Children":{"GrapeCity.Documents.Imaging.resources.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Imaging.resources.dll"},"Patterns":null},"GrapeCity.Documents.Pdf.resources.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Pdf.resources.dll"},"Patterns":null},"GrapeCity.Documents.Imaging.resources.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz"},"Patterns":null},"GrapeCity.Documents.Pdf.resources.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.CSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.CSharp.dll"},"Patterns":null},"Microsoft.VisualBasic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll"},"Patterns":null},"Microsoft.VisualBasic.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.dll"},"Patterns":null},"Microsoft.Win32.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Primitives.dll"},"Patterns":null},"Microsoft.Win32.Registry.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Registry.dll"},"Patterns":null},"System.AppContext.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.AppContext.dll"},"Patterns":null},"System.Buffers.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Buffers.dll"},"Patterns":null},"System.Collections.Concurrent.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Concurrent.dll"},"Patterns":null},"System.Collections.Immutable.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Immutable.dll"},"Patterns":null},"System.Collections.NonGeneric.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.NonGeneric.dll"},"Patterns":null},"System.Collections.Specialized.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Specialized.dll"},"Patterns":null},"System.Collections.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.dll"},"Patterns":null},"System.ComponentModel.Annotations.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Annotations.dll"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll"},"Patterns":null},"System.ComponentModel.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Primitives.dll"},"Patterns":null},"System.ComponentModel.TypeConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll"},"Patterns":null},"System.ComponentModel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.dll"},"Patterns":null},"System.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Configuration.dll"},"Patterns":null},"System.Console.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Console.dll"},"Patterns":null},"System.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Core.dll"},"Patterns":null},"System.Data.Common.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.Common.dll"},"Patterns":null},"System.Data.DataSetExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.DataSetExtensions.dll"},"Patterns":null},"System.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.dll"},"Patterns":null},"System.Diagnostics.Contracts.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Contracts.dll"},"Patterns":null},"System.Diagnostics.Debug.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Debug.dll"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll"},"Patterns":null},"System.Diagnostics.Process.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Process.dll"},"Patterns":null},"System.Diagnostics.StackTrace.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.StackTrace.dll"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll"},"Patterns":null},"System.Diagnostics.Tools.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tools.dll"},"Patterns":null},"System.Diagnostics.TraceSource.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TraceSource.dll"},"Patterns":null},"System.Diagnostics.Tracing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tracing.dll"},"Patterns":null},"System.Drawing.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.Primitives.dll"},"Patterns":null},"System.Drawing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.dll"},"Patterns":null},"System.Dynamic.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Dynamic.Runtime.dll"},"Patterns":null},"System.Formats.Asn1.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Asn1.dll"},"Patterns":null},"System.Formats.Tar.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Tar.dll"},"Patterns":null},"System.Globalization.Calendars.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Calendars.dll"},"Patterns":null},"System.Globalization.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Extensions.dll"},"Patterns":null},"System.Globalization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.dll"},"Patterns":null},"System.IO.Compression.Brotli.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.Brotli.dll"},"Patterns":null},"System.IO.Compression.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.FileSystem.dll"},"Patterns":null},"System.IO.Compression.ZipFile.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.ZipFile.dll"},"Patterns":null},"System.IO.Compression.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.dll"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll"},"Patterns":null},"System.IO.FileSystem.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll"},"Patterns":null},"System.IO.FileSystem.Watcher.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll"},"Patterns":null},"System.IO.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.dll"},"Patterns":null},"System.IO.IsolatedStorage.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.IsolatedStorage.dll"},"Patterns":null},"System.IO.MemoryMappedFiles.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll"},"Patterns":null},"System.IO.Pipes.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll"},"Patterns":null},"System.IO.Pipes.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.dll"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll"},"Patterns":null},"System.IO.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.dll"},"Patterns":null},"System.Linq.Expressions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Expressions.dll"},"Patterns":null},"System.Linq.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Parallel.dll"},"Patterns":null},"System.Linq.Queryable.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Queryable.dll"},"Patterns":null},"System.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.dll"},"Patterns":null},"System.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.dll"},"Patterns":null},"System.Net.Http.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.Json.dll"},"Patterns":null},"System.Net.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.dll"},"Patterns":null},"System.Net.HttpListener.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.HttpListener.dll"},"Patterns":null},"System.Net.Mail.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Mail.dll"},"Patterns":null},"System.Net.NameResolution.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NameResolution.dll"},"Patterns":null},"System.Net.NetworkInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NetworkInformation.dll"},"Patterns":null},"System.Net.Ping.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Ping.dll"},"Patterns":null},"System.Net.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Primitives.dll"},"Patterns":null},"System.Net.Quic.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Quic.dll"},"Patterns":null},"System.Net.Requests.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Requests.dll"},"Patterns":null},"System.Net.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Security.dll"},"Patterns":null},"System.Net.ServicePoint.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.ServicePoint.dll"},"Patterns":null},"System.Net.Sockets.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Sockets.dll"},"Patterns":null},"System.Net.WebClient.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebClient.dll"},"Patterns":null},"System.Net.WebHeaderCollection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebHeaderCollection.dll"},"Patterns":null},"System.Net.WebProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebProxy.dll"},"Patterns":null},"System.Net.WebSockets.Client.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.Client.dll"},"Patterns":null},"System.Net.WebSockets.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.dll"},"Patterns":null},"System.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.dll"},"Patterns":null},"System.Numerics.Vectors.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.Vectors.dll"},"Patterns":null},"System.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.dll"},"Patterns":null},"System.ObjectModel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ObjectModel.dll"},"Patterns":null},"System.Private.DataContractSerialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.DataContractSerialization.dll"},"Patterns":null},"System.Private.Uri.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Uri.dll"},"Patterns":null},"System.Private.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.Linq.dll"},"Patterns":null},"System.Private.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.dll"},"Patterns":null},"System.Reflection.DispatchProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.DispatchProxy.dll"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll"},"Patterns":null},"System.Reflection.Emit.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.dll"},"Patterns":null},"System.Reflection.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Extensions.dll"},"Patterns":null},"System.Reflection.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Metadata.dll"},"Patterns":null},"System.Reflection.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Primitives.dll"},"Patterns":null},"System.Reflection.TypeExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.TypeExtensions.dll"},"Patterns":null},"System.Reflection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.dll"},"Patterns":null},"System.Resources.Reader.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Reader.dll"},"Patterns":null},"System.Resources.ResourceManager.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.ResourceManager.dll"},"Patterns":null},"System.Resources.Writer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Writer.dll"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll"},"Patterns":null},"System.Runtime.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Extensions.dll"},"Patterns":null},"System.Runtime.Handles.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Handles.dll"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.dll"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll"},"Patterns":null},"System.Runtime.InteropServices.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.dll"},"Patterns":null},"System.Runtime.Intrinsics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Intrinsics.dll"},"Patterns":null},"System.Runtime.Loader.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Loader.dll"},"Patterns":null},"System.Runtime.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Numerics.dll"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll"},"Patterns":null},"System.Runtime.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Json.dll"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll"},"Patterns":null},"System.Runtime.Serialization.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll"},"Patterns":null},"System.Runtime.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.dll"},"Patterns":null},"System.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.dll"},"Patterns":null},"System.Security.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.AccessControl.dll"},"Patterns":null},"System.Security.Claims.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Claims.dll"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll"},"Patterns":null},"System.Security.Cryptography.Cng.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Cng.dll"},"Patterns":null},"System.Security.Cryptography.Csp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Csp.dll"},"Patterns":null},"System.Security.Cryptography.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll"},"Patterns":null},"System.Security.Cryptography.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll"},"Patterns":null},"System.Security.Cryptography.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.dll"},"Patterns":null},"System.Security.Principal.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.Windows.dll"},"Patterns":null},"System.Security.Principal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.dll"},"Patterns":null},"System.Security.SecureString.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.SecureString.dll"},"Patterns":null},"System.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.dll"},"Patterns":null},"System.ServiceModel.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceModel.Web.dll"},"Patterns":null},"System.ServiceProcess.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceProcess.dll"},"Patterns":null},"System.Text.Encoding.CodePages.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.CodePages.dll"},"Patterns":null},"System.Text.Encoding.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.Extensions.dll"},"Patterns":null},"System.Text.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.dll"},"Patterns":null},"System.Text.Encodings.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encodings.Web.dll"},"Patterns":null},"System.Text.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Json.dll"},"Patterns":null},"System.Text.RegularExpressions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.RegularExpressions.dll"},"Patterns":null},"System.Threading.Channels.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Channels.dll"},"Patterns":null},"System.Threading.Overlapped.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Overlapped.dll"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll"},"Patterns":null},"System.Threading.Tasks.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll"},"Patterns":null},"System.Threading.Tasks.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll"},"Patterns":null},"System.Threading.Tasks.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.dll"},"Patterns":null},"System.Threading.Thread.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Thread.dll"},"Patterns":null},"System.Threading.ThreadPool.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.ThreadPool.dll"},"Patterns":null},"System.Threading.Timer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Timer.dll"},"Patterns":null},"System.Threading.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.dll"},"Patterns":null},"System.Transactions.Local.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.Local.dll"},"Patterns":null},"System.Transactions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.dll"},"Patterns":null},"System.ValueTuple.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ValueTuple.dll"},"Patterns":null},"System.Web.HttpUtility.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.HttpUtility.dll"},"Patterns":null},"System.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.dll"},"Patterns":null},"System.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Windows.dll"},"Patterns":null},"System.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Linq.dll"},"Patterns":null},"System.Xml.ReaderWriter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.ReaderWriter.dll"},"Patterns":null},"System.Xml.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Serialization.dll"},"Patterns":null},"System.Xml.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XDocument.dll"},"Patterns":null},"System.Xml.XPath.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.XDocument.dll"},"Patterns":null},"System.Xml.XPath.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.dll"},"Patterns":null},"System.Xml.XmlDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlDocument.dll"},"Patterns":null},"System.Xml.XmlSerializer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlSerializer.dll"},"Patterns":null},"System.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.dll"},"Patterns":null},"System.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.dll"},"Patterns":null},"WindowsBase.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/WindowsBase.dll"},"Patterns":null},"mscorlib.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/mscorlib.dll"},"Patterns":null},"netstandard.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/netstandard.dll"},"Patterns":null},"System.Private.CoreLib.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.CoreLib.dll"},"Patterns":null},"dotnet.7.0.5.9her4wdnhl.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.7.0.5.9her4wdnhl.js"},"Patterns":null},"dotnet.timezones.blat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.timezones.blat"},"Patterns":null},"dotnet.wasm":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.wasm"},"Patterns":null},"icudt.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt.dat"},"Patterns":null},"icudt_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_CJK.dat"},"Patterns":null},"icudt_EFIGS.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_EFIGS.dat"},"Patterns":null},"icudt_no_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_no_CJK.dat"},"Patterns":null},"SharedModels.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.dll"},"Patterns":null},"SharedModels.pdb":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.pdb"},"Patterns":null},"GraphSample.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.dll"},"Patterns":null},"GraphSample.pdb":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.pdb"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"AWSSDK.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.Core.dll.gz"},"Patterns":null},"AWSSDK.SecurityToken.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.SecurityToken.dll.gz"},"Patterns":null},"Azure.AI.OpenAI.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.OpenAI.dll.gz"},"Patterns":null},"Azure.AI.TextAnalytics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.TextAnalytics.dll.gz"},"Patterns":null},"Azure.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.Core.dll.gz"},"Patterns":null},"AzureOpenAIClient.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AzureOpenAIClient.Http.dll.gz"},"Patterns":null},"Blazored.Modal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Blazored.Modal.dll.gz"},"Patterns":null},"BlazorInputFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BlazorInputFile.dll.gz"},"Patterns":null},"ChartJSCore.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ChartJSCore.dll.gz"},"Patterns":null},"DnsClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DnsClient.dll.gz"},"Patterns":null},"GrapeCity.Documents.Imaging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Imaging.dll.gz"},"Patterns":null},"GrapeCity.Documents.Pdf.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Pdf.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.WebUtilities.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.WebUtilities.dll.gz"},"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz"},"Patterns":null},"Microsoft.Bcl.AsyncInterfaces.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz"},"Patterns":null},"Microsoft.Extensions.Hosting.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Http.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Options.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Options.dll.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll.gz"},"Patterns":null},"Microsoft.Fast.Components.FluentUI.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Fast.Components.FluentUI.dll.gz"},"Patterns":null},"Microsoft.Graph.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.dll.gz"},"Patterns":null},"Microsoft.Graph.Beta.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Beta.dll.gz"},"Patterns":null},"Microsoft.Graph.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Core.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Abstractions.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.JsonWebTokens.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Logging.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Protocols.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Tokens.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Tokens.dll.gz"},"Patterns":null},"Microsoft.JSInterop.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.dll.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.Kiota.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Kiota.Authentication.Azure.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Authentication.Azure.dll.gz"},"Patterns":null},"Microsoft.Kiota.Http.HttpClientLibrary.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Form.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Form.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Json.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Text.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Text.dll.gz"},"Patterns":null},"Microsoft.Net.Http.Headers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Net.Http.Headers.dll.gz"},"Patterns":null},"MongoDB.Bson.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Bson.dll.gz"},"Patterns":null},"MongoDB.Driver.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.dll.gz"},"Patterns":null},"MongoDB.Driver.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.Core.dll.gz"},"Patterns":null},"MongoDB.Libmongocrypt.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Libmongocrypt.dll.gz"},"Patterns":null},"Newtonsoft.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Newtonsoft.Json.dll.gz"},"Patterns":null},"DocumentFormat.OpenXml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DocumentFormat.OpenXml.dll.gz"},"Patterns":null},"BouncyCastle.Crypto.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BouncyCastle.Crypto.dll.gz"},"Patterns":null},"SharpCompress.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharpCompress.dll.gz"},"Patterns":null},"Snappier.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Snappier.dll.gz"},"Patterns":null},"System.IdentityModel.Tokens.Jwt.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IdentityModel.Tokens.Jwt.dll.gz"},"Patterns":null},"System.IO.Packaging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Packaging.dll.gz"},"Patterns":null},"System.IO.Pipelines.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipelines.dll.gz"},"Patterns":null},"System.Memory.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.Data.dll.gz"},"Patterns":null},"Tavis.UriTemplates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Tavis.UriTemplates.dll.gz"},"Patterns":null},"TimeZoneConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/TimeZoneConverter.dll.gz"},"Patterns":null},"ZstdSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ZstdSharp.dll.gz"},"Patterns":null},"Microsoft.CSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.CSharp.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.dll.gz"},"Patterns":null},"Microsoft.Win32.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Primitives.dll.gz"},"Patterns":null},"Microsoft.Win32.Registry.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Registry.dll.gz"},"Patterns":null},"System.AppContext.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.AppContext.dll.gz"},"Patterns":null},"System.Buffers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Buffers.dll.gz"},"Patterns":null},"System.Collections.Concurrent.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Concurrent.dll.gz"},"Patterns":null},"System.Collections.Immutable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Immutable.dll.gz"},"Patterns":null},"System.Collections.NonGeneric.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.NonGeneric.dll.gz"},"Patterns":null},"System.Collections.Specialized.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Specialized.dll.gz"},"Patterns":null},"System.Collections.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.dll.gz"},"Patterns":null},"System.ComponentModel.Annotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Annotations.dll.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll.gz"},"Patterns":null},"System.ComponentModel.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Primitives.dll.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll.gz"},"Patterns":null},"System.ComponentModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.dll.gz"},"Patterns":null},"System.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Configuration.dll.gz"},"Patterns":null},"System.Console.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Console.dll.gz"},"Patterns":null},"System.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Core.dll.gz"},"Patterns":null},"System.Data.Common.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.Common.dll.gz"},"Patterns":null},"System.Data.DataSetExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.DataSetExtensions.dll.gz"},"Patterns":null},"System.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.dll.gz"},"Patterns":null},"System.Diagnostics.Contracts.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Contracts.dll.gz"},"Patterns":null},"System.Diagnostics.Debug.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Debug.dll.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll.gz"},"Patterns":null},"System.Diagnostics.Process.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Process.dll.gz"},"Patterns":null},"System.Diagnostics.StackTrace.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.StackTrace.dll.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll.gz"},"Patterns":null},"System.Diagnostics.Tools.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tools.dll.gz"},"Patterns":null},"System.Diagnostics.TraceSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TraceSource.dll.gz"},"Patterns":null},"System.Diagnostics.Tracing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tracing.dll.gz"},"Patterns":null},"System.Drawing.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.Primitives.dll.gz"},"Patterns":null},"System.Drawing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.dll.gz"},"Patterns":null},"System.Dynamic.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Dynamic.Runtime.dll.gz"},"Patterns":null},"System.Formats.Asn1.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Asn1.dll.gz"},"Patterns":null},"System.Formats.Tar.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Tar.dll.gz"},"Patterns":null},"System.Globalization.Calendars.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Calendars.dll.gz"},"Patterns":null},"System.Globalization.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Extensions.dll.gz"},"Patterns":null},"System.Globalization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.dll.gz"},"Patterns":null},"System.IO.Compression.Brotli.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.Brotli.dll.gz"},"Patterns":null},"System.IO.Compression.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.FileSystem.dll.gz"},"Patterns":null},"System.IO.Compression.ZipFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.ZipFile.dll.gz"},"Patterns":null},"System.IO.Compression.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.dll.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll.gz"},"Patterns":null},"System.IO.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.dll.gz"},"Patterns":null},"System.IO.IsolatedStorage.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.IsolatedStorage.dll.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll.gz"},"Patterns":null},"System.IO.Pipes.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.dll.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll.gz"},"Patterns":null},"System.IO.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.dll.gz"},"Patterns":null},"System.Linq.Expressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Expressions.dll.gz"},"Patterns":null},"System.Linq.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Parallel.dll.gz"},"Patterns":null},"System.Linq.Queryable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Queryable.dll.gz"},"Patterns":null},"System.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.dll.gz"},"Patterns":null},"System.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.dll.gz"},"Patterns":null},"System.Net.Http.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.Json.dll.gz"},"Patterns":null},"System.Net.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.dll.gz"},"Patterns":null},"System.Net.HttpListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.HttpListener.dll.gz"},"Patterns":null},"System.Net.Mail.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Mail.dll.gz"},"Patterns":null},"System.Net.NameResolution.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NameResolution.dll.gz"},"Patterns":null},"System.Net.NetworkInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NetworkInformation.dll.gz"},"Patterns":null},"System.Net.Ping.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Ping.dll.gz"},"Patterns":null},"System.Net.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Primitives.dll.gz"},"Patterns":null},"System.Net.Quic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Quic.dll.gz"},"Patterns":null},"System.Net.Requests.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Requests.dll.gz"},"Patterns":null},"System.Net.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Security.dll.gz"},"Patterns":null},"System.Net.ServicePoint.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.ServicePoint.dll.gz"},"Patterns":null},"System.Net.Sockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Sockets.dll.gz"},"Patterns":null},"System.Net.WebClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebClient.dll.gz"},"Patterns":null},"System.Net.WebHeaderCollection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebHeaderCollection.dll.gz"},"Patterns":null},"System.Net.WebProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebProxy.dll.gz"},"Patterns":null},"System.Net.WebSockets.Client.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.Client.dll.gz"},"Patterns":null},"System.Net.WebSockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.dll.gz"},"Patterns":null},"System.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.dll.gz"},"Patterns":null},"System.Numerics.Vectors.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.Vectors.dll.gz"},"Patterns":null},"System.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.dll.gz"},"Patterns":null},"System.ObjectModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ObjectModel.dll.gz"},"Patterns":null},"System.Private.DataContractSerialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.DataContractSerialization.dll.gz"},"Patterns":null},"System.Private.Uri.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Uri.dll.gz"},"Patterns":null},"System.Private.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.Linq.dll.gz"},"Patterns":null},"System.Private.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.dll.gz"},"Patterns":null},"System.Reflection.DispatchProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.DispatchProxy.dll.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll.gz"},"Patterns":null},"System.Reflection.Emit.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.dll.gz"},"Patterns":null},"System.Reflection.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Extensions.dll.gz"},"Patterns":null},"System.Reflection.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Metadata.dll.gz"},"Patterns":null},"System.Reflection.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Primitives.dll.gz"},"Patterns":null},"System.Reflection.TypeExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.TypeExtensions.dll.gz"},"Patterns":null},"System.Reflection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.dll.gz"},"Patterns":null},"System.Resources.Reader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Reader.dll.gz"},"Patterns":null},"System.Resources.ResourceManager.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.ResourceManager.dll.gz"},"Patterns":null},"System.Resources.Writer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Writer.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll.gz"},"Patterns":null},"System.Runtime.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Extensions.dll.gz"},"Patterns":null},"System.Runtime.Handles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Handles.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.dll.gz"},"Patterns":null},"System.Runtime.Intrinsics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Intrinsics.dll.gz"},"Patterns":null},"System.Runtime.Loader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Loader.dll.gz"},"Patterns":null},"System.Runtime.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Numerics.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Json.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll.gz"},"Patterns":null},"System.Runtime.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.dll.gz"},"Patterns":null},"System.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.dll.gz"},"Patterns":null},"System.Security.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.AccessControl.dll.gz"},"Patterns":null},"System.Security.Claims.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Claims.dll.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Cng.dll.gz"},"Patterns":null},"System.Security.Cryptography.Csp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Csp.dll.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll.gz"},"Patterns":null},"System.Security.Cryptography.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.dll.gz"},"Patterns":null},"System.Security.Principal.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.Windows.dll.gz"},"Patterns":null},"System.Security.Principal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.dll.gz"},"Patterns":null},"System.Security.SecureString.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.SecureString.dll.gz"},"Patterns":null},"System.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.dll.gz"},"Patterns":null},"System.ServiceModel.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceModel.Web.dll.gz"},"Patterns":null},"System.ServiceProcess.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceProcess.dll.gz"},"Patterns":null},"System.Text.Encoding.CodePages.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.CodePages.dll.gz"},"Patterns":null},"System.Text.Encoding.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.Extensions.dll.gz"},"Patterns":null},"System.Text.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.dll.gz"},"Patterns":null},"System.Text.Encodings.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encodings.Web.dll.gz"},"Patterns":null},"System.Text.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Json.dll.gz"},"Patterns":null},"System.Text.RegularExpressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.RegularExpressions.dll.gz"},"Patterns":null},"System.Threading.Channels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Channels.dll.gz"},"Patterns":null},"System.Threading.Overlapped.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Overlapped.dll.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll.gz"},"Patterns":null},"System.Threading.Tasks.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.dll.gz"},"Patterns":null},"System.Threading.Thread.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Thread.dll.gz"},"Patterns":null},"System.Threading.ThreadPool.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.ThreadPool.dll.gz"},"Patterns":null},"System.Threading.Timer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Timer.dll.gz"},"Patterns":null},"System.Threading.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.dll.gz"},"Patterns":null},"System.Transactions.Local.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.Local.dll.gz"},"Patterns":null},"System.Transactions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.dll.gz"},"Patterns":null},"System.ValueTuple.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ValueTuple.dll.gz"},"Patterns":null},"System.Web.HttpUtility.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.HttpUtility.dll.gz"},"Patterns":null},"System.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.dll.gz"},"Patterns":null},"System.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Windows.dll.gz"},"Patterns":null},"System.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Linq.dll.gz"},"Patterns":null},"System.Xml.ReaderWriter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.ReaderWriter.dll.gz"},"Patterns":null},"System.Xml.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Serialization.dll.gz"},"Patterns":null},"System.Xml.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.dll.gz"},"Patterns":null},"System.Xml.XmlDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlDocument.dll.gz"},"Patterns":null},"System.Xml.XmlSerializer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlSerializer.dll.gz"},"Patterns":null},"System.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.dll.gz"},"Patterns":null},"System.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.dll.gz"},"Patterns":null},"WindowsBase.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/WindowsBase.dll.gz"},"Patterns":null},"mscorlib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/mscorlib.dll.gz"},"Patterns":null},"netstandard.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/netstandard.dll.gz"},"Patterns":null},"System.Private.CoreLib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.CoreLib.dll.gz"},"Patterns":null},"dotnet.7.0.5.9her4wdnhl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.7.0.5.9her4wdnhl.js.gz"},"Patterns":null},"dotnet.timezones.blat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.timezones.blat.gz"},"Patterns":null},"dotnet.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.wasm.gz"},"Patterns":null},"icudt.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt.dat.gz"},"Patterns":null},"icudt_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_CJK.dat.gz"},"Patterns":null},"icudt_EFIGS.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_EFIGS.dat.gz"},"Patterns":null},"icudt_no_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_no_CJK.dat.gz"},"Patterns":null},"SharedModels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.dll.gz"},"Patterns":null},"SharedModels.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.pdb.gz"},"Patterns":null},"GraphSample.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.dll.gz"},"Patterns":null},"GraphSample.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.pdb.gz"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.webassembly.js.gz"},"Patterns":null},"blazor.boot.json":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.boot.json"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 000000000..1ddfb5cf7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 000000000..648cd5134 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 000000000..d524cc4ee Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 000000000..4368c70bf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll new file mode 100644 index 000000000..3db1b73c6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll new file mode 100644 index 000000000..8b4d59b74 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll new file mode 100644 index 000000000..9b2c61d61 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 000000000..85d6c4a57 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.WebUtilities.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 000000000..dc1e804ce Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll new file mode 100644 index 000000000..9dce9bcfa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 000000000..a5b7ff99a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.CSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.CSharp.dll new file mode 100644 index 000000000..04a517768 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.CSharp.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 000000000..058b12445 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 000000000..60441e996 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 000000000..def889adc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 000000000..e8bdcc1d3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll new file mode 100644 index 000000000..fd14a9892 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 000000000..048ba4129 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 000000000..2dcd31b5c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 000000000..dc9b7ee37 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 000000000..b186402c6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 000000000..683ac380f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 000000000..6c4181888 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Http.dll new file mode 100644 index 000000000..852830a1a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Http.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 000000000..41909d250 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 000000000..f21b68bdf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Logging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Options.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Options.dll new file mode 100644 index 000000000..09a4ad508 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Options.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 000000000..995314316 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Fast.Components.FluentUI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Fast.Components.FluentUI.dll new file mode 100644 index 000000000..0b16fef14 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Fast.Components.FluentUI.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Beta.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Beta.dll new file mode 100644 index 000000000..61802fbfb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Beta.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Core.dll new file mode 100644 index 000000000..172873770 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.dll new file mode 100644 index 000000000..cffae0f13 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Graph.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 000000000..5dc9e9748 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 000000000..22b2a2840 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 000000000..b96a33418 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 000000000..7197d3519 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 000000000..7fbcdd9f6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 000000000..b213bdce0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll new file mode 100644 index 000000000..fb38f8e84 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.dll new file mode 100644 index 000000000..aab7b21bc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.JSInterop.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Abstractions.dll new file mode 100644 index 000000000..a789f3626 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Authentication.Azure.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Authentication.Azure.dll new file mode 100644 index 000000000..ed8ff39f7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Authentication.Azure.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Http.HttpClientLibrary.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Http.HttpClientLibrary.dll new file mode 100644 index 000000000..fb9aa1863 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Http.HttpClientLibrary.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Form.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Form.dll new file mode 100644 index 000000000..c21ff4a5e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Form.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Json.dll new file mode 100644 index 000000000..fbf60ab04 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Text.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Text.dll new file mode 100644 index 000000000..d15c666ab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Kiota.Serialization.Text.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Net.Http.Headers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Net.Http.Headers.dll new file mode 100644 index 000000000..01dec16aa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Net.Http.Headers.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll new file mode 100644 index 000000000..c9df990e1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.dll new file mode 100644 index 000000000..79d79a381 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.VisualBasic.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Primitives.dll new file mode 100644 index 000000000..72f4b2c35 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Registry.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Registry.dll new file mode 100644 index 000000000..529bbeff7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Microsoft.Win32.Registry.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Bson.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Bson.dll new file mode 100644 index 000000000..c8980cf51 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Bson.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.Core.dll new file mode 100644 index 000000000..dc5043a21 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.dll new file mode 100644 index 000000000..db42ed05e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Driver.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll new file mode 100644 index 000000000..b57b81758 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Newtonsoft.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Newtonsoft.Json.dll new file mode 100644 index 000000000..d035c38b4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Newtonsoft.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.dll new file mode 100644 index 000000000..9e491c83c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.pdb new file mode 100644 index 000000000..547f3024f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharedModels.pdb differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharpCompress.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharpCompress.dll new file mode 100644 index 000000000..c1a7f0744 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/SharpCompress.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Snappier.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Snappier.dll new file mode 100644 index 000000000..9b68e856c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Snappier.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.AppContext.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.AppContext.dll new file mode 100644 index 000000000..88359450a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.AppContext.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Buffers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Buffers.dll new file mode 100644 index 000000000..6e117cddb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Buffers.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Concurrent.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Concurrent.dll new file mode 100644 index 000000000..68600f9af Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Concurrent.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Immutable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Immutable.dll new file mode 100644 index 000000000..42ff9558b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Immutable.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.NonGeneric.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.NonGeneric.dll new file mode 100644 index 000000000..a786e0fa6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.NonGeneric.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Specialized.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Specialized.dll new file mode 100644 index 000000000..19d0895c0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.Specialized.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.dll new file mode 100644 index 000000000..5fe96d587 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Collections.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Annotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Annotations.dll new file mode 100644 index 000000000..817a8403d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Annotations.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 000000000..ae1230f3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 000000000..ec467f57c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Primitives.dll new file mode 100644 index 000000000..ac8e43602 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll new file mode 100644 index 000000000..f1c270e5d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.dll new file mode 100644 index 000000000..a18f987ca Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ComponentModel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Configuration.dll new file mode 100644 index 000000000..44c4babfe Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Configuration.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Console.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Console.dll new file mode 100644 index 000000000..649bb86f6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Console.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Core.dll new file mode 100644 index 000000000..43dbcbc20 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.Common.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.Common.dll new file mode 100644 index 000000000..49a2d3b5e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.Common.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.DataSetExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.DataSetExtensions.dll new file mode 100644 index 000000000..c37f5144c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.DataSetExtensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.dll new file mode 100644 index 000000000..5edabd59f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Data.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Contracts.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Contracts.dll new file mode 100644 index 000000000..6022dcafc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Contracts.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Debug.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Debug.dll new file mode 100644 index 000000000..e3be49797 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Debug.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 000000000..6ebbfb40e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 000000000..e00ee616b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Process.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Process.dll new file mode 100644 index 000000000..d312f6aad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Process.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.StackTrace.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.StackTrace.dll new file mode 100644 index 000000000..90fedf27d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.StackTrace.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 000000000..4dceedb74 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tools.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tools.dll new file mode 100644 index 000000000..8840d760e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tools.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TraceSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TraceSource.dll new file mode 100644 index 000000000..8aa04ee74 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.TraceSource.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tracing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tracing.dll new file mode 100644 index 000000000..e192e5f20 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Diagnostics.Tracing.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.Primitives.dll new file mode 100644 index 000000000..f9420d62a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.dll new file mode 100644 index 000000000..6a81fbfe7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Drawing.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Dynamic.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Dynamic.Runtime.dll new file mode 100644 index 000000000..f31a2b99e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Dynamic.Runtime.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Asn1.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Asn1.dll new file mode 100644 index 000000000..76abc7e8b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Asn1.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Tar.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Tar.dll new file mode 100644 index 000000000..85bab67ec Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Formats.Tar.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Calendars.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Calendars.dll new file mode 100644 index 000000000..5cbf030c2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Calendars.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Extensions.dll new file mode 100644 index 000000000..3cf9baa98 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.dll new file mode 100644 index 000000000..6084688ac Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Globalization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.Brotli.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.Brotli.dll new file mode 100644 index 000000000..d57490f8a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.Brotli.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.FileSystem.dll new file mode 100644 index 000000000..8000ae034 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.FileSystem.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.ZipFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.ZipFile.dll new file mode 100644 index 000000000..3bf1c60c0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.ZipFile.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.dll new file mode 100644 index 000000000..991a82327 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Compression.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 000000000..2dae9283f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 000000000..aee8f148d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll new file mode 100644 index 000000000..a2dccf0a4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll new file mode 100644 index 000000000..f7912bec9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.dll new file mode 100644 index 000000000..dd6c782bb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.FileSystem.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.IsolatedStorage.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.IsolatedStorage.dll new file mode 100644 index 000000000..486d49939 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.IsolatedStorage.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll new file mode 100644 index 000000000..12c945860 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Packaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Packaging.dll new file mode 100644 index 000000000..5460d2b3f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Packaging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipelines.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipelines.dll new file mode 100644 index 000000000..cc7de0ce1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipelines.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll new file mode 100644 index 000000000..4059ec2e6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.dll new file mode 100644 index 000000000..1cb4c464c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.Pipes.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 000000000..901de5484 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.dll new file mode 100644 index 000000000..f5c583f88 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IO.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 000000000..19934cb40 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Expressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Expressions.dll new file mode 100644 index 000000000..619a95967 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Expressions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Parallel.dll new file mode 100644 index 000000000..e2887efbf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Parallel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Queryable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Queryable.dll new file mode 100644 index 000000000..0818cb2d4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.Queryable.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.dll new file mode 100644 index 000000000..fc5990366 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Linq.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.Data.dll new file mode 100644 index 000000000..6f2a3e0ad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.Data.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.dll new file mode 100644 index 000000000..ef420f782 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Memory.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.Json.dll new file mode 100644 index 000000000..9c5dc7fd1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.dll new file mode 100644 index 000000000..40c4c07ff Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Http.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.HttpListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.HttpListener.dll new file mode 100644 index 000000000..279b83975 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.HttpListener.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Mail.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Mail.dll new file mode 100644 index 000000000..12da5a2fe Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Mail.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NameResolution.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NameResolution.dll new file mode 100644 index 000000000..7329dc606 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NameResolution.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NetworkInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NetworkInformation.dll new file mode 100644 index 000000000..a0273c543 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.NetworkInformation.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Ping.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Ping.dll new file mode 100644 index 000000000..e17d20e66 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Ping.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Primitives.dll new file mode 100644 index 000000000..855498126 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Quic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Quic.dll new file mode 100644 index 000000000..f99a72265 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Quic.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Requests.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Requests.dll new file mode 100644 index 000000000..b624c6445 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Requests.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Security.dll new file mode 100644 index 000000000..2d0cdcd24 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Security.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.ServicePoint.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.ServicePoint.dll new file mode 100644 index 000000000..65d483147 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.ServicePoint.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Sockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Sockets.dll new file mode 100644 index 000000000..f9a600529 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.Sockets.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebClient.dll new file mode 100644 index 000000000..abba87ef8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebClient.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebHeaderCollection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebHeaderCollection.dll new file mode 100644 index 000000000..c569121df Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebHeaderCollection.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebProxy.dll new file mode 100644 index 000000000..bd9d90c12 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebProxy.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.Client.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.Client.dll new file mode 100644 index 000000000..6a65d0097 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.Client.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.dll new file mode 100644 index 000000000..984f1e0ab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.WebSockets.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.dll new file mode 100644 index 000000000..5c765d66a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Net.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.Vectors.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.Vectors.dll new file mode 100644 index 000000000..964be0537 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.Vectors.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.dll new file mode 100644 index 000000000..8f76e4f3c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Numerics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ObjectModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ObjectModel.dll new file mode 100644 index 000000000..b6f9ceff7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ObjectModel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.CoreLib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.CoreLib.dll new file mode 100644 index 000000000..48e48e768 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.CoreLib.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.DataContractSerialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.DataContractSerialization.dll new file mode 100644 index 000000000..2591b747f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.DataContractSerialization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Uri.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Uri.dll new file mode 100644 index 000000000..da72bdcb8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Uri.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.Linq.dll new file mode 100644 index 000000000..cd7f919d4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.Linq.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.dll new file mode 100644 index 000000000..3e0ed9c58 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Private.Xml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.DispatchProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.DispatchProxy.dll new file mode 100644 index 000000000..d51db885f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.DispatchProxy.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.ILGeneration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 000000000..8d4088434 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.ILGeneration.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.Lightweight.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 000000000..cefda99a2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.Lightweight.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.dll new file mode 100644 index 000000000..d90e61ec5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Emit.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Extensions.dll new file mode 100644 index 000000000..0a49975c9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Metadata.dll new file mode 100644 index 000000000..5e3b88f67 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Metadata.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Primitives.dll new file mode 100644 index 000000000..2f3a7ee4c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.TypeExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.TypeExtensions.dll new file mode 100644 index 000000000..807227f01 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.TypeExtensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.dll new file mode 100644 index 000000000..559f8ed6f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Reflection.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Reader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Reader.dll new file mode 100644 index 000000000..9d0e4b1fa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Reader.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.ResourceManager.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.ResourceManager.dll new file mode 100644 index 000000000..b99f0a372 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.ResourceManager.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Writer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Writer.dll new file mode 100644 index 000000000..9f697424c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Resources.Writer.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.Unsafe.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 000000000..b8b28fe5e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.VisualC.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 000000000..a4c833d07 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Extensions.dll new file mode 100644 index 000000000..f99ad6475 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Handles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Handles.dll new file mode 100644 index 000000000..644253c5a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Handles.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.JavaScript.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 000000000..bd146eaa6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 000000000..fa0b4c8f3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.dll new file mode 100644 index 000000000..249823620 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.InteropServices.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Intrinsics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Intrinsics.dll new file mode 100644 index 000000000..e2426f378 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Intrinsics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Loader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Loader.dll new file mode 100644 index 000000000..4ed7c6827 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Loader.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Numerics.dll new file mode 100644 index 000000000..42f487b3f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Numerics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Formatters.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 000000000..54937f969 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Formatters.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Json.dll new file mode 100644 index 000000000..d3b2a9406 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 000000000..b54b64b56 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Xml.dll new file mode 100644 index 000000000..7f9710637 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.Xml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.dll new file mode 100644 index 000000000..dd519d85a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.Serialization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.dll new file mode 100644 index 000000000..55c68aaf3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Runtime.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.AccessControl.dll new file mode 100644 index 000000000..4c5812573 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.AccessControl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Claims.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Claims.dll new file mode 100644 index 000000000..4b9384d8e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Claims.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Algorithms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 000000000..ce4aeb6ad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Algorithms.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Cng.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Cng.dll new file mode 100644 index 000000000..b8ca049d9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Cng.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Csp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Csp.dll new file mode 100644 index 000000000..6742fd650 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Csp.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Encoding.dll new file mode 100644 index 000000000..4f6382771 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Encoding.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.OpenSsl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 000000000..8cea46393 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.OpenSsl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Primitives.dll new file mode 100644 index 000000000..f37ccdcbd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.X509Certificates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 000000000..0dc496dd5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.X509Certificates.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.dll new file mode 100644 index 000000000..e77c70d44 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Cryptography.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.Windows.dll new file mode 100644 index 000000000..6123f6044 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.Windows.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.dll new file mode 100644 index 000000000..1b945981b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.Principal.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.SecureString.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.SecureString.dll new file mode 100644 index 000000000..3a582326f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.SecureString.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.dll new file mode 100644 index 000000000..1a68f36f0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Security.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceModel.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceModel.Web.dll new file mode 100644 index 000000000..f2fe663d5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceModel.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceProcess.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceProcess.dll new file mode 100644 index 000000000..2dc92be7e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ServiceProcess.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.CodePages.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.CodePages.dll new file mode 100644 index 000000000..0a24f1455 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.CodePages.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.Extensions.dll new file mode 100644 index 000000000..0d78efac3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.dll new file mode 100644 index 000000000..6751cb4db Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encoding.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encodings.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encodings.Web.dll new file mode 100644 index 000000000..f6efbe59e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Encodings.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Json.dll new file mode 100644 index 000000000..1058490d0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.RegularExpressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.RegularExpressions.dll new file mode 100644 index 000000000..c2d413df6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Text.RegularExpressions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Channels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Channels.dll new file mode 100644 index 000000000..8b3424766 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Channels.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Overlapped.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Overlapped.dll new file mode 100644 index 000000000..849f5ce02 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Overlapped.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Dataflow.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 000000000..c7fc5e3df Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Dataflow.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Extensions.dll new file mode 100644 index 000000000..98eeaab42 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Parallel.dll new file mode 100644 index 000000000..a53e84a9c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.Parallel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.dll new file mode 100644 index 000000000..14c22864c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Tasks.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Thread.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Thread.dll new file mode 100644 index 000000000..df035b39f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Thread.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.ThreadPool.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.ThreadPool.dll new file mode 100644 index 000000000..24e2d4d11 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.ThreadPool.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Timer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Timer.dll new file mode 100644 index 000000000..58ba6c067 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.Timer.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.dll new file mode 100644 index 000000000..46f1605e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Threading.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.Local.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.Local.dll new file mode 100644 index 000000000..2bd46dba3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.Local.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.dll new file mode 100644 index 000000000..befa423e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Transactions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ValueTuple.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ValueTuple.dll new file mode 100644 index 000000000..024d67a9c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.ValueTuple.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.HttpUtility.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.HttpUtility.dll new file mode 100644 index 000000000..0d8714c4e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.HttpUtility.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.dll new file mode 100644 index 000000000..302f53c43 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Windows.dll new file mode 100644 index 000000000..cc71c5d64 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Windows.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Linq.dll new file mode 100644 index 000000000..6e46cd77a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Linq.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.ReaderWriter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.ReaderWriter.dll new file mode 100644 index 000000000..c230b0faf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.ReaderWriter.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Serialization.dll new file mode 100644 index 000000000..21d796994 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.Serialization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XDocument.dll new file mode 100644 index 000000000..da4f85222 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XDocument.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.XDocument.dll new file mode 100644 index 000000000..cb5c5218b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.XDocument.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.dll new file mode 100644 index 000000000..287ee4529 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XPath.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlDocument.dll new file mode 100644 index 000000000..e57ad2b93 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlDocument.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlSerializer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlSerializer.dll new file mode 100644 index 000000000..e8125f9a8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.XmlSerializer.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.dll new file mode 100644 index 000000000..8f36728e6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.Xml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.dll new file mode 100644 index 000000000..36a371e34 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/System.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Tavis.UriTemplates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Tavis.UriTemplates.dll new file mode 100644 index 000000000..733ef6e5c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/Tavis.UriTemplates.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/TimeZoneConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/TimeZoneConverter.dll new file mode 100644 index 000000000..cd3dd5174 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/TimeZoneConverter.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/WindowsBase.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/WindowsBase.dll new file mode 100644 index 000000000..6047df34c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/WindowsBase.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ZstdSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ZstdSharp.dll new file mode 100644 index 000000000..8b4fe8260 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ZstdSharp.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.js b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.js new file mode 100644 index 000000000..133ee2bdf --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.js @@ -0,0 +1,33 @@ +//! Licensed to the .NET Foundation under one or more agreements. +//! The .NET Foundation licenses this file to you under the MIT license. +var __dotnet_runtime=function(e){"use strict";var t="7.0.5",n=false,r="Release";let o,s,i,a,c,u,l,f;const _={},d={};let m;function g(e,t){s=t.internal,i=t.marshaled_imports,o=t.module,w(e),a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread,b.quit=e.quit_,b.ExitStatus=e.ExitStatus,b.requirePromise=e.requirePromise}function w(e){a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread}function h(e){m=e}const p=undefined,b={javaScriptExports:{},mono_wasm_load_runtime_done:false,mono_wasm_bindings_is_ready:false,maxParallelDownloads:16,config:{environmentVariables:{}},diagnosticTracing:false},y=0,v=0,E=0,A=0,S=0,O=0,x=-1,j=0,$=0,N=0,k=0;function T(e){return void 0===e||null===e}const R=[[true,"mono_wasm_register_root","number",["number","number","string"]],[true,"mono_wasm_deregister_root",null,["number"]],[true,"mono_wasm_string_get_data",null,["number","number","number","number"]],[true,"mono_wasm_string_get_data_ref",null,["number","number","number","number"]],[true,"mono_wasm_set_is_debugger_attached","void",["bool"]],[true,"mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]],[true,"mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]],[true,"mono_wasm_setenv",null,["string","string"]],[true,"mono_wasm_parse_runtime_options",null,["number","number"]],[true,"mono_wasm_strdup","number",["string"]],[true,"mono_background_exec",null,[]],[true,"mono_set_timeout_exec",null,[]],[true,"mono_wasm_load_icu_data","number",["number"]],[true,"mono_wasm_get_icudt_name","string",["string"]],[false,"mono_wasm_add_assembly","number",["string","number","number"]],[true,"mono_wasm_add_satellite_assembly","void",["string","string","number","number"]],[false,"mono_wasm_load_runtime",null,["string","number"]],[true,"mono_wasm_change_debugger_log_level","void",["number"]],[true,"mono_wasm_get_corlib","number",[]],[true,"mono_wasm_assembly_load","number",["string"]],[true,"mono_wasm_find_corlib_class","number",["string","string"]],[true,"mono_wasm_assembly_find_class","number",["number","string","string"]],[true,"mono_wasm_runtime_run_module_cctor","void",["number"]],[true,"mono_wasm_find_corlib_type","number",["string","string"]],[true,"mono_wasm_assembly_find_type","number",["number","string","string"]],[true,"mono_wasm_assembly_find_method","number",["number","string","number"]],[true,"mono_wasm_invoke_method","number",["number","number","number","number"]],[false,"mono_wasm_invoke_method_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_string_get_utf8","number",["number"]],[true,"mono_wasm_string_from_utf16_ref","void",["number","number","number"]],[true,"mono_wasm_get_obj_type","number",["number"]],[true,"mono_wasm_array_length","number",["number"]],[true,"mono_wasm_array_get","number",["number","number"]],[true,"mono_wasm_array_get_ref","void",["number","number","number"]],[false,"mono_wasm_obj_array_new","number",["number"]],[false,"mono_wasm_obj_array_new_ref","void",["number","number"]],[false,"mono_wasm_obj_array_set","void",["number","number","number"]],[false,"mono_wasm_obj_array_set_ref","void",["number","number","number"]],[true,"mono_wasm_register_bundled_satellite_assemblies","void",[]],[false,"mono_wasm_try_unbox_primitive_and_get_type_ref","number",["number","number","number"]],[true,"mono_wasm_box_primitive_ref","void",["number","number","number","number"]],[true,"mono_wasm_intern_string_ref","void",["number"]],[true,"mono_wasm_assembly_get_entry_point","number",["number"]],[true,"mono_wasm_get_delegate_invoke_ref","number",["number"]],[true,"mono_wasm_string_array_new_ref","void",["number","number"]],[true,"mono_wasm_typed_array_new_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_class_get_type","number",["number"]],[true,"mono_wasm_type_get_class","number",["number"]],[true,"mono_wasm_get_type_name","string",["number"]],[true,"mono_wasm_get_type_aqn","string",["number"]],[true,"mono_wasm_event_pipe_enable","bool",["string","number","number","string","bool","number"]],[true,"mono_wasm_event_pipe_session_start_streaming","bool",["number"]],[true,"mono_wasm_event_pipe_session_disable","bool",["number"]],[true,"mono_wasm_diagnostic_server_create_thread","bool",["string","number"]],[true,"mono_wasm_diagnostic_server_thread_attach_to_runtime","void",[]],[true,"mono_wasm_diagnostic_server_post_resume_runtime","void",[]],[true,"mono_wasm_diagnostic_server_create_stream","number",[]],[true,"mono_wasm_string_from_js","number",["string"]],[false,"mono_wasm_exit","void",["number"]],[true,"mono_wasm_getenv","number",["string"]],[true,"mono_wasm_set_main_args","void",["number","number"]],[false,"mono_wasm_enable_on_demand_gc","void",["number"]],[false,"mono_profiler_init_aot","void",["number"]],[false,"mono_wasm_exec_regression","number",["number","string"]],[false,"mono_wasm_invoke_method_bound","number",["number","number"]],[true,"mono_wasm_write_managed_pointer_unsafe","void",["number","number"]],[true,"mono_wasm_copy_managed_pointer","void",["number","number"]],[true,"mono_wasm_i52_to_f64","number",["number","number"]],[true,"mono_wasm_u52_to_f64","number",["number","number"]],[true,"mono_wasm_f64_to_i52","number",["number","number"]],[true,"mono_wasm_f64_to_u52","number",["number","number"]]],M={};function I(){const e=!!f;for(const t of R){const n=M,[r,s,i,a,c]=t;if(r||e)n[s]=function(...e){const t=o.cwrap(s,i,a,c);return n[s]=t,t(...e)};else{const e=o.cwrap(s,i,a,c);n[s]=e}}}function D(e,t,n){const r=C(e,t,n);let o="",s=0,i=0,a=0,c=0,u=0,l=0;const f=16777215,_=262143,d=4095,m=63,g=18,w=12,h=6,p=0;for(;s=r.read(),i=r.read(),a=r.read(),null!==s;)null===i&&(i=0,u+=1),null===a&&(a=0,u+=1),l=s<<16|i<<8|a<<0,c=(l&f)>>g,o+=U[c],c=(l&_)>>w,o+=U[c],u<2&&(c=(l&d)>>6,o+=U[c]),2===u?o+="==":1===u?o+="=":(c=(l&m)>>0,o+=U[c]);return o}const U=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"];function C(e,t,n){let r="number"===typeof t?t:0,o;o="number"===typeof n?r+n:e.length-r;const s={read:function(){if(r>=o)return null;const t=e[r];return r+=1,t}};return Object.defineProperty(s,"eof",{get:function(){return r>=o},configurable:true,enumerable:true}),s}const P=new Map;P.remove=function(e){const t=this.get(e);return this.delete(e),t};let W={},F=0,B=-1,V,H,z;function mono_wasm_runtime_ready(){if(s.mono_wasm_runtime_is_ready=b.mono_wasm_runtime_is_ready=true,F=0,W={},B=-1,globalThis.dotnetDebugger)debugger;else console.debug("mono_wasm_runtime_ready","fe00e07a-5519-4dfe-b35a-f867dbaf2e28")}function mono_wasm_fire_debugger_agent_message(){debugger}function L(e,t,n,r){const s=undefined,i=undefined,a={res_ok:e,res:{id:t,value:D(new Uint8Array(o.HEAPU8.buffer,n,r))}};P.has(t)&&console.warn(`MONO_WASM: Adding an id (${t}) that already exists in commands_received`),P.set(t,a)}function J(e){e.length>B&&(V&&o._free(V),B=Math.max(e.length,B,256),V=o._malloc(B));const t=atob(e);for(let e=0;e{const t=setInterval((()=>{1==b.waitForDebugger&&(clearInterval(t),e())}),100)}))}function te(){-1==b.waitForDebugger&&(b.waitForDebugger=1),M.mono_wasm_set_is_debugger_attached(true)}function ne(e,t){H=o.UTF8ToString(e).concat(".dll"),z=t,console.assert(true,`Adding an entrypoint breakpoint ${H} at method token ${z}`);debugger}function re(e,t){if(e.startsWith("dotnet:array:")){let e;if(void 0===t.items)return e=t.map((e=>e.value)),e;if(void 0===t.dimensionsDetails||1===t.dimensionsDetails.length)return e=t.items.map((e=>e.value)),e}const n={};return Object.keys(t).forEach((e=>{const r=t[e];void 0!==r.get?Object.defineProperty(n,r.name,{get(){return G(r.get.id,r.get.commandSet,r.get.command,r.get.buffer)},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):void 0!==r.set?Object.defineProperty(n,r.name,{get(){return r.value},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):n[r.name]=r.value})),n}function oe(e){if(void 0!=e.arguments&&!Array.isArray(e.arguments))throw new Error(`"arguments" should be an array, but was ${e.arguments}`);const t=e.objectId,n=e.details;let r={};if(t.startsWith("dotnet:cfo_res:")){if(!(t in W))throw new Error(`Unknown object id ${t}`);r=W[t]}else r=re(t,n);const o=void 0!=e.arguments?e.arguments.map((e=>JSON.stringify(e.value))):[],s=`const fn = ${e.functionDeclaration}; return fn.apply(proxy, [${o}]);`,i=undefined,a=new Function("proxy",s)(r);if(void 0===a)return{type:"undefined"};if(Object(a)!==a)return"object"==typeof a&&null==a?{type:typeof a,subtype:`${a}`,value:null}:{type:typeof a,description:`${a}`,value:`${a}`};if(e.returnByValue&&void 0==a.subtype)return{type:"object",value:a};if(Object.getPrototypeOf(a)==Array.prototype){const e=ae(a);return{type:"object",subtype:"array",className:"Array",description:`Array(${a.length})`,objectId:e}}if(void 0!==a.value||void 0!==a.subtype)return a;if(a==r)return{type:"object",className:"Object",description:"Object",objectId:t};const c=undefined;return{type:"object",className:"Object",description:"Object",objectId:ae(a)}}function se(e,t){if(!(e in W))throw new Error(`Could not find any object with id ${e}`);const n=W[e],r=Object.getOwnPropertyDescriptors(n);t.accessorPropertiesOnly&&Object.keys(r).forEach((e=>{void 0===r[e].get&&Reflect.deleteProperty(r,e)}));const o=[];return Object.keys(r).forEach((e=>{let t;const n=r[e];t="object"==typeof n.value?Object.assign({name:e},n):void 0!==n.value?{name:e,value:Object.assign({type:typeof n.value,description:""+n.value},n)}:void 0!==n.get?{name:e,get:{className:"Function",description:`get ${e} () {}`,type:"function"}}:{name:e,value:{type:"symbol",value:"",description:""}},o.push(t)})),{__value_as_json_string__:JSON.stringify(o)}}function ie(e,t={}){return se(`dotnet:cfo_res:${e}`,t)}function ae(e){const t="dotnet:cfo_res:"+F++;return W[t]=e,t}function ce(e){e in W&&delete W[e]}function ue(e,t){const n=o.UTF8ToString(t);if(s.logging&&"function"===typeof s.logging.debugger)return s.logging.debugger(e,n),void 0}let le=0;function fe(e){const t=1===M.mono_wasm_load_icu_data(e);return t&&le++,t}function _e(e){return M.mono_wasm_get_icudt_name(e)}function de(){const e=b.config;let t=false;if(e.globalizationMode||(e.globalizationMode="auto"),"invariant"===e.globalizationMode&&(t=true),!t)if(le>0)b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode");else{if("icu"===e.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives were loaded";throw o.printErr(`MONO_WASM: ERROR: ${e}`),new Error(e)}b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode"),t=true}t&&M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1"),M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY","1")}function me(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="System.Runtime.InteropServices.JavaScript.JavaScriptExports::StopProfile"),"sendTo"in e||(e.sendTo="Interop/Runtime::DumpAotProfileData");const t="aot:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_aot",null,["string"],[t])}function ge(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="WebAssembly.Runtime::StopProfile"),"sendTo"in e||(e.sendTo="WebAssembly.Runtime::DumpCoverageProfileData");const t="coverage:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_coverage",null,["string"],[t])}const we=new Map,he=new Map;let pe=0;function be(e){if(we.has(e))return we.get(e);const t=M.mono_wasm_assembly_load(e);return we.set(e,t),t}function ye(e,t,n){let r=he.get(e);r||he.set(e,r=new Map);let o=r.get(t);return o||(o=new Map,r.set(t,o)),o.get(n)}function ve(e,t,n,r){const o=he.get(e);if(!o)throw new Error("internal error");const s=o.get(t);if(!s)throw new Error("internal error");s.set(n,r)}function Ee(e,t,n){pe||(pe=M.mono_wasm_get_corlib());let r=ye(pe,e,t);if(void 0!==r)return r;if(r=M.mono_wasm_assembly_find_class(pe,e,t),n&&!r)throw new Error(`Failed to find corlib class ${e}.${t}`);return ve(pe,e,t,r),r} +//! Licensed to the .NET Foundation under one or more agreements. +const Ae=new Map,Se=[];function Oe(e){try{if(0==Ae.size)return e;const t=e;for(let n=0;n{const n=t.find((e=>"object"==typeof e&&void 0!==e.replaceSection));if(void 0===n)return e;const r=n.funcNum,o=n.replaceSection,s=Ae.get(Number(r));return void 0===s?e:e.replace(o,`${s} (${o})`)}));if(r!==t)return r}return t}catch(t){return console.debug(`MONO_WASM: failed to symbolicate: ${t}`),e}}function xe(e){let t=e;return t instanceof Error||(t=new Error(t)),Oe(t.stack)}function je(e,t,n,r,i){const a=o.UTF8ToString(n),c=!!r,u=o.UTF8ToString(e),l=i,f=o.UTF8ToString(t),_=`[MONO] ${a}`;if(s.logging&&"function"===typeof s.logging.trace)return s.logging.trace(u,f,_,c,l),void 0;switch(f){case"critical":case"error":console.error(xe(_));break;case"warning":console.warn(_);break;case"message":console.log(_);break;case"info":console.info(_);break;case"debug":console.debug(_);break;default:console.log(_);break}}let $e;function Ne(e,t,n){const r={log:t.log,error:t.error},o=t;function s(t,n,o){return function(...s){try{let r=s[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"===typeof r)r=r.toString();else if("string"!==typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}"string"===typeof r&&"main"!==e&&(r=`[${e}] ${r}`),n(o?JSON.stringify({method:t,payload:r,arguments:s}):[t+r,...s.slice(1)])}catch(e){r.error(`proxyConsole failed: ${e}`)}}}const i=["debug","trace","warn","info","error"];for(const e of i)"function"!==typeof o[e]&&(o[e]=s(`console.${e}: `,t.log,false));const a=`${n}/console`.replace("https://","wss://").replace("http://","ws://");$e=new WebSocket(a),$e.addEventListener("open",(()=>{r.log(`browser: [${e}] Console websocket connected.`)})),$e.addEventListener("error",(t=>{r.error(`[${e}] websocket error: ${t}`,t)})),$e.addEventListener("close",(t=>{r.error(`[${e}] websocket closed: ${t}`,t)}));const c=e=>{$e.readyState===WebSocket.OPEN?$e.send(e):r.log(e)};for(const e of["log",...i])o[e]=s(`console.${e}`,c,true)}function ke(e){if(!b.mono_wasm_symbols_are_ready){b.mono_wasm_symbols_are_ready=true;try{const t=undefined;o.FS_readFile(e,{flags:"r",encoding:"utf8"}).split(/[\r\n]/).forEach((e=>{const t=e.split(/:/);t.length<2||(t[1]=t.splice(1).join(":"),Ae.set(Number(t[0]),t[1]))}))}catch(t){return 44==t.errno||console.log(`MONO_WASM: Error loading symbol file ${e}: ${JSON.stringify(t)}`),void 0}}}async function Te(e,t){try{const n=await Re(e,t);return De(n),n}catch(e){return e instanceof b.ExitStatus?e.status:(De(1,e),1)}}async function Re(e,t){Ic(e,t),-1==b.waitForDebugger&&(console.log("MONO_WASM: waiting for debugger..."),await ee());const n=Me(e);return b.javaScriptExports.call_entry_point(n,t)}function Me(e){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const t=be(e);if(!t)throw new Error("Could not find assembly: "+e);let n=0;1==b.waitForDebugger&&(n=1);const r=M.mono_wasm_assembly_get_entry_point(t,n);if(!r)throw new Error("Could not find entry point for assembly: "+e);return r}function Ie(e){bc(e,false),De(1,e)}function De(e,t){if(b.config.asyncFlushOnExit&&0===e)throw(async()=>{try{await Ue()}finally{Ce(e,t)}})(),b.ExitStatus?new b.ExitStatus(e):t||new Error("Stop with exit code "+e);Ce(e,t)}async function Ue(){try{const e=await import("process"),t=e=>new Promise(((t,n)=>{e.on("error",(e=>n(e))),e.write("",(function(){t()}))})),n=t(e.stderr),r=t(e.stdout);await Promise.all([r,n])}catch(e){console.error(`flushing std* streams failed: ${e}`)}}function Ce(e,t){if(b.ExitStatus&&(!t||t instanceof b.ExitStatus?t=new b.ExitStatus(e):t instanceof Error?o.printErr(s.mono_wasm_stringify_as_error_with_stack(t)):"string"==typeof t?o.printErr(t):o.printErr(JSON.stringify(t))),We(e,t),Pe(e),0!==e||!u){if(!b.quit)throw t;b.quit(e,t)}}function Pe(e){if(u&&b.config.appendElementOnExit){const t=document.createElement("label");t.id="tests_done",e&&(t.style.background="red"),t.innerHTML=e.toString(),document.body.appendChild(t)}}function We(e,t){if(b.config.logExitCode)if(0!=e&&t&&(t instanceof Error?console.error(xe(t)):"string"==typeof t?console.error(t):console.error(JSON.stringify(t))),$e){const t=()=>{0==$e.bufferedAmount?console.log("WASM EXIT "+e):setTimeout(t,100)};t()}else console.log("WASM EXIT "+e)}Se.push(/at (?[^:()]+:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)((?![^)a-fA-F\d])|$)/),Se.push(/(?:WASM \[[\da-zA-Z]+\], (?function #(?[\d]+) \(''\)))/),Se.push(/(?[a-z]+:\/\/[^ )]*:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)/),Se.push(/(?<[^ >]+>[.:]wasm-function\[(?[0-9]+)\])/);const Fe="function"===typeof globalThis.WeakRef;function Be(e){return Fe?new WeakRef(e):{deref:()=>e}}const Ve="function"===typeof globalThis.FinalizationRegistry;let He;const ze=[],Le=[];let Je=1;const qe=new Map;Ve&&(He=new globalThis.FinalizationRegistry(rt));const Ge=Symbol.for("wasm js_owned_gc_handle"),Ye=Symbol.for("wasm cs_owned_js_handle");function Ze(e){return 0!==e&&e!==x?ze[e]:null}function Xe(e){return 0!==e&&e!==x?Ze(e):null}function Qe(e){if(e[Ye])return e[Ye];const t=Le.length?Le.pop():Je++;return ze[t]=e,Object.isExtensible(e)&&(e[Ye]=t),t}function Ke(e){const t=ze[e];if("undefined"!==typeof t&&null!==t){if(globalThis===t)return;"undefined"!==typeof t[Ye]&&(t[Ye]=void 0),ze[e]=void 0,Le.push(e)}}function et(e,t){e[Ge]=t,Ve&&He.register(e,t,e);const n=Be(e);qe.set(t,n)}function tt(e,t){e&&(t=e[Ge],e[Ge]=0,Ve&&He.unregister(e)),0!==t&&qe.delete(t)&&b.javaScriptExports.release_js_owned_object_by_gc_handle(t)}function nt(e){const t=e[Ge];if(!(0!=t))throw new Error("Assert failed: ObjectDisposedException");return t}function rt(e){tt(null,e)}function ot(e){if(!e)return null;const t=qe.get(e);return t?t.deref():null}const st=Symbol.for("wasm promise_control");function it(e,t){let n=null;const r=new Promise((function(r,o){n={isDone:false,promise:null,resolve:t=>{n.isDone||(n.isDone=true,r(t),e&&e())},reject:e=>{n.isDone||(n.isDone=true,o(e),t&&t())}}}));n.promise=r;const o=r;return o[st]=n,{promise:o,promise_control:n}}function at(e){return e[st]}function ct(e){return void 0!==e[st]}function ut(e){if(!ct(e))throw new Error("Assert failed: Promise is not controllable")}const lt=("object"===typeof Promise||"function"===typeof Promise)&&"function"===typeof Promise.resolve;function ft(e){return Promise.resolve(e)===e||("object"===typeof e||"function"===typeof e)&&"function"===typeof e.then}function _t(e){const{promise:t,promise_control:n}=it(),r=undefined;return e().then((e=>n.resolve(e))).catch((e=>n.reject(e))),t}function dt(e){const t=ot(e);if(!t)return;const n=t.promise;if(!!!n)throw new Error(`Assert failed: Expected Promise for GCHandle ${e}`);ut(n);const r=undefined;at(n).reject("OperationCanceledException")}const mt=[],gt=32768;let wt,ht,pt=null;function bt(){wt||(wt=o._malloc(gt),ht=wt)}const yt="undefined"!==typeof BigInt&&"undefined"!==typeof BigInt64Array;function vt(){bt(),mt.push(ht)}function Et(){if(!mt.length)throw new Error("No temp frames have been created at this point");ht=mt.pop()}function At(e,t,n){if(!Number.isSafeInteger(e))throw new Error(`Assert failed: Value is not an integer: ${e} (${typeof e})`);if(!(e>=t&&e<=n))throw new Error(`Assert failed: Overflow: value ${e} is out of ${t} ${n} range`)}function St(e,t){o.HEAP8.fill(0,e,t+e)}function Ot(e,t){const n=!!t;"number"===typeof t&&At(t,0,1),o.HEAP32[e>>>2]=n?1:0}function xt(e,t){At(t,0,255),o.HEAPU8[e]=t}function jt(e,t){At(t,0,65535),o.HEAPU16[e>>>1]=t}function $t(e,t){o.HEAPU32[e>>>2]=t}function Nt(e,t){At(t,0,4294967295),o.HEAPU32[e>>>2]=t}function kt(e,t){At(t,-128,127),o.HEAP8[e]=t}function Tt(e,t){At(t,-32768,32767),o.HEAP16[e>>>1]=t}function Rt(e,t){o.HEAP32[e>>>2]=t}function Mt(e,t){At(t,-2147483648,2147483647),o.HEAP32[e>>>2]=t}function It(e){if(0!==e)switch(e){case 1:throw new Error("value was not an integer");case 2:throw new Error("value out of range");default:throw new Error("unknown internal error")}}function Dt(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);const n=undefined;It(M.mono_wasm_f64_to_i52(e,t))}function Ut(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);if(!(t>=0))throw new Error("Assert failed: Can't convert negative Number into UInt64");const n=undefined;It(M.mono_wasm_f64_to_u52(e,t))}function Ct(e,t){if(!yt)throw new Error("Assert failed: BigInt is not supported.");if(!("bigint"===typeof t))throw new Error(`Assert failed: Value is not an bigint: ${t} (${typeof t})`);if(!(t>=Kt&&t<=Qt))throw new Error(`Assert failed: Overflow: value ${t} is out of ${Kt} ${Qt} range`);pt[e>>>3]=t}function Pt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF32[e>>>2]=t}function Wt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF64[e>>>3]=t}function Ft(e){return!!o.HEAP32[e>>>2]}function Bt(e){return o.HEAPU8[e]}function Vt(e){return o.HEAPU16[e>>>1]}function Ht(e){return o.HEAPU32[e>>>2]}function zt(e){return o.HEAP8[e]}function Lt(e){return o.HEAP16[e>>>1]}function Jt(e){return o.HEAP32[e>>>2]}function qt(e){const t=M.mono_wasm_i52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Gt(e){const t=M.mono_wasm_u52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Yt(e){if(!yt)throw new Error("Assert failed: BigInt is not supported.");return pt[e>>>3]}function Zt(e){return o.HEAPF32[e>>>2]}function Xt(e){return o.HEAPF64[e>>>3]}let Qt,Kt;function en(e){yt&&(Qt=BigInt("9223372036854775807"),Kt=BigInt("-9223372036854775808"),pt=new BigInt64Array(e))}function tn(e){const t=o._malloc(e.length),n=undefined;return new Uint8Array(o.HEAPU8.buffer,t,e.length).set(e),t}const nn=8192;let rn=null,on=null,sn=0;const an=[],cn=[];function un(e,t){if(e<=0)throw new Error("capacity >= 1");const n=4*(e|=0),r=o._malloc(n);if(r%4!==0)throw new Error("Malloc returned an unaligned offset");return St(r,n),new WasmRootBufferImpl(r,e,true,t)}function ln(e){let t;if(!e)throw new Error("address must be a location in the native heap");return cn.length>0?(t=cn.pop(),t._set_address(e)):t=new wn(e),t}function fn(e){let t;if(an.length>0)t=an.pop();else{const e=mn(),n=undefined;t=new gn(rn,e)}if(void 0!==e){if("number"!==typeof e)throw new Error("value must be an address in the managed heap");t.set(e)}else t.set(0);return t}function _n(...e){for(let t=0;t>>2,this.__count=t,this.length=t,this.__handle=M.mono_wasm_register_root(e,o,r||"noname"),this.__ownsAllocation=n}_throw_index_out_of_range(){throw new Error("index out of range")}_check_in_range(e){(e>=this.__count||e<0)&&this._throw_index_out_of_range()}get_address(e){return this._check_in_range(e),this.__offset+4*e}get_address_32(e){return this._check_in_range(e),this.__offset32+e}get(e){this._check_in_range(e);const t=this.get_address_32(e);return o.HEAPU32[t]}set(e,t){const n=this.get_address(e);return M.mono_wasm_write_managed_pointer_unsafe(n,t),t}copy_value_from_address(e,t){const n=this.get_address(e);M.mono_wasm_copy_managed_pointer(n,t)}_unsafe_get(e){return o.HEAPU32[this.__offset32+e]}_unsafe_set(e,t){const n=this.__offset+e;M.mono_wasm_write_managed_pointer_unsafe(n,t)}clear(){this.__offset&&St(this.__offset,4*this.__count)}release(){this.__offset&&this.__ownsAllocation&&(M.mono_wasm_deregister_root(this.__offset),St(this.__offset,4*this.__count),o._free(this.__offset)),this.__handle=this.__offset=this.__count=this.__offset32=0}toString(){return`[root buffer @${this.get_address(0)}, size ${this.__count} ]`}}class gn{constructor(e,t){this.__buffer=e,this.__index=t}get_address(){return this.__buffer.get_address(this.__index)}get_address_32(){return this.__buffer.get_address_32(this.__index)}get address(){return this.__buffer.get_address(this.__index)}get(){const e=undefined;return this.__buffer._unsafe_get(this.__index)}set(e){const t=this.__buffer.get_address(this.__index);return M.mono_wasm_write_managed_pointer_unsafe(t,e),e}copy_from(e){const t=e.address,n=this.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){if(!this.__buffer)throw new Error("No buffer");const e=128;an.length>e?(dn(this.__index),this.__buffer=null,this.__index=0):(this.set(0),an.push(this))}toString(){return`[root @${this.address}]`}}class wn{constructor(e){this.__external_address=0,this.__external_address_32=0,this._set_address(e)}_set_address(e){this.__external_address=e,this.__external_address_32=e>>>2}get address(){return this.__external_address}get_address(){return this.__external_address}get_address_32(){return this.__external_address_32}get(){const e=undefined;return o.HEAPU32[this.__external_address_32]}set(e){return M.mono_wasm_write_managed_pointer_unsafe(this.__external_address,e),e}copy_from(e){const t=e.address,n=this.__external_address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.__external_address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){const e=128;cn.length=r&&(vr=null),vr||(vr=un(r,"interned strings"),Er=0);const o=vr,s=Er++;if(n&&(M.mono_wasm_intern_string_ref(t.address),!t.value))throw new Error("mono_wasm_intern_string_ref produced a null pointer");br.set(e,t.value),pr.set(t.value,e),0!==e.length||yr||(yr=t.value),o.copy_value_from_address(s,t.address)}function Nr(e,t){let n;if("symbol"===typeof e?(n=e.description,"string"!==typeof n&&(n=Symbol.keyFor(e)),"string"!==typeof n&&(n="")):"string"===typeof e&&(n=e),"string"!==typeof n)throw new Error(`Argument to js_string_to_mono_string_interned must be a string but was ${e}`);if(0===n.length&&yr)return t.set(yr),void 0;const r=br.get(n);if(r)return t.set(r),void 0;Tr(n,t),$r(n,t,true)}function kr(e,t){if(t.clear(),null!==e)if("symbol"===typeof e)Nr(e,t);else{if("string"!==typeof e)throw new Error("Expected string argument, got "+typeof e);if(0===e.length)Nr(e,t);else{if(e.length<=256){const n=br.get(e);if(n)return t.set(n),void 0}Tr(e,t)}}}function Tr(e,t){const n=o._malloc(2*(e.length+1)),r=n>>>1|0;for(let t=0;t{const n=On(e,0),a=On(e,1),c=On(e,2),u=On(e,3),l=On(e,4);try{let e,n,f;o&&(e=o(c)),s&&(n=s(u)),i&&(f=i(l));const _=t(e,n,f);r&&r(a,_)}catch(e){eo(n,e)}};a[yn]=true;const c=undefined;cr(e,Qe(a)),Cn(e,wr.Function)}class Qr{constructor(e){this.promise=e}dispose(){tt(this,0)}get isDisposed(){return 0===this[Ge]}}function Kr(e,t,n,r){if(null===t||void 0===t)return Cn(e,wr.None),void 0;if(!ft(t))throw new Error("Assert failed: Value is not a Promise");const o=b.javaScriptExports.create_task_callback();lr(e,o),Cn(e,wr.Task);const s=new Qr(t);et(s,o),t.then((e=>{b.javaScriptExports.complete_task(o,null,e,r||no),tt(s,o)})).catch((e=>{b.javaScriptExports.complete_task(o,e,null,void 0),tt(s,o)}))}function eo(e,t){if(null===t||void 0===t)Cn(e,wr.None);else if(t instanceof ManagedError){Cn(e,wr.Exception);const n=undefined;lr(e,nt(t))}else{if(!("object"===typeof t||"string"===typeof t))throw new Error("Assert failed: Value is not an Error "+typeof t);Cn(e,wr.JSException);const n=undefined;Yr(e,t.toString());const r=t[Ye];if(r)cr(e,r);else{const n=undefined;cr(e,Qe(t))}}}function to(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{if(!(void 0===t[Ge]))throw new Error("Assert failed: JSObject proxy of ManagedObject proxy is not supported");if(!("function"===typeof t||"object"===typeof t))throw new Error(`Assert failed: JSObject proxy of ${typeof t} is not supported`);Cn(e,wr.JSObject);const n=undefined;cr(e,Qe(t))}}function no(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{const n=t[Ge],r=typeof t;if(void 0===n)if("string"===r||"symbol"===r)Cn(e,wr.String),Yr(e,t);else if("number"===r)Cn(e,wr.Double),sr(e,t);else{if("bigint"===r)throw new Error("NotImplementedException: bigint");if("boolean"===r)Cn(e,wr.Boolean),Zn(e,t);else if(t instanceof Date)Cn(e,wr.DateTime),or(e,t);else if(t instanceof Error)eo(e,t);else if(t instanceof Uint8Array)oo(e,t,wr.Byte);else if(t instanceof Float64Array)oo(e,t,wr.Double);else if(t instanceof Int32Array)oo(e,t,wr.Int32);else if(Array.isArray(t))oo(e,t,wr.Object);else{if(t instanceof Int16Array||t instanceof Int8Array||t instanceof Uint8ClampedArray||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Float32Array)throw new Error("NotImplementedException: TypedArray");if(ft(t))Kr(e,t);else{if(t instanceof Span)throw new Error("NotImplementedException: Span");if("object"!=r)throw new Error(`JSObject proxy is not supported for ${r} ${t}`);{const n=Qe(t);Cn(e,wr.JSObject),cr(e,n)}}}}else{if(nt(t),t instanceof ArraySegment)throw new Error("NotImplementedException: ArraySegment");if(t instanceof ManagedError)Cn(e,wr.Exception),lr(e,n);else{if(!(t instanceof ManagedObject))throw new Error("NotImplementedException "+r);Cn(e,wr.Object),lr(e,n)}}}}function ro(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=undefined;oo(e,t,kn(n))}function oo(e,t,n){if(null===t||void 0===t)Cn(e,wr.None);else{const r=mr(n);if(!(-1!=r))throw new Error(`Assert failed: Element type ${wr[n]} not supported`);const s=t.length,i=r*s,a=o._malloc(i);if(n==wr.String){if(!Array.isArray(t))throw new Error("Assert failed: Value is not an Array");St(a,i),M.mono_wasm_register_root(a,i,"marshal_array_to_cs");for(let e=0;e>2,(a>>2)+s).set(t)}else{if(n!=wr.Double)throw new Error("not implemented");{if(!(Array.isArray(t)||t instanceof Float64Array))throw new Error("Assert failed: Value is not an Array or Float64Array");const e=undefined;o.HEAPF64.subarray(a>>3,(a>>3)+s).set(t)}}tr(e,a),Cn(e,wr.Array),Pn(e,n),dr(e,t.length)}}function so(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");if(!!t.isDisposed)throw new Error("Assert failed: ObjectDisposedException");ao(n,t._viewType),Cn(e,wr.Span),tr(e,t._pointer),dr(e,t.length)}function io(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=nt(t);if(!r)throw new Error("Assert failed: Only roundtrip of ArraySegment instance created by C#");ao(n,t._viewType),Cn(e,wr.ArraySegment),tr(e,t._pointer),dr(e,t.length),lr(e,r)}function ao(e,t){const n=kn(e);if(n==wr.Byte){if(!(0==t))throw new Error("Assert failed: Expected MemoryViewType.Byte")}else if(n==wr.Int32){if(!(1==t))throw new Error("Assert failed: Expected MemoryViewType.Int32")}else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);if(!(2==t))throw new Error("Assert failed: Expected MemoryViewType.Double")}}function co(){0==hn.size&&(hn.set(wr.Array,ko),hn.set(wr.Span,Ro),hn.set(wr.ArraySegment,Mo),hn.set(wr.Boolean,lo),hn.set(wr.Byte,fo),hn.set(wr.Char,_o),hn.set(wr.Int16,mo),hn.set(wr.Int32,go),hn.set(wr.Int52,wo),hn.set(wr.BigInt64,ho),hn.set(wr.Single,po),hn.set(wr.IntPtr,yo),hn.set(wr.Double,bo),hn.set(wr.String,xo),hn.set(wr.Exception,jo),hn.set(wr.JSException,jo),hn.set(wr.JSObject,$o),hn.set(wr.Object,No),hn.set(wr.DateTime,Eo),hn.set(wr.DateTimeOffset,Eo),hn.set(wr.Task,So),hn.set(wr.Action,Ao),hn.set(wr.Function,Ao),hn.set(wr.None,vo),hn.set(wr.Void,vo),hn.set(wr.Discard,vo))}function uo(e,t,n,r,o,s){let i="",a="",c="";const u="converter"+t;let l="null",f="null",_="null",d="null",m=$n(e);if(m===wr.None||m===wr.Void)return{converters:i,call_body:c,marshaler_type:m};const g=Nn(e);if(g!==wr.None){const e=hn.get(g);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${g} at ${t}`);m!=wr.Nullable?(d="converter"+t+"_res",i+=", "+d,a+=" "+wr[g],s[d]=e):m=g}const w=kn(e);if(w!==wr.None){const e=pn.get(w);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${w} at ${t}`);l="converter"+t+"_arg1",i+=", "+l,a+=" "+wr[w],s[l]=e}const h=Tn(e);if(h!==wr.None){const e=pn.get(h);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${h} at ${t}`);f="converter"+t+"_arg2",i+=", "+f,a+=" "+wr[h],s[f]=e}const p=Rn(e);if(p!==wr.None){const e=pn.get(p);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${p} at ${t}`);_="converter"+t+"_arg3",i+=", "+_,a+=" "+wr[p],s[_]=e}const b=hn.get(m);if(!(b&&"function"===typeof b))throw new Error(`Assert failed: Unknow converter for type ${m} at ${t} `);return i+=", "+u,a+=" "+wr[m],s[u]=b,c=m==wr.Task?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}); // ${a} \n`:m==wr.Action||m==wr.Function?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}, ${l}, ${f}, ${_}); // ${a} \n`:` const ${o} = ${u}(args + ${n}, signature + ${r}); // ${a} \n`,{converters:i,call_body:c,marshaler_type:m}}function lo(e){const t=undefined;return Dn(e)==wr.None?null:Wn(e)}function fo(e){const t=undefined;return Dn(e)==wr.None?null:Fn(e)}function _o(e){const t=undefined;return Dn(e)==wr.None?null:Bn(e)}function mo(e){const t=undefined;return Dn(e)==wr.None?null:Vn(e)}function go(e){const t=undefined;return Dn(e)==wr.None?null:Hn(e)}function wo(e){const t=undefined;return Dn(e)==wr.None?null:Ln(e)}function ho(e){const t=undefined;return Dn(e)==wr.None?null:Jn(e)}function po(e){const t=undefined;return Dn(e)==wr.None?null:Gn(e)}function bo(e){const t=undefined;return Dn(e)==wr.None?null:Yn(e)}function yo(e){const t=undefined;return Dn(e)==wr.None?null:zn(e)}function vo(){return null}function Eo(e){const t=undefined;return Dn(e)===wr.None?null:qn(e)}function Ao(e,t,n,r,o,s){const i=undefined;if(Dn(e)===wr.None)return null;const a=ur(e);let c=ot(a);return null!==c&&void 0!==c||(c=(e,t,i)=>b.javaScriptExports.call_delegate(a,e,t,i,n,r,o,s),et(c,a)),c}function So(e,t,n){const r=Dn(e);if(r===wr.None)return null;if(r!==wr.Task){if(n||(n=hn.get(r)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[r]} `);const t=n(e);return new Promise((e=>e(t)))}const o=ar(e);if(0==o)return new Promise((e=>e(void 0)));const s=Ze(o);if(!!!s)throw new Error(`Assert failed: ERR28: promise not found for js_handle: ${o} `);ut(s);const i=at(s),a=i.resolve;return i.resolve=e=>{const t=Dn(e);if(t===wr.None)return a(null),void 0;if(n||(n=hn.get(t)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[t]}`);const r=n(e);a(r)},s}function Oo(e){const t=On(e,0),n=On(e,1),r=On(e,2),o=On(e,3),s=Dn(t),i=Dn(o),a=ar(r);if(0===a){const{promise:e,promise_control:r}=it(),a=undefined;if(cr(n,Qe(e)),s!==wr.None){const e=jo(t);r.reject(e)}else if(i!==wr.Task){const e=hn.get(i);if(!e)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[i]} `);const t=e(o);r.resolve(t)}}else{const e=Ze(a);if(!!!e)throw new Error(`Assert failed: ERR25: promise not found for js_handle: ${a} `);ut(e);const n=at(e);if(s!==wr.None){const e=jo(t);n.reject(e)}else i!==wr.Task&&n.resolve(o)}Cn(n,wr.Task),Cn(t,wr.None)}function xo(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=fr(e);try{const e=undefined;return xr(n)}finally{n.release()}}function jo(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSException){const t=undefined,n=undefined;return Ze(ar(e))}const n=ur(e);let r=ot(n);if(null===r||void 0===r){const t=xo(e);r=new ManagedError(t),et(r,n)}return r}function $o(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=undefined,r=undefined;return Ze(ar(e))}function No(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSObject){const t=undefined,n=undefined;return Ze(ar(e))}if(t==wr.Array){const t=undefined;return To(e,Un(e))}if(t==wr.Object){const t=ur(e);if(0===t)return null;let n=ot(t);return n||(n=new ManagedObject,et(n,t)),n}const n=hn.get(t);if(!n)throw new Error(`Assert failed: Unknow converter for type ${wr[t]}`);return n(e)}function ko(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=undefined;return To(e,kn(t))}function To(e,t){const n=undefined;if(Dn(e)==wr.None)return null;const r=undefined;if(!(-1!=mr(t)))throw new Error(`Assert failed: Element type ${wr[t]} not supported`);const s=zn(e),i=_r(e);let a=null;if(t==wr.String){a=new Array(i);for(let e=0;e>2,(s>>2)+i).slice()}else{if(t!=wr.Double)throw new Error(`NotImplementedException ${wr[t]} `);{const e=undefined;a=o.HEAPF64.subarray(s>>3,(s>>3)+i).slice()}}return o._free(s),a}function Ro(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new Span(r,o,0);else if(n==wr.Int32)s=new Span(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new Span(r,o,2)}return s}function Mo(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new ArraySegment(r,o,0);else if(n==wr.Int32)s=new ArraySegment(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new ArraySegment(r,o,2)}const i=undefined;return et(s,ur(e)),s}let Io,Do;const Uo={};function Co(e){Io=e.mono,Do=e.binding}const Po=Symbol.for("wasm type");function Wo(e){return new Promise((t=>setTimeout(t,e)))}const Fo=it(),Bo=it();let Vo=0,Ho=0,zo=0,Lo=0;const Jo=[],qo=Object.create(null);let Go=0,Yo;const Zo={"js-module-threads":true},Xo={dotnetwasm:true},Qo={"js-module-threads":true,dotnetwasm:true};function Ko(e){var t;const n=null===(t=b.config.assets)||void 0===t?void 0:t.find((t=>t.behavior==e));if(!n)throw new Error(`Assert failed: Can't find asset for ${e}`);return n.resolvedUrl||(n.resolvedUrl=os(n,"")),n}async function es(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_download_assets"),b.maxParallelDownloads=b.config.maxParallelDownloads||b.maxParallelDownloads;try{const e=[];for(const t of b.config.assets){const n=t;if(Qo[n.behavior]||Lo++,!Zo[n.behavior]){const t=Xo[n.behavior];if(zo++,n.pendingDownload){n.pendingDownloadInternal=n.pendingDownload;const r=async()=>{const e=await n.pendingDownloadInternal.response;return t||(n.buffer=await e.arrayBuffer()),++Vo,{asset:n,buffer:n.buffer}};e.push(r())}else{const r=async()=>(n.buffer=await ts(n,!t),{asset:n,buffer:n.buffer});e.push(r())}}}Bo.promise_control.resolve();const t=[];for(const n of e)t.push((async()=>{const e=await n,t=e.asset;if(e.buffer){if(!Qo[t.behavior]){const n=t.pendingDownloadInternal.url,r=new Uint8Array(t.buffer);t.pendingDownloadInternal=null,t.pendingDownload=null,t.buffer=null,e.buffer=null,await lc.promise,is(t,n,r)}}else{const e=undefined;if(Xo[t.behavior])Xo[t.behavior]&&++Vo;else{if(!t.isOptional)throw new Error("Assert failed: Expected asset to have the downloaded buffer");Zo[t.behavior]||zo--,Qo[t.behavior]||Lo--}}})());Promise.all(t).then((()=>{Fo.promise_control.resolve()})).catch((e=>{o.printErr("MONO_WASM: Error in mono_download_assets: "+e),bc(e,true)}))}catch(e){throw o.printErr("MONO_WASM: Error in mono_download_assets: "+e),e}}async function ts(e,t){try{return await ns(e,t)}catch(n){if(c||a)throw n;if(e.pendingDownload&&e.pendingDownloadInternal==e.pendingDownload)throw n;if(e.resolvedUrl&&-1!=e.resolvedUrl.indexOf("file://"))throw n;if(n&&404==n.status)throw n;e.pendingDownloadInternal=void 0,await Bo.promise;try{return await ns(e,t)}catch(n){return e.pendingDownloadInternal=void 0,await Wo(100),await ns(e,t)}}}async function ns(e,t){for(;Yo;)await Yo.promise;try{++Go,Go==b.maxParallelDownloads&&(b.diagnosticTracing&&console.debug("MONO_WASM: Throttling further parallel downloads"),Yo=it());const n=await rs(e);if(!t||!n)return;const r=await n.arrayBuffer();return++Vo,r}finally{if(--Go,Yo&&Go==b.maxParallelDownloads-1){b.diagnosticTracing&&console.debug("MONO_WASM: Resuming more parallel downloads");const e=Yo;Yo=void 0,e.promise_control.resolve()}}}async function rs(e){if(e.buffer){const t=e.buffer;return e.buffer=null,e.pendingDownloadInternal={url:"undefined://"+e.name,name:e.name,response:Promise.resolve({arrayBuffer:()=>t,headers:{get:()=>{}}})},e.pendingDownloadInternal.response}if(e.pendingDownloadInternal&&e.pendingDownloadInternal.response){const t=undefined;return await e.pendingDownloadInternal.response}const t=e.loadRemote&&b.config.remoteSources?b.config.remoteSources:[""];let n;for(let r of t){r=r.trim(),"./"===r&&(r="");const t=os(e,r);e.name===t?b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}'`):b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}' for ${e.name}`);try{const r=ss({name:e.name,resolvedUrl:t,hash:e.hash,behavior:e.behavior});if(e.pendingDownloadInternal=r,n=await r.response,!n.ok)continue;return n}catch(e){continue}}const r=e.isOptional||e.name.match(/\.pdb$/)&&b.config.ignorePdbLoadErrors;if(!n)throw new Error(`Assert failed: Response undefined ${e.name}`);if(r)return o.print(`MONO_WASM: optional download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`),void 0;{const t=new Error(`MONO_WASM: download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`);throw t.status=n.status,t}}function os(e,t){if(!(null!==t&&void 0!==t))throw new Error(`Assert failed: sourcePrefix must be provided for ${e.name}`);let n;const r=b.config.assemblyRootFolder;if(e.resolvedUrl)n=e.resolvedUrl;else{if(""===t)if("assembly"===e.behavior||"pdb"===e.behavior)n=r?r+"/"+e.name:e.name;else if("resource"===e.behavior){const t=e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name;n=r?r+"/"+t:t}else n=e.name;else n=t+e.name;n=b.locateFile(n)}if(!(n&&"string"==typeof n))throw new Error("Assert failed: attemptUrl need to be path or url string");return n}function ss(e){try{if("function"===typeof o.downloadResource){const t=o.downloadResource(e);if(t)return t}const t={};e.hash&&(t.integrity=e.hash);const n=b.fetch_like(e.resolvedUrl,t);return{name:e.name,url:e.resolvedUrl,response:n}}catch(t){const n={ok:false,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(n)}}}function is(e,t,n){b.diagnosticTracing&&console.debug(`MONO_WASM: Loaded:${e.name} as ${e.behavior} size ${n.length} from ${t}`);const r="string"===typeof e.virtualPath?e.virtualPath:e.name;let s=null;switch(e.behavior){case"dotnetwasm":case"js-module-threads":break;case"resource":case"assembly":case"pdb":Jo.push({url:t,file:r});case"heap":case"icu":s=tn(n),qo[r]=[s,n.length];break;case"vfs":{const e=r.lastIndexOf("/");let t=e>0?r.substr(0,e):null,s=e>0?r.substr(e+1):r;s.startsWith("/")&&(s=s.substr(1)),t?(b.diagnosticTracing&&console.debug(`MONO_WASM: Creating directory '${t}'`),o.FS_createPath("/",t,true,true)):t="/",b.diagnosticTracing&&console.debug(`MONO_WASM: Creating file '${s}' in directory '${t}'`),cs(n,t)||o.FS_createDataFile(t,s,n,true,true,true);break}default:throw new Error(`Unrecognized asset behavior:${e.behavior}, for asset ${e.name}`)}if("assembly"===e.behavior){const e=undefined;if(!M.mono_wasm_add_assembly(r,s,n.length)){const e=Jo.findIndex((e=>e.file==r));Jo.splice(e,1)}}else"icu"===e.behavior?fe(s)||o.printErr(`MONO_WASM: Error loading ICU asset ${e.name}`):"resource"===e.behavior&&M.mono_wasm_add_satellite_assembly(r,e.culture||"",s,n.length);++Ho}async function as(e,t,n){if(!(e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response))throw new Error("Assert failed: Can't load dotnet.wasm");const r=await e.pendingDownloadInternal.response,o=r.headers&&r.headers.get?r.headers.get("Content-Type"):void 0;let s,i;if("function"===typeof WebAssembly.instantiateStreaming&&"application/wasm"===o){b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module streaming");const e=await WebAssembly.instantiateStreaming(r,t);s=e.instance,i=e.module}else{u&&"application/wasm"!==o&&console.warn('MONO_WASM: WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await r.arrayBuffer();b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module buffered");const n=await WebAssembly.instantiate(e,t);s=n.instance,i=n.module}n(s,i)}function cs(e,t){if(e.length<8)return false;const n=new DataView(e.buffer),r=undefined;if(1651270004!=n.getUint32(0,true))return false;const s=n.getUint32(4,true);if(0==s||e.length{const t=e[0],n=t.lastIndexOf("/"),r=t.slice(0,n+1);a.add(r)})),a.forEach((e=>{o.FS_createPath(t,e,true,true)}));for(const n of i){const r=n[0],s=n[1],i=e.slice(0,s);o.FS_createDataFile(t,r,i,true,true),e=e.slice(s)}return true}async function us(){if(await Fo.promise,b.config.assets){if(!(Vo==zo))throw new Error(`Assert failed: Expected ${zo} assets to be downloaded, but only finished ${Vo}`);if(!(Ho==Lo))throw new Error(`Assert failed: Expected ${Lo} assets to be in memory, but only instantiated ${Ho}`);Jo.forEach((e=>Io.loaded_files.push(e.url))),b.diagnosticTracing&&console.debug("MONO_WASM: all assets are loaded in wasm memory")}}function ls(){return Io.loaded_files}let fs,_s;function ds(e){const t=o;"undefined"===typeof globalThis.performance&&(globalThis.performance=gs),"undefined"===typeof globalThis.URL&&(globalThis.URL=class e{constructor(e){this.url=e}toString(){return this.url}});const n=t.imports=o.imports||{},r=e=>t=>{const n=o.imports[t];return n||e(t)};n.require?b.requirePromise=e.requirePromise=Promise.resolve(r(n.require)):e.require?b.requirePromise=e.requirePromise=Promise.resolve(r(e.require)):e.requirePromise?b.requirePromise=e.requirePromise.then((e=>r(e))):b.requirePromise=e.requirePromise=Promise.resolve(r((e=>{throw new Error(`Please provide Module.imports.${e} or Module.imports.require`)}))),b.scriptDirectory=e.scriptDirectory=bs(e),t.mainScriptUrlOrBlob=e.scriptUrl,t.__locateFile===t.locateFile?t.locateFile=b.locateFile=e=>Es(e)?e:b.scriptDirectory+e:b.locateFile=t.locateFile,n.fetch?e.fetch=b.fetch_like=n.fetch:e.fetch=b.fetch_like=ws,e.noExitRuntime=u;const s=e.updateGlobalBufferAndViews;e.updateGlobalBufferAndViews=e=>{s(e),en(e)}}async function ms(){if(a){if(s.require=await b.requirePromise,globalThis.performance===gs){const{performance:e}=s.require("perf_hooks");globalThis.performance=e}if(globalThis.crypto||(globalThis.crypto={}),!globalThis.crypto.getRandomValues){let e;try{e=s.require("node:crypto")}catch(e){}e?e.webcrypto?globalThis.crypto=e.webcrypto:e.randomBytes&&(globalThis.crypto.getRandomValues=t=>{t&&t.set(e.randomBytes(t.length))}):globalThis.crypto.getRandomValues=()=>{throw new Error("Using node without crypto support. To enable current operation, either provide polyfill for 'globalThis.crypto.getRandomValues' or enable 'node:crypto' module.")}}}}const gs={now:function(){return Date.now()}};async function ws(e,t){try{if(a){if(!fs){const e=await b.requirePromise;_s=e("url"),fs=e("fs")}e.startsWith("file://")&&(e=_s.fileURLToPath(e));const t=await fs.promises.readFile(e);return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(t)}}if("function"===typeof globalThis.fetch)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"===typeof read){const t=new Uint8Array(read(e,"binary"));return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(o.UTF8ArrayToString(t,0,t.length))}}}catch(t){return{ok:false,url:e,status:500,statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}}}throw new Error("No fetch implementation available")}function hs(e){return e.replace(/\\/g,"/").replace(/[?#].*/,"")}function ps(e){return e.slice(0,e.lastIndexOf("/"))+"/"}function bs(e){return l&&(e.scriptUrl=self.location.href),e.scriptUrl||(e.scriptUrl="./dotnet.js"),e.scriptUrl=hs(e.scriptUrl),ps(e.scriptUrl)}const ys=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,vs=/[a-zA-Z]:[\\/]/;function Es(e){return a||c?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||vs.test(e):ys.test(e)}function As(e,t,n,r,o,s){const i=ln(e),a=ln(t),c=ln(s);try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const t=xr(i),o=xr(a);b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSImport] ${t} from ${o}`);const s=xs(t,o),u=Mn(n),l={fn:s,marshal_exception_to_cs:eo,signature:n},f="_bound_js_"+t.replace(/\./g,"_");let _=`//# sourceURL=https://dotnet.generated.invalid/${f} \n`,d="",m="",g="";for(let e=0;e{const o=await n;return r&&(Ms.set(e,o),b.diagnosticTracing&&console.debug(`MONO_WASM: imported ES6 module '${e}' from '${t}'`)),o}))}function Ds(e,t){let n="unknown exception";if(t){n=t.toString();const e=t.stack;e&&(e.startsWith(n)?n=e:n+="\n"+e),n=Oe(n)}return e&&o.setValue(e,1,"i32"),n}function Us(e,t,n){const r=undefined;kr(Ds(e,t),n)}const Cs=new Map;function Ps(e,t,n,r,s){const i=ln(e),a=ln(s),c=o;try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const r=Mn(n),o=xr(i);if(!o)throw new Error("Assert failed: fully_qualified_name must be string");b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSExport] ${o}`);const{assembly:s,namespace:u,classname:l,methodname:f}=Hs(o),_=be(s);if(!_)throw new Error("Could not find assembly: "+s);const d=M.mono_wasm_assembly_find_class(_,u,l);if(!d)throw new Error("Could not find class: "+u+":"+l+" in assembly "+s);const m=`__Wrapper_${f}_${t}`,g=M.mono_wasm_assembly_find_method(d,m,-1);if(!g)throw new Error(`Could not find method: ${m} in ${d} [${s}]`);const w={method:g,signature:n,stackSave:c.stackSave,stackRestore:c.stackRestore,alloc_stack_frame:Sn,invoke_method_and_handle_exception:Ws},h="_bound_cs_"+`${u}_${l}_${f}`.replace(/\./g,"_").replace(/\//g,"_");let p=`//# sourceURL=https://dotnet.generated.invalid/${h} \n`,y="",v="";for(let e=0;e{const o=e.stackSave();try{const s=Sn(4),i=On(s,1),a=On(s,2),c=On(s,3);Lr(a,t),n&&0==n.length&&(n=void 0),oo(c,n,wr.String),Ws(r,s);const u=So(i,void 0,go);return u||Promise.resolve(0)}finally{e.stackRestore(o)}},b.javaScriptExports.release_js_owned_object_by_gc_handle=t=>{if(!t)throw new Error("Assert failed: Must be valid gc_handle");const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Object),lr(o,t),Ws(s,r)}finally{e.stackRestore(n)}},b.javaScriptExports.create_task_callback=()=>{const t=e.stackSave();try{const n=Sn(2);Ws(i,n);const r=undefined;return ur(On(n,1))}finally{e.stackRestore(t)}},b.javaScriptExports.complete_task=(t,n,r,o)=>{const s=e.stackSave();try{const i=Sn(5),c=On(i,2);Cn(c,wr.Object),lr(c,t);const u=On(i,3);if(n)eo(u,n);else{Cn(u,wr.None);const e=On(i,4);if(!o)throw new Error("Assert failed: res_converter missing");o(e,r)}Ws(a,i)}finally{e.stackRestore(s)}},b.javaScriptExports.call_delegate=(t,n,r,o,s,i,a,u)=>{const l=e.stackSave();try{const f=Sn(6),_=On(f,2);if(Cn(_,wr.Object),lr(_,t),i){const e=undefined;i(On(f,3),n)}if(a){const e=undefined;a(On(f,4),r)}if(u){const e=undefined;u(On(f,5),o)}if(Ws(c,f),s){const e=undefined;return s(On(f,1))}}finally{e.stackRestore(l)}},b.javaScriptExports.get_managed_stack_trace=t=>{const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Exception),lr(o,t),Ws(u,r);const s=undefined;return xo(On(r,1))}finally{e.stackRestore(n)}},n&&(b.javaScriptExports.install_synchronization_context=()=>{const t=e.stackSave();try{const r=Sn(2);Ws(n,r)}finally{e.stackRestore(t)}},f||b.javaScriptExports.install_synchronization_context())}function Ls(e){const t=M.mono_wasm_assembly_find_method(b.runtime_interop_exports_class,e,-1);if(!t)throw"Can't find method "+b.runtime_interop_namespace+"."+b.runtime_interop_exports_classname+"."+e;return t}function Js(e,t,n,r,o,s,i){const a=ln(i);try{const s=undefined;Qs(qs(e,t,n,r,o),a,true)}catch(e){Us(s,String(e),a)}finally{a.release()}}function qs(e,t,n,r,o){let s=null;switch(o){case 5:s=new Int8Array(n-t);break;case 6:s=new Uint8Array(n-t);break;case 7:s=new Int16Array(n-t);break;case 8:s=new Uint16Array(n-t);break;case 9:s=new Int32Array(n-t);break;case 10:s=new Uint32Array(n-t);break;case 13:s=new Float32Array(n-t);break;case 14:s=new Float64Array(n-t);break;case 15:s=new Uint8ClampedArray(n-t);break;default:throw new Error("Unknown array type "+o)}return Gs(s,e,t,n,r),s}function Gs(e,t,n,r,s){if(Ys(e)&&e.BYTES_PER_ELEMENT){if(s!==e.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+e.BYTES_PER_ELEMENT+"' sizeof managed element: '"+s+"'");let i=(r-n)*s;const a=e.length*e.BYTES_PER_ELEMENT;i>a&&(i=a);const c=undefined,u=n*s;return new Uint8Array(e.buffer,0,i).set(o.HEAPU8.subarray(t+u,t+u+i)),i}throw new Error("Object '"+e+"' is not a typed array")}function Ys(e){return"undefined"!==typeof SharedArrayBuffer?e.buffer instanceof ArrayBuffer||e.buffer instanceof SharedArrayBuffer:e.buffer instanceof ArrayBuffer}function Zs(e,t,n){switch(true){case null===t:case"undefined"===typeof t:return n.clear(),void 0;case"symbol"===typeof t:case"string"===typeof t:return Xi._create_uri_ref(t,n.address),void 0;default:return Ks(e,t,n),void 0}}function Xs(e){const t=fn();try{return Qs(e,t,false),t.value}finally{t.release()}}function Qs(e,t,n){if(T(t))throw new Error("Expected (value, WasmRoot, boolean)");switch(true){case null===e:case"undefined"===typeof e:return t.clear(),void 0;case"number"===typeof e:{let n;return(0|e)===e?(Rt(Uo._box_buffer,e),n=Uo._class_int32):e>>>0===e?($t(Uo._box_buffer,e),n=Uo._class_uint32):(Wt(Uo._box_buffer,e),n=Uo._class_double),M.mono_wasm_box_primitive_ref(n,Uo._box_buffer,8,t.address),void 0}case"string"===typeof e:return kr(e,t),void 0;case"symbol"===typeof e:return Nr(e,t),void 0;case"boolean"===typeof e:return Ot(Uo._box_buffer,e),M.mono_wasm_box_primitive_ref(Uo._class_boolean,Uo._box_buffer,4,t.address),void 0;case true===ft(e):return si(e,t),void 0;case"Date"===e.constructor.name:return Xi._create_date_time_ref(e.getTime(),t.address),void 0;default:return Ks(n,e,t),void 0}}function Ks(e,t,n){if(n.clear(),null!==t&&"undefined"!==typeof t){if(void 0!==t[Ge]){const e=undefined;return Ei(nt(t),n.address),void 0}if(t[Ye]&&(ai(t[Ye],e,n.address),n.value||delete t[Ye]),!n.value){const r=t[Po],o="undefined"===typeof r?0:r,s=Qe(t);Xi._create_cs_owned_proxy_ref(s,o,e?1:0,n.address)}}}function ei(e){const t=e.length*e.BYTES_PER_ELEMENT,n=o._malloc(t),r=new Uint8Array(o.HEAPU8.buffer,n,t);return r.set(new Uint8Array(e.buffer,e.byteOffset,t)),r}function ti(e,t){if(!Ys(e)||!e.BYTES_PER_ELEMENT)throw new Error("Object '"+e+"' is not a typed array");{const n=e[Po],r=ei(e);M.mono_wasm_typed_array_new_ref(r.byteOffset,e.length,e.BYTES_PER_ELEMENT,n,t.address),o._free(r.byteOffset)}}function ni(e){const t=fn();try{return ti(e,t),t.value}finally{t.release()}}function ri(e,t,n){if("number"!==typeof e)throw new Error(`Expected numeric value for enum argument, got '${e}'`);return 0|e}function oi(e,t,n){const r=fn();t?M.mono_wasm_string_array_new_ref(e.length,r.address):M.mono_wasm_obj_array_new_ref(e.length,r.address);const o=fn(0),s=r.address,i=o.address;try{for(let r=0;r{Xi._set_tcs_result_ref(r,e)}),(e=>{Xi._set_tcs_failure(r,e?e.toString():"")})).finally((()=>{Ke(n),tt(o,r)})),Xi._get_tcs_task_ref(r,t.address),{then_js_handle:n}}function ii(e,t,n){const r=ln(n);try{const n=Ze(e);if(T(n))return Us(t,"ERR06: Invalid JS object handle '"+e+"'",r),void 0;ti(n,r)}catch(e){Us(t,String(e),r)}finally{r.release()}}function ai(e,t,n){if(0===e||e===x)return Rt(n,0),void 0;Xi._get_cs_owned_object_by_js_handle_ref(e,t?1:0,n)}const ci=Symbol.for("wasm delegate_invoke");function ui(e){if(0===e)return;const t=fn(e);try{return di(t)}finally{t.release()}}function li(e){const t=undefined,n=undefined;return Ze(Xi._get_cs_owned_object_js_handle_ref(e.address,0))}function fi(e,t,n,r){switch(t){case 0:return null;case 26:case 27:throw new Error("int64 not available");case 3:case 29:return xr(e);case 4:throw new Error("no idea on how to unbox value types");case 5:return hi(e);case 6:return yi(e);case 7:return vi(e);case 10:case 11:case 12:case 13:case 14:case 15:case 16:case 17:case 18:throw new Error("Marshaling of primitive arrays are not supported.");case 20:return new Date(Xi._get_date_value_ref(e.address));case 21:return Xi._object_to_string_ref(e.address);case 22:return Xi._object_to_string_ref(e.address);case 23:return li(e);case 30:return;default:throw new Error(`no idea on how to unbox object of MarshalType ${t} at offset ${e.value} (root address is ${e.address})`)}}function _i(e,t,n){if(t>=512)throw new Error(`Got marshaling error ${t} when attempting to unbox object at address ${e.value} (root located at ${e.address})`);let r=0;if((4===t||7==t)&&(r=Ht(n),r<1024))throw new Error(`Got invalid MonoType ${r} for object at address ${e.value} (root located at ${e.address})`);return fi(e,t)}function di(e){if(0===e.value)return;const t=Uo._unbox_buffer,n=M.mono_wasm_try_unbox_primitive_and_get_type_ref(e.address,t,Uo._unbox_buffer_size);switch(n){case 1:return Jt(t);case 25:return Ht(t);case 32:return Ht(t);case 24:return Zt(t);case 2:return Xt(t);case 8:return 0!==Jt(t);case 28:return String.fromCharCode(Jt(t));case 0:return null;default:return _i(e,n,t)}}function mi(e){if(0===e)return null;const t=fn(e);try{return wi(t)}finally{t.release()}}function gi(e){return Xi._is_simple_array_ref(e.address)}function wi(e){if(0===e.value)return null;const t=e.address,n=fn(),r=n.address;try{const o=M.mono_wasm_array_length(e.value),s=new Array(o);for(let e=0;ett(n,t),{promise:o,promise_control:s}=it(r,r);n=o,Xi._setup_js_cont_ref(e.address,s),et(n,t)}return n}function vi(e){if(0===e.value)return null;const t=Xi._try_get_cs_owned_object_js_handle_ref(e.address,0);if(t){if(t===x)throw new Error("Cannot access a disposed JSObject at "+e.value);return Ze(t)}const n=Xi._get_js_owned_object_gc_handle_ref(e.address);let r=ot(n);return T(r)&&(r=new ManagedObject,et(r,n)),r}function Ei(e,t){if(!e)return Rt(t,0),void 0;Xi._get_js_owned_object_by_gc_handle_ref(e,t)}const Ai=new Map;function Si(e,t,n,r,s,i,a){Et(),o.stackRestore(a),"object"===typeof r&&(r.clear(),null!==t&&null===t.scratchResultRoot?t.scratchResultRoot=r:r.release()),"object"===typeof s&&(s.clear(),null!==t&&null===t.scratchExceptionRoot?t.scratchExceptionRoot=s:s.release()),"object"===typeof i&&(i.clear(),null!==t&&null===t.scratchThisArgRoot?t.scratchThisArgRoot=i:i.release())}function Oi(e,t){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const n=`${e}-${t}`;let r=Ai.get(n);if(void 0===r){const o=Gi(e);"undefined"===typeof t&&(t=Yi(o,void 0)),r=Li(o,t,false,e),Ai.set(n,r)}return r}function xi(e,t){const n=Me(e);"string"!==typeof t&&(t=Yi(n,void 0));const r=Li(n,t,false,"_"+e+"__entrypoint");return async function(...e){return e.length>0&&Array.isArray(e[0])&&(e[0]=oi(e[0],true,false)),r(...e)}}function ji(e,t,n){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");return t||(t=[[]]),xi(e,n)(...t)}function $i(e,t,n,r,o){const s=ln(n),i=ln(t),a=ln(o);try{const t=xr(i);if(!t||"string"!==typeof t)return Us(r,"ERR12: Invalid method name object @"+i.value,a),void 0;const n=Xe(e);if(T(n))return Us(r,"ERR13: Invalid JS object handle '"+e+"' while invoking '"+t+"'",a),void 0;const o=wi(s);try{const e=n[t];if("undefined"===typeof e)throw new Error("Method: '"+t+"' not found for: '"+Object.prototype.toString.call(n)+"'");const r=undefined;Qs(e.apply(n,o),a,true)}catch(e){Us(r,e,a)}}finally{s.release(),i.release(),a.release()}}function Ni(e,t,n,r){const o=ln(t),s=ln(r);try{const t=xr(o);if(!t)return Us(n,"Invalid property name object '"+o.value+"'",s),void 0;const r=Ze(e);if(T(r))return Us(n,"ERR01: Invalid JS object handle '"+e+"' while geting '"+t+"'",s),void 0;const i=undefined;Qs(r[t],s,true)}catch(e){Us(n,e,s)}finally{s.release(),o.release()}}function ki(e,t,n,r,o,s,i){const a=ln(n),c=ln(t),u=ln(i);try{const n=xr(c);if(!n)return Us(s,"Invalid property name object '"+t+"'",u),void 0;const i=Ze(e);if(T(i))return Us(s,"ERR02: Invalid JS object handle '"+e+"' while setting '"+n+"'",u),void 0;let l=false;const f=di(a);if(r)i[n]=f,l=true;else{if(l=false,!r&&!Object.prototype.hasOwnProperty.call(i,n))return Qs(false,u,false),void 0;true===o?Object.prototype.hasOwnProperty.call(i,n)&&(i[n]=f,l=true):(i[n]=f,l=true)}Qs(l,u,false)}catch(e){Us(s,e,u)}finally{u.release(),c.release(),a.release()}}function Ti(e,t,n,r){const o=ln(r);try{const r=Ze(e);if(T(r))return Us(n,"ERR03: Invalid JS object handle '"+e+"' while getting ["+t+"]",o),void 0;const s=undefined;Qs(r[t],o,true)}catch(e){Us(n,e,o)}finally{o.release()}}function Ri(e,t,n,r,o){const s=ln(n),i=ln(o);try{const n=Ze(e);if(T(n))return Us(r,"ERR04: Invalid JS object handle '"+e+"' while setting ["+t+"]",i),void 0;const o=di(s);n[t]=o,i.clear()}catch(e){Us(r,e,i)}finally{i.release(),s.release()}}function Mi(e,t,n){const r=ln(e),i=ln(n);try{const e=xr(r);let n;if(n=e?"Module"==e?o:"INTERNAL"==e?s:globalThis[e]:globalThis,null===n||void 0===typeof n)return Us(t,"Global object '"+e+"' not found.",i),void 0;Qs(n,i,true)}catch(e){Us(t,e,i)}finally{i.release(),r.release()}}function Ii(e,t,n,r,o){try{const e=globalThis.Blazor;if(!e)throw new Error("The blazor.webassembly.js library is not loaded.");return e._internal.invokeJSFromDotNet(t,n,r,o)}catch(t){const n=t.message+"\n"+t.stack,r=fn();return kr(n,r),r.copy_to_address(e),r.release(),0}}const Di=/[^A-Za-z0-9_$]/g,Ui=new Map,Ci=new Map,Pi=new Map;function Wi(e,t,n,r){let o=null,s=null,i=null;if(r){i=Object.keys(r),s=new Array(i.length);for(let e=0,t=i.length;e{e&&"AbortError"!==e.name&&o.printErr("MONO_WASM: Error in http_wasm_abort_response: "+e)}))}function sa(e,t,n,r,o,s,i,a){const c=undefined,u=undefined;return ia(e,t,n,r,o,s,new Span(i,a,0).slice())}function ia(e,t,n,r,o,s,i){if(!(e&&"string"===typeof e))throw new Error("Assert failed: expected url string");if(!(t&&n&&Array.isArray(t)&&Array.isArray(n)&&t.length===n.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");if(!(r&&o&&Array.isArray(r)&&Array.isArray(o)&&r.length===o.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");const a=new Headers;for(let e=0;e{const t=await fetch(e,c);return t.__abort_controller=s,t}))}function aa(e){if(!e.__headerNames){e.__headerNames=[],e.__headerValues=[];const t=e.headers.entries();for(const n of t)e.__headerNames.push(n[0]),e.__headerValues.push(n[1])}}function ca(e){return aa(e),e.__headerNames}function ua(e){return aa(e),e.__headerValues}function la(e){return _t((async()=>{const t=await e.arrayBuffer();return e.__buffer=t,e.__source_offset=0,t.byteLength}))}function fa(e,t){if(!e.__buffer)throw new Error("Assert failed: expected resoved arrayBuffer");if(e.__source_offset==e.__buffer.byteLength)return 0;const n=new Uint8Array(e.__buffer,e.__source_offset);t.set(n,0);const r=Math.min(t.byteLength,n.byteLength);return e.__source_offset+=r,r}function _a(e,t,n){const r=new Span(t,n,0);return _t((async()=>{if(e.__reader||(e.__reader=e.body.getReader()),e.__chunk||(e.__chunk=await e.__reader.read(),e.__source_offset=0),e.__chunk.done)return 0;const t=e.__chunk.value.byteLength-e.__source_offset;if(!(t>0))throw new Error("Assert failed: expected remaining_source to be greater than 0");const n=Math.min(t,r.byteLength),o=e.__chunk.value.subarray(e.__source_offset,e.__source_offset+n);return r.set(o,0),e.__source_offset+=n,t==n&&(e.__chunk=void 0),n}))}let da=0,ma=false,ga=0,wa;if(globalThis.navigator){const e=globalThis.navigator;e.userAgentData&&e.userAgentData.brands?ma=e.userAgentData.brands.some((e=>"Chromium"==e.brand)):e.userAgent&&(ma=e.userAgent.includes("Chrome"))}function ha(){for(;ga>0;)--ga,M.mono_background_exec()}function pa(){if(!ma)return;const e=(new Date).valueOf(),t=e+36e4,n=undefined,r=1e3;for(let n=Math.max(e+1e3,da);n{M.mono_set_timeout_exec(),ga++,ha()}),n-e)}da=t}function ba(){++ga,setTimeout(ha,0)}function ya(e){function mono_wasm_set_timeout_exec(){M.mono_set_timeout_exec()}wa&&(clearTimeout(wa),wa=void 0),wa=setTimeout(mono_wasm_set_timeout_exec,e)}class va{constructor(){this.queue=[],this.offset=0}getLength(){return this.queue.length-this.offset}isEmpty(){return 0==this.queue.length}enqueue(e){this.queue.push(e)}dequeue(){if(0===this.queue.length)return;const e=this.queue[this.offset];return this.queue[this.offset]=null,2*++this.offset>=this.queue.length&&(this.queue=this.queue.slice(this.offset),this.offset=0),e}peek(){return this.queue.length>0?this.queue[this.offset]:void 0}drain(e){for(;this.getLength();){const t=undefined;e(this.dequeue())}}}const Ea=Symbol.for("wasm ws_pending_send_buffer"),Aa=Symbol.for("wasm ws_pending_send_buffer_offset"),Sa=Symbol.for("wasm ws_pending_send_buffer_type"),Oa=Symbol.for("wasm ws_pending_receive_event_queue"),xa=Symbol.for("wasm ws_pending_receive_promise_queue"),ja=Symbol.for("wasm ws_pending_open_promise"),$a=Symbol.for("wasm ws_pending_close_promises"),Na=Symbol.for("wasm ws_pending_send_promises"),ka=Symbol.for("wasm ws_is_aborted"),Ta=Symbol.for("wasm ws_receive_status_ptr");let Ra=false,Ma,Ia;const Da=65536,Ua=new Uint8Array;function Ca(e,t,n,r){if(!(e&&"string"===typeof e))throw new Error("Assert failed: ERR12: Invalid uri "+typeof e);const o=new globalThis.WebSocket(e,t||void 0),{promise_control:s}=it();o[Oa]=new va,o[xa]=new va,o[ja]=s,o[Na]=[],o[$a]=[],o[Ta]=n,o.binaryType="arraybuffer";const i=()=>{o[ka]||(s.resolve(o),pa())},a=e=>{o[ka]||(za(o,e),pa())},c=e=>{if(o.removeEventListener("message",a),o[ka])return;r&&r(e.code,e.reason),s.reject(e.reason);for(const e of o[$a])e.resolve();const t=undefined;o[xa].drain((e=>{Mt(n,0),Mt(n+4,2),Mt(n+8,1),e.resolve()}))},u=e=>{s.reject(e.message||"WebSocket error")};return o.addEventListener("message",a),o.addEventListener("open",i,{once:true}),o.addEventListener("close",c,{once:true}),o.addEventListener("error",u,{once:true}),o}function Pa(e){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const t=undefined;return e[ja].promise}function Wa(e,t,n,r,s){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const i=undefined,a=Ja(e,new Uint8Array(o.HEAPU8.buffer,t,n),r,s);return s&&a?Ha(e,a):null}function Fa(e,t,n){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");const r=e[Oa],o=e[xa],s=e.readyState;if(s!=WebSocket.OPEN&&s!=WebSocket.CLOSING)throw new Error("InvalidState: The WebSocket is not connected.");if(r.getLength()){if(!(0==o.getLength()))throw new Error("Assert failed: ERR20: Invalid WS state");return La(e,r,t,n),null}const{promise:i,promise_control:a}=it(),c=a;return c.buffer_ptr=t,c.buffer_length=n,o.enqueue(c),i}function Ba(e,t,n,r){if(!!!e)throw new Error("Assert failed: ERR19: expected ws instance");if(e.readyState==WebSocket.CLOSED)return null;if(r){const{promise:r,promise_control:o}=it();return e[$a].push(o),"string"===typeof n?e.close(t,n):e.close(t),r}return Ra||(Ra=true,console.warn("WARNING: Web browsers do not support closing the output side of a WebSocket. CloseOutputAsync has closed the socket and discarded any incoming messages.")),"string"===typeof n?e.close(t,n):e.close(t),null}function Va(e){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");e[ka]=true;const t=e[ja];t&&t.reject("OperationCanceledException");for(const t of e[$a])t.reject("OperationCanceledException");for(const t of e[Na])t.reject("OperationCanceledException");e[xa].drain((e=>{e.reject("OperationCanceledException")})),e.close(1e3,"Connection was aborted.")}function Ha(e,t){if(e.send(t),e[Ea]=null,e.bufferedAmount{if(0===e.bufferedAmount)r.resolve();else if(e.readyState!=WebSocket.OPEN)r.reject("InvalidState: The WebSocket is not connected.");else if(!r.isDone)return globalThis.setTimeout(i,s),s=Math.min(1.5*s,1e3),void 0;const t=o.indexOf(r);t>-1&&o.splice(t,1)};return globalThis.setTimeout(i,0),n}function za(e,t){const n=e[Oa],r=e[xa];if("string"===typeof t.data)void 0===Ia&&(Ia=new TextEncoder),n.enqueue({type:0,data:Ia.encode(t.data),offset:0});else{if("ArrayBuffer"!==t.data.constructor.name)throw new Error("ERR19: WebSocket receive expected ArrayBuffer");n.enqueue({type:1,data:new Uint8Array(t.data),offset:0})}if(r.getLength()&&n.getLength()>1)throw new Error("ERR21: Invalid WS state");for(;r.getLength()&&n.getLength();){const t=r.dequeue();La(e,n,t.buffer_ptr,t.buffer_length),t.resolve()}pa()}function La(e,t,n,r){const s=t.peek(),i=Math.min(r,s.data.length-s.offset);if(i>0){const e=s.data.subarray(s.offset,s.offset+i),t=undefined;new Uint8Array(o.HEAPU8.buffer,n,r).set(e,0),s.offset+=i}const a=s.data.length===s.offset?1:0;a&&t.dequeue();const c=e[Ta];Mt(c,i),Mt(c+4,s.type),Mt(c+8,a)}function Ja(e,t,n,r){let o=e[Ea],s=0;const i=t.byteLength;if(o){if(s=e[Aa],n=e[Sa],0!==i){if(s+i>o.length){const n=new Uint8Array(1.5*(s+i+50));n.set(o,0),n.subarray(s).set(t),e[Ea]=o=n}else o.subarray(s).set(t);s+=i,e[Aa]=s}}else r?0!==i&&(o=t,s=i):(0!==i&&(o=t.slice(),s=i,e[Aa]=s,e[Ea]=o),e[Sa]=n);if(r){if(0==s||null==o)return Ua;if(0===n){void 0===Ma&&(Ma=new TextDecoder("utf-8",{fatal:false}));const e="undefined"!==typeof SharedArrayBuffer&&o instanceof SharedArrayBuffer?o.slice(0,s):o.subarray(0,s);return Ma.decode(e)}return o.subarray(0,s)}return null}function qa(){return{mono_wasm_exit:e=>{o.printErr("MONO_WASM: early exit "+e)},mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression,mono_method_resolve:Gi,mono_intern_string:jr,logging:void 0,mono_wasm_stringify_as_error_with_stack:xe,mono_wasm_get_loaded_files:ls,mono_wasm_send_dbg_command_with_parms:q,mono_wasm_send_dbg_command:G,mono_wasm_get_dbg_command_info:Y,mono_wasm_get_details:ie,mono_wasm_release_object:ce,mono_wasm_call_function_on:oe,mono_wasm_debugger_resume:Z,mono_wasm_detach_debugger:X,mono_wasm_raise_debug_event:K,mono_wasm_change_debugger_log_level:Q,mono_wasm_debugger_attached:te,mono_wasm_runtime_is_ready:b.mono_wasm_runtime_is_ready,get_property:$s,set_property:js,has_property:Ns,get_typeof_property:ks,get_global_this:Ts,get_dotnet_instance:()=>_,dynamic_import:Is,mono_wasm_cancel_promise:dt,ws_wasm_create:Ca,ws_wasm_open:Pa,ws_wasm_send:Wa,ws_wasm_receive:Fa,ws_wasm_close:Ba,ws_wasm_abort:Va,http_wasm_supports_streaming_response:ta,http_wasm_create_abort_controler:na,http_wasm_abort_request:ra,http_wasm_abort_response:oa,http_wasm_fetch:ia,http_wasm_fetch_bytes:sa,http_wasm_get_response_header_names:ca,http_wasm_get_response_header_values:ua,http_wasm_get_response_bytes:fa,http_wasm_get_response_length:la,http_wasm_get_streamed_response_bytes:_a}}function Ga(e){Object.assign(e,{mono_wasm_exit:M.mono_wasm_exit,mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression})}function Ya(){return{mono_wasm_setenv:xc,mono_wasm_load_bytes_into_heap:tn,mono_wasm_load_icu_data:fe,mono_wasm_runtime_ready:mono_wasm_runtime_ready,mono_wasm_load_data_archive:cs,mono_wasm_load_config:Rc,mono_load_runtime_and_bcl_args:Dc,mono_wasm_new_root_buffer:un,mono_wasm_new_root:fn,mono_wasm_new_external_root:ln,mono_wasm_release_roots:_n,mono_run_main:Re,mono_run_main_and_exit:Te,mono_wasm_add_assembly:null,mono_wasm_load_runtime:kc,config:b.config,loaded_files:[],setB32:Ot,setI8:kt,setI16:Tt,setI32:Mt,setI52:Dt,setU52:Ut,setI64Big:Ct,setU8:xt,setU16:jt,setU32:Nt,setF32:Pt,setF64:Wt,getB32:Ft,getI8:zt,getI16:Lt,getI32:Jt,getI52:qt,getU52:Gt,getI64Big:Yt,getU8:Bt,getU16:Vt,getU32:Ht,getF32:Zt,getF64:Xt}}function Za(e){Object.assign(e,{mono_wasm_add_assembly:M.mono_wasm_add_assembly})}function Xa(){return{bind_static_method:Oi,call_assembly_entry_point:ji,mono_obj_array_new:null,mono_obj_array_set:null,js_string_to_mono_string:Mr,js_typed_array_to_array:ni,mono_array_to_js_array:mi,js_to_mono_obj:Xs,conv_string:Or,unbox_mono_obj:ui,mono_obj_array_new_ref:null,mono_obj_array_set_ref:null,js_string_to_mono_string_root:kr,js_typed_array_to_array_root:ti,js_to_mono_obj_root:Qs,conv_string_root:xr,unbox_mono_obj_root:di,mono_array_root_to_js_array:wi}}function Qa(e){Object.assign(e,{mono_obj_array_new:M.mono_wasm_obj_array_new,mono_obj_array_set:M.mono_wasm_obj_array_set,mono_obj_array_new_ref:M.mono_wasm_obj_array_new_ref,mono_obj_array_set_ref:M.mono_wasm_obj_array_set_ref})}function Ka(){}async function ec(){return console.warn("MONO_WASM: ignoring diagnostics options because this runtime does not support diagnostics"),void 0}let tc,nc=false,rc=false;const oc=it(),sc=it(),ic=it(),ac=it(),cc=it(),uc=it(),lc=it(),fc=it(),_c=it();function dc(e,t){const n=e.instantiateWasm,r=e.preInit?"function"===typeof e.preInit?[e.preInit]:e.preInit:[],o=e.preRun?"function"===typeof e.preRun?[e.preRun]:e.preRun:[],s=e.postRun?"function"===typeof e.postRun?[e.postRun]:e.postRun:[],i=e.onRuntimeInitialized?e.onRuntimeInitialized:()=>{};rc=!e.configSrc&&(!e.config||!e.config.assets||-1==e.config.assets.findIndex((e=>"assembly"===e.behavior))),e.instantiateWasm=(e,t)=>mc(e,t,n),e.preInit=[()=>gc(r)],e.preRun=[()=>wc(o)],e.onRuntimeInitialized=()=>hc(i),e.postRun=[()=>pc(s)],e.ready.then((async()=>{await _c.promise,oc.promise_control.resolve(t)})).catch((e=>{oc.promise_control.reject(e)})),e.ready=oc.promise,e.onAbort||(e.onAbort=()=>Ie)}function mc(e,t,n){if(o.configSrc||o.config||n||o.print("MONO_WASM: configSrc nor config was specified"),tc=o.config?b.config=o.config:b.config=o.config={},b.diagnosticTracing=!!tc.diagnosticTracing,n){const r=undefined;return n(e,((e,n)=>{ic.promise_control.resolve(),t(e,n)}))}return $c(e,t),[]}function gc(e){o.addRunDependency("mono_pre_init");try{yc(),b.diagnosticTracing&&console.debug("MONO_WASM: preInit"),ac.promise_control.resolve(),e.forEach((e=>e()))}catch(e){throw Oc("MONO_WASM: user preInint() failed",e),bc(e,true),e}(async()=>{try{await vc(),rc||await Ec()}catch(e){throw bc(e,true),e}cc.promise_control.resolve(),o.removeRunDependency("mono_pre_init")})()}async function wc(e){o.addRunDependency("mono_pre_run_async"),await ic.promise,await cc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: preRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback preRun() failed",e),bc(e,true),e}uc.promise_control.resolve(),o.removeRunDependency("mono_pre_run_async")}async function hc(e){await uc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: onRuntimeInitialized"),lc.promise_control.resolve();try{rc||(await us(),await Ac()),tc.runtimeOptions&&jc(tc.runtimeOptions);try{e()}catch(e){throw Oc("MONO_WASM: user callback onRuntimeInitialized() failed",e),e}await Sc()}catch(e){throw Oc("MONO_WASM: onRuntimeInitializedAsync() failed",e),bc(e,true),e}fc.promise_control.resolve()}async function pc(e){await fc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: postRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback posRun() failed",e),bc(e,true),e}_c.promise_control.resolve()}function bc(e,t){b.diagnosticTracing&&console.trace("MONO_WASM: abort_startup"),oc.promise_control.reject(e),ic.promise_control.reject(e),ac.promise_control.reject(e),cc.promise_control.reject(e),uc.promise_control.reject(e),lc.promise_control.reject(e),fc.promise_control.reject(e),_c.promise_control.reject(e),t&&De(1,e)}function yc(){o.addRunDependency("mono_wasm_pre_init_essential"),b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential"),I(),Ga(s),Za(Io),Qa(Do),o.removeRunDependency("mono_wasm_pre_init_essential")}async function vc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential_async"),o.addRunDependency("mono_wasm_pre_init_essential_async"),await ms(),await Rc(o.configSrc),o.removeRunDependency("mono_wasm_pre_init_essential_async")}async function Ec(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_full"),o.addRunDependency("mono_wasm_pre_init_full"),await es(),o.removeRunDependency("mono_wasm_pre_init_full")}async function Ac(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_before_user_runtime_initialized");try{await Nc(),de(),b.mono_wasm_load_runtime_done||kc("unused",tc.debugLevel),b.mono_wasm_runtime_is_ready||mono_wasm_runtime_ready(),b.mono_wasm_symbols_are_ready||ke("dotnet.js.symbols"),setTimeout((()=>{Ar.init_fields()}))}catch(e){throw Oc("MONO_WASM: Error in mono_wasm_before_user_runtime_initialized",e),e}}async function Sc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_after_user_runtime_initialized");try{if(!o.disableDotnet6Compatibility&&o.exports){const e=globalThis;for(let t=0;tb.config,setHeapB32:Ot,setHeapU8:xt,setHeapU16:jt,setHeapU32:Nt,setHeapI8:kt,setHeapI16:Tt,setHeapI32:Mt,setHeapI52:Dt,setHeapU52:Ut,setHeapI64Big:Ct,setHeapF32:Pt,setHeapF64:Wt,getHeapB32:Ft,getHeapU8:Bt,getHeapU16:Vt,getHeapU32:Ht,getHeapI8:zt,getHeapI16:Lt,getHeapI32:Jt,getHeapI52:qt,getHeapU52:Gt,getHeapI64Big:Yt,getHeapF32:Zt,getHeapF64:Xt}}function Hc(){const e=undefined;return{dotnet:Bc,exit:De}}const zc=Jc,Lc=Gc;function Jc(n,o,s,i){const a=o.module,c=globalThis;g(n,o),Co(o),ds(s),Object.assign(o.mono,Ya()),Object.assign(o.binding,Xa()),Object.assign(o.internal,qa()),Object.assign(o.internal,qa());const u=Vc();if(e.__linker_exports=Wc(),Object.assign(_,{MONO:o.mono,BINDING:o.binding,INTERNAL:o.internal,IMPORTS:o.marshaled_imports,Module:a,runtimeBuildInfo:{productVersion:t,buildConfiguration:r},...u}),Object.assign(i,u),o.module.__undefinedConfig&&(a.disableDotnet6Compatibility=true,a.configSrc="./mono-config.json"),a.print||(a.print=console.log.bind(console)),a.printErr||(a.printErr=console.error.bind(console)),"undefined"===typeof a.disableDotnet6Compatibility&&(a.disableDotnet6Compatibility=true),n.isGlobal||!a.disableDotnet6Compatibility){Object.assign(a,_),a.mono_bind_static_method=(e,t)=>(console.warn("MONO_WASM: Module.mono_bind_static_method is obsolete, please use [JSExportAttribute] interop instead"),Oi(e,t));const e=(e,t)=>{if("undefined"!==typeof c[e])return;let n;Object.defineProperty(globalThis,e,{get:()=>{if(T(n)){const r=(new Error).stack,o=r?r.substr(r.indexOf("\n",8)+1):"";console.warn(`MONO_WASM: global ${e} is obsolete, please use Module.${e} instead ${o}`),n=t()}return n}})};c.MONO=o.mono,c.BINDING=o.binding,c.INTERNAL=o.internal,n.isGlobal||(c.Module=a),e("cwrap",(()=>a.cwrap)),e("addRunDependency",(()=>a.addRunDependency)),e("removeRunDependency",(()=>a.removeRunDependency))}let l;return c.getDotnetRuntime?l=c.getDotnetRuntime.__list:(c.getDotnetRuntime=e=>c.getDotnetRuntime.__list.getRuntime(e),c.getDotnetRuntime.__list=l=new qc),l.registerRuntime(_),dc(a,_),_}e.__linker_exports=null;class qc{constructor(){this.list={}}registerRuntime(e){return e.runtimeId=Object.keys(this.list).length,this.list[e.runtimeId]=Be(e),e.runtimeId}getRuntime(e){const t=this.list[e];return t?t.deref():void 0}}function Gc(e,t){w(t),Object.assign(d,Hc()),h(e)}return e.__initializeImportsAndExports=zc,e.__setEmscriptenEntrypoint=Lc,e.moduleExports=d,Object.defineProperty(e,"__esModule",{value:true}),e}({}); + +var createDotnetRuntime = (() => { + var _scriptDir = import.meta.url; + + return ( +function(createDotnetRuntime) { + createDotnetRuntime = createDotnetRuntime || {}; + +"use strict";var Module=typeof createDotnetRuntime!="undefined"?createDotnetRuntime:{};var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var require=require||undefined;var __dirname=__dirname||"";var __callbackAPI={MONO:MONO,BINDING:BINDING,INTERNAL:INTERNAL,IMPORTS:IMPORTS};if(typeof createDotnetRuntime==="function"){__callbackAPI.Module=Module={ready:Module.ready};const extension=createDotnetRuntime(__callbackAPI);if(extension.ready){throw new Error("MONO_WASM: Module.ready couldn't be redefined.")}Object.assign(Module,extension);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else if(typeof createDotnetRuntime==="object"){__callbackAPI.Module=Module={ready:Module.ready,__undefinedConfig:Object.keys(createDotnetRuntime).length===1};Object.assign(Module,createDotnetRuntime);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else{throw new Error("MONO_WASM: Can't use moduleFactory callback of createDotnetRuntime function.")}var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;err("exiting due to exception: "+toLog)}var fs;var nodePath;var requireNodeFS;if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}requireNodeFS=()=>{if(!nodePath){fs=require("fs");nodePath=require("path")}};read_=function shell_read(filename,binary){requireNodeFS();filename=nodePath["normalize"](filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror)=>{requireNodeFS();filename=nodePath["normalize"](filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",function(reason){throw reason});quit_=(status,toThrow)=>{if(keepRuntimeAlive()){process["exitCode"]=status;throw toThrow}logExceptionOnExit(toThrow);process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=function shell_read(f){return read(f)}}readBinary=function readBinary(f){let data;if(typeof readbuffer=="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data=="object");return data};readAsync=function readAsync(f,onload,onerror){setTimeout(()=>onload(readBinary(f)),0)};if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit=="function"){quit_=(status,toThrow)=>{logExceptionOnExit(toThrow);quit(status)}}if(typeof print!="undefined"){if(typeof console=="undefined")console={};console.log=print;console.warn=console.error=typeof printErr!="undefined"?printErr:print}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var POINTER_SIZE=4;function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}}function uleb128Encode(n){if(n<128){return[n]}return[n%128|128,n>>7]}function convertJsFunctionToWasm(func,sig){if(typeof WebAssembly.Function=="function"){var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64","p":"i32"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i{tempRet0=value};var getTempRet0=()=>tempRet0;var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;if(typeof WebAssembly!="object"){abort("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}function getCFunc(ident){var func=Module["_"+ident];return func}function ccall(ident,returnType,argTypes,args,opts){var toC={"string":function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret},"array":function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string"){return UTF8ToString(ret)}if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!="undefined"?new TextDecoder("utf-16le"):undefined;function allocateUTF8(str){var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8Array(str,HEAP8,ret,size);return ret}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;function keepRuntimeAlive(){return noExitRuntime}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();SOCKFS.root=FS.mount(SOCKFS,{},null);callRuntimeCallbacks(__ATINIT__)}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){{if(Module["onAbort"]){Module["onAbort"](what)}}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;if(Module["locateFile"]){wasmBinaryFile="dotnet.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}}else{wasmBinaryFile=new URL("dotnet.wasm",import.meta.url).toString()}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"env":asmLibraryArg,"wasi_snapshot_preview1":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["memory"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["__indirect_function_table"];addOnInit(Module["asm"]["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&typeof fetch=="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync().catch(readyPromiseReject);return{}}var tempDouble;var tempI64;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback(Module);continue}var func=callback.func;if(typeof func=="number"){if(callback.arg===undefined){getWasmTableEntry(func)()}else{getWasmTableEntry(func)(callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}function demangle(func){return func}function demangleAll(text){var regex=/\b_Z[\w\d_]+/g;return text.replace(regex,function(x){var y=demangle(x);return x===y?x:y+" ["+x+"]"})}function getValue(ptr,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":return HEAP8[ptr>>0];case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP32[ptr>>2];case"float":return HEAPF32[ptr>>2];case"double":return Number(HEAPF64[ptr>>3]);default:abort("invalid type for getValue: "+type)}return null}var wasmTableMirror=[];function getWasmTableEntry(funcPtr){var func=wasmTableMirror[funcPtr];if(!func){if(funcPtr>=wasmTableMirror.length)wasmTableMirror.length=funcPtr+1;wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func}function jsStackTrace(){var error=new Error;if(!error.stack){try{throw new Error}catch(e){error=e}if(!error.stack){return"(no stack trace available)"}}return error.stack.toString()}function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":HEAP8[ptr>>0]=value;break;case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;default:abort("invalid type for setValue: "+type)}}function setWasmTableEntry(idx,func){wasmTable.set(idx,func);wasmTableMirror[idx]=wasmTable.get(idx)}function ___cxa_allocate_exception(size){return _malloc(size+24)+24}var exceptionCaught=[];function exception_addRef(info){info.add_ref()}var uncaughtExceptionCount=0;function ___cxa_begin_catch(ptr){var info=new ExceptionInfo(ptr);if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(info);exception_addRef(info);return info.get_exception_ptr()}var exceptionLast=0;function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){HEAPU32[this.ptr+4>>2]=type};this.get_type=function(){return HEAPU32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAPU32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAPU32[this.ptr+8>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=prev-1;return prev===1};this.set_adjusted_ptr=function(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return HEAPU32[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}function ___cxa_free_exception(ptr){return _free(new ExceptionInfo(ptr).ptr)}function exception_decRef(info){if(info.release_ref()&&!info.get_rethrown()){var destructor=info.get_destructor();if(destructor){getWasmTableEntry(destructor)(info.excPtr)}___cxa_free_exception(info.excPtr)}}function ___cxa_end_catch(){_setThrew(0);var info=exceptionCaught.pop();exception_decRef(info);exceptionLast=0}function ___resumeException(ptr){if(!exceptionLast){exceptionLast=ptr}throw ptr}function ___cxa_find_matching_catch_3(){var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0}var info=new ExceptionInfo(thrown);info.set_adjusted_ptr(thrown);var thrownType=info.get_type();if(!thrownType){setTempRet0(0);return thrown}var typeArray=Array.prototype.slice.call(arguments);for(var i=0;ipath.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join("/"))},join2:(l,r)=>{return PATH.normalize(l+"/"+r)}};function getRandomDevice(){if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){var randomBuffer=new Uint8Array(1);return function(){crypto.getRandomValues(randomBuffer);return randomBuffer[0]}}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");return function(){return crypto_module["randomBytes"](1)[0]}}catch(e){}}return function(){abort("randomDevice")}}var PATH_FS={resolve:function(){var resolvedPath="",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i0){result=buf.slice(0,bytesRead).toString("utf-8")}else{result=null}}else if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else if(typeof readline=="function"){result=readline();if(result!==null){result+="\n"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function zeroMemory(address,size){HEAPU8.fill(0,address,address+size)}function alignMemory(size,alignment){return Math.ceil(size/alignment)*alignment}function mmapAlloc(size){size=alignMemory(size,65536);var ptr=_emscripten_builtin_memalign(65536,size);if(!ptr)return 0;zeroMemory(ptr,size);return ptr}var MEMFS={ops_table:null,mount:function(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode:function(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}if(!MEMFS.ops_table){MEMFS.ops_table={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}}}var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray:function(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage:function(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i0||position+length{path=PATH_FS.resolve(FS.cwd(),path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=PATH.normalizeArray(path.split("/").filter(p=>!!p),false);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:node=>{var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?mount+"/"+path:mount+path}path=path?node.name+"/"+path:node.name;node=node.parent}},hashName:(parentid,name)=>{var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode:node=>{var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:node=>{var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:(parent,name)=>{var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:(parent,name,mode,rdev)=>{var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:node=>{FS.hashRemoveNode(node)},isRoot:node=>{return node===node.parent},isMountpoint:node=>{return!!node.mounted},isFile:mode=>{return(mode&61440)===32768},isDir:mode=>{return(mode&61440)===16384},isLink:mode=>{return(mode&61440)===40960},isChrdev:mode=>{return(mode&61440)===8192},isBlkdev:mode=>{return(mode&61440)===24576},isFIFO:mode=>{return(mode&61440)===4096},isSocket:mode=>{return(mode&49152)===49152},flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:str=>{var flags=FS.flagModes[str];if(typeof flags=="undefined"){throw new Error("Unknown file open mode: "+str)}return flags},flagsToPermissionString:flag=>{var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions:(node,perms)=>{if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup:dir=>{var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:(dir,name)=>{try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:(dir,name,isdir)=>{var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:(node,flags)=>{if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:(fd_start=0,fd_end=FS.MAX_OPEN_FDS)=>{for(var fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:fd=>FS.streams[fd],createStream:(stream,fd_start,fd_end)=>{if(!FS.FSStream){FS.FSStream=function(){this.shared={}};FS.FSStream.prototype={object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}},flags:{get:function(){return this.shared.flags},set:function(val){this.shared.flags=val}},position:{get function(){return this.shared.position},set:function(val){this.shared.position=val}}}}stream=Object.assign(new FS.FSStream,stream);var fd=FS.nextfd(fd_start,fd_end);stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:fd=>{FS.streams[fd]=null},chrdev_stream_ops:{open:stream=>{var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:()=>{throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice:(dev,ops)=>{FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts:mount=>{var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:(populate,callback)=>{if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work")}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:(type,opts,mountpoint)=>{var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:mountpoint=>{var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:(parent,name)=>{return parent.node_ops.lookup(parent,name)},mknod:(path,mode,dev)=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:(path,mode)=>{mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:(path,mode)=>{mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:(path,mode)=>{var dirs=path.split("/");var d="";for(var i=0;i{if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink:(oldpath,newpath)=>{if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename:(old_path,new_path)=>{var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name)}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir:path=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink:path=>{var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat:(path,dontFollow)=>{var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat:path=>{return FS.stat(path,true)},chmod:(path,mode,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod:(path,mode)=>{FS.chmod(path,mode,true)},fchmod:(fd,mode)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chmod(stream.node,mode)},chown:(path,uid,gid,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown:(path,uid,gid)=>{FS.chown(path,uid,gid,true)},fchown:(fd,uid,gid)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chown(stream.node,uid,gid)},truncate:(path,len)=>{if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate:(fd,len)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime:(path,atime,mtime)=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open:(path,flags,mode)=>{if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS.modeStringToFlags(flags):flags;mode=typeof mode=="undefined"?438:mode;if(flags&64){mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close:stream=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed:stream=>{return stream.fd===null},llseek:(stream,offset,whence)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read:(stream,buffer,offset,length,position)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write:(stream,buffer,offset,length,position,canOwn)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate:(stream,offset,length)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap:(stream,length,position,prot,flags)=>{if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync:(stream,buffer,offset,length,mmapFlags)=>{if(!stream||!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},munmap:stream=>0,ioctl:(stream,cmd,arg)=>{if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile:(path,opts={})=>{opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error('Invalid encoding type "'+opts.encoding+'"')}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile:(path,data,opts={})=>{opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir:path=>{var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories:()=>{FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices:()=>{FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var random_device=getRandomDevice();FS.createDevice("/dev","random",random_device);FS.createDevice("/dev","urandom",random_device);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories:()=>{FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount:()=>{var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup:(parent,name)=>{var fd=+name;var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams:()=>{if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},ensureErrnoError:()=>{if(FS.ErrnoError)return;FS.ErrnoError=function ErrnoError(errno,node){this.node=node;this.setErrno=function(errno){this.errno=errno};this.setErrno(errno);this.message="FS error"};FS.ErrnoError.prototype=new Error;FS.ErrnoError.prototype.constructor=FS.ErrnoError;[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack=""})},staticInit:()=>{FS.ensureErrnoError();FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={"MEMFS":MEMFS}},init:(input,output,error)=>{FS.init.initialized=true;FS.ensureErrnoError();Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit:()=>{FS.init.initialized=false;for(var i=0;i{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode},findObject:(path,dontResolveLastLink)=>{var ret=FS.analyzePath(path,dontResolveLastLink);if(ret.exists){return ret.object}else{return null}},analyzePath:(path,dontResolveLastLink)=>{try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath:(parent,path,canRead,canWrite)=>{parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile:(parent,name,properties,canRead,canWrite)=>{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile:(parent,name,data,canRead,canWrite,canOwn)=>{var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS.getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open:stream=>{stream.seekable=false},close:stream=>{if(output&&output.buffer&&output.buffer.length){output(10)}},read:(stream,buffer,offset,length,pos)=>{var bytesRead=0;for(var i=0;i{for(var i=0;i{if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else if(read_){try{obj.contents=intArrayFromString(read_(obj.url),true);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}else{throw new Error("Cannot load without read() or XMLHttpRequest.")}},createLazyFile:(parent,name,url,canRead,canWrite)=>{function LazyUint8Array(){this.lengthKnown=false;this.chunks=[]}LazyUint8Array.prototype.get=function LazyUint8Array_get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}else{return intArrayFromString(xhr.responseText||"",true)}};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency("cp "+fullname);function processData(byteArray){function finish(byteArray){if(preFinish)preFinish();if(!dontCreateFile){FS.createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}if(onload)onload();removeRunDependency(dep)}if(Browser.handledByPreloadPlugin(byteArray,fullname,finish,()=>{if(onerror)onerror();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,byteArray=>processData(byteArray),onerror)}else{processData(url)}},indexedDB:()=>{return window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB},DB_NAME:()=>{return"EM_FS_"+window.location.pathname},DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=()=>{out("creating db");var db=openRequest.result;db.createObjectStore(FS.DB_STORE_NAME)};openRequest.onsuccess=()=>{var db=openRequest.result;var transaction=db.transaction([FS.DB_STORE_NAME],"readwrite");var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var putRequest=files.put(FS.analyzePath(path).object.contents,path);putRequest.onsuccess=()=>{ok++;if(ok+fail==total)finish()};putRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror},loadFilesFromDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=onerror;openRequest.onsuccess=()=>{var db=openRequest.result;try{var transaction=db.transaction([FS.DB_STORE_NAME],"readonly")}catch(e){onerror(e);return}var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var getRequest=files.get(path);getRequest.onsuccess=()=>{if(FS.analyzePath(path).exists){FS.unlink(path)}FS.createDataFile(PATH.dirname(path),PATH.basename(path),getRequest.result,true,true,true);ok++;if(ok+fail==total)finish()};getRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt:function(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=FS.getStream(dirfd);if(!dirstream)throw new FS.ErrnoError(8);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat:function(func,path,buf){try{var stat=func(path)}catch(e){if(e&&e.node&&PATH.normalize(path)!==PATH.normalize(FS.getPath(e.node))){return-54}throw e}HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=0;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAP32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;HEAP32[buf+32>>2]=0;tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1];HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;HEAP32[buf+56>>2]=stat.atime.getTime()/1e3|0;HEAP32[buf+60>>2]=0;HEAP32[buf+64>>2]=stat.mtime.getTime()/1e3|0;HEAP32[buf+68>>2]=0;HEAP32[buf+72>>2]=stat.ctime.getTime()/1e3|0;HEAP32[buf+76>>2]=0;tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+80>>2]=tempI64[0],HEAP32[buf+84>>2]=tempI64[1];return 0},doMsync:function(addr,stream,len,flags,offset){var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}var SOCKFS={mount:function(mount){Module["websocket"]=Module["websocket"]&&"object"===typeof Module["websocket"]?Module["websocket"]:{};Module["websocket"]._callbacks={};Module["websocket"]["on"]=function(event,callback){if("function"===typeof callback){this._callbacks[event]=callback}return this};Module["websocket"].emit=function(event,param){if("function"===typeof this._callbacks[event]){this._callbacks[event].call(this,param)}};return FS.createNode(null,"/",16384|511,0)},createSocket:function(family,type,protocol){type&=~526336;var streaming=type==1;if(streaming&&protocol&&protocol!=6){throw new FS.ErrnoError(66)}var sock={family:family,type:type,protocol:protocol,server:null,error:null,peers:{},pending:[],recv_queue:[],sock_ops:SOCKFS.websocket_sock_ops};var name=SOCKFS.nextname();var node=FS.createNode(SOCKFS.root,name,49152,0);node.sock=sock;var stream=FS.createStream({path:name,node:node,flags:2,seekable:false,stream_ops:SOCKFS.stream_ops});sock.stream=stream;return sock},getSocket:function(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll:function(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl:function(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read:function(stream,buffer,offset,length,position){var sock=stream.node.sock;var msg=sock.sock_ops.recvmsg(sock,length);if(!msg){return 0}buffer.set(msg.buffer,offset);return msg.buffer.length},write:function(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close:function(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname:function(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer:function(sock,addr,port){var ws;if(typeof addr=="object"){ws=addr;addr=null;port=null}if(ws){if(ws._socket){addr=ws._socket.remoteAddress;port=ws._socket.remotePort}else{var result=/ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url);if(!result){throw new Error("WebSocket URL must be in the format ws(s)://address:port")}addr=result[1];port=parseInt(result[2],10)}}else{try{var runtimeConfig=Module["websocket"]&&"object"===typeof Module["websocket"];var url="ws:#".replace("#","//");if(runtimeConfig){if("string"===typeof Module["websocket"]["url"]){url=Module["websocket"]["url"]}}if(url==="ws://"||url==="wss://"){var parts=addr.split("/");url=url+parts[0]+":"+port+"/"+parts.slice(1).join("/")}var subProtocols="binary";if(runtimeConfig){if("string"===typeof Module["websocket"]["subprotocol"]){subProtocols=Module["websocket"]["subprotocol"]}}var opts=undefined;if(subProtocols!=="null"){subProtocols=subProtocols.replace(/^ +| +$/g,"").split(/ *, */);opts=subProtocols}if(runtimeConfig&&null===Module["websocket"]["subprotocol"]){subProtocols="null";opts=undefined}var WebSocketConstructor;if(ENVIRONMENT_IS_NODE){WebSocketConstructor=require("ws")}else{WebSocketConstructor=WebSocket}ws=new WebSocketConstructor(url,opts);ws.binaryType="arraybuffer"}catch(e){throw new FS.ErrnoError(23)}}var peer={addr:addr,port:port,socket:ws,dgram_send_queue:[]};SOCKFS.websocket_sock_ops.addPeer(sock,peer);SOCKFS.websocket_sock_ops.handlePeerEvents(sock,peer);if(sock.type===2&&typeof sock.sport!="undefined"){peer.dgram_send_queue.push(new Uint8Array([255,255,255,255,"p".charCodeAt(0),"o".charCodeAt(0),"r".charCodeAt(0),"t".charCodeAt(0),(sock.sport&65280)>>8,sock.sport&255]))}return peer},getPeer:function(sock,addr,port){return sock.peers[addr+":"+port]},addPeer:function(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer:function(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents:function(sock,peer){var first=true;var handleOpen=function(){Module["websocket"].emit("open",sock.stream.fd);try{var queued=peer.dgram_send_queue.shift();while(queued){peer.socket.send(queued);queued=peer.dgram_send_queue.shift()}}catch(e){peer.socket.close()}};function handleMessage(data){if(typeof data=="string"){var encoder=new TextEncoder;data=encoder.encode(data)}else{assert(data.byteLength!==undefined);if(data.byteLength==0){return}else{data=new Uint8Array(data)}}var wasfirst=first;first=false;if(wasfirst&&data.length===10&&data[0]===255&&data[1]===255&&data[2]===255&&data[3]===255&&data[4]==="p".charCodeAt(0)&&data[5]==="o".charCodeAt(0)&&data[6]==="r".charCodeAt(0)&&data[7]==="t".charCodeAt(0)){var newport=data[8]<<8|data[9];SOCKFS.websocket_sock_ops.removePeer(sock,peer);peer.port=newport;SOCKFS.websocket_sock_ops.addPeer(sock,peer);return}sock.recv_queue.push({addr:peer.addr,port:peer.port,data:data});Module["websocket"].emit("message",sock.stream.fd)}if(ENVIRONMENT_IS_NODE){peer.socket.on("open",handleOpen);peer.socket.on("message",function(data,isBinary){if(!isBinary){return}handleMessage(new Uint8Array(data).buffer)});peer.socket.on("close",function(){Module["websocket"].emit("close",sock.stream.fd)});peer.socket.on("error",function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])})}else{peer.socket.onopen=handleOpen;peer.socket.onclose=function(){Module["websocket"].emit("close",sock.stream.fd)};peer.socket.onmessage=function peer_socket_onmessage(event){handleMessage(event.data)};peer.socket.onerror=function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll:function(sock){if(sock.type===1&&sock.server){return sock.pending.length?64|1:0}var mask=0;var dest=sock.type===1?SOCKFS.websocket_sock_ops.getPeer(sock,sock.daddr,sock.dport):null;if(sock.recv_queue.length||!dest||dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=64|1}if(!dest||dest&&dest.socket.readyState===dest.socket.OPEN){mask|=4}if(dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=16}return mask},ioctl:function(sock,request,arg){switch(request){case 21531:var bytes=0;if(sock.recv_queue.length){bytes=sock.recv_queue[0].data.length}HEAP32[arg>>2]=bytes;return 0;default:return 28}},close:function(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i>2]=value;return value}function inetNtop4(addr){return(addr&255)+"."+(addr>>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255)}function inetNtop6(ints){var str="";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part="";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str="::ffff:";str+=v4part;return str}if(parts[5]===0){str="::";if(v4part==="0.0.0.0")v4part="";if(v4part==="0.0.0.1")v4part="1";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word>1];var port=_ntohs(HEAPU16[sa+2>>1]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=HEAP32[sa+4>>2];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[HEAP32[sa+8>>2],HEAP32[sa+12>>2],HEAP32[sa+16>>2],HEAP32[sa+20>>2]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family:family,addr:addr,port:port}}function inetPton4(str){var b=str.split(".");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0}function jstoi_q(str){return parseInt(str)}function inetPton6(str){var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str==="::"){return[0,0,0,0,0,0,0,0]}if(str.startsWith("::")){str=str.replace("::","Z:")}else{str=str.replace("::",":Z:")}if(str.indexOf(".")>0){str=str.replace(new RegExp("[.]","g"),":");words=str.split(":");words[words.length-4]=jstoi_q(words[words.length-4])+jstoi_q(words[words.length-3])*256;words[words.length-3]=jstoi_q(words[words.length-2])+jstoi_q(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(":")}offset=0;z=0;for(w=0;w>1]=2;return 0}case 6:case 7:return 0;case 16:case 8:return-28;case 9:setErrNo(28);return-1;default:{return-28}}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___syscall_statfs64(0,size,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function convertI32PairToI53Checked(lo,hi){return hi+2097152>>>0<4194305-!!lo?(lo>>>0)+hi*4294967296:NaN}function ___syscall_ftruncate64(fd,length_low,length_high){try{var length=convertI32PairToI53Checked(length_low,length_high);if(isNaN(length))return-61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size>>0,(tempDouble=id,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos>>2]=tempI64[0],HEAP32[dirp+pos+4>>2]=tempI64[1];tempI64=[(idx+1)*struct_size>>>0,(tempDouble=(idx+1)*struct_size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos+8>>2]=tempI64[0],HEAP32[dirp+pos+12>>2]=tempI64[1];HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18>>0]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:case 21505:{if(!stream.tty)return-59;return 0}case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:{if(!stream.tty)return-59;return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.get();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.get();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;return 0}case 21524:{if(!stream.tty)return-59;return 0}default:abort("bad ioctl syscall "+op)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~4352;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?SYSCALLS.get():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function writeSockaddr(sa,family,addr,port,addrlen){switch(family){case 2:addr=inetPton4(addr);zeroMemory(sa,16);if(addrlen){HEAP32[addrlen>>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);if(addrlen){HEAP32[addrlen>>2]=28}HEAP32[sa>>2]=family;HEAP32[sa+8>>2]=addr[0];HEAP32[sa+12>>2]=addr[1];HEAP32[sa+16>>2]=addr[2];HEAP32[sa+20>>2]=addr[3];HEAP16[sa+2>>1]=_htons(port);break;default:return 5}return 0}function ___syscall_recvfrom(fd,buf,len,flags,addr,addrlen){try{var sock=getSocketFromFD(fd);var msg=sock.sock_ops.recvmsg(sock,len);if(!msg)return 0;if(addr){var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(msg.addr),msg.port,addrlen)}HEAPU8.set(msg.buffer,buf);return msg.buffer.byteLength}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_sendto(fd,message,length,flags,addr,addr_len){try{var sock=getSocketFromFD(fd);var dest=getSocketAddress(addr,addr_len,true);if(!dest){return FS.write(sock.stream,HEAP8,message,length)}else{return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);if(!times){var atime=Date.now();var mtime=atime}else{var seconds=HEAP32[times>>2];var nanoseconds=HEAP32[times+4>>2];atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=8;seconds=HEAP32[times>>2];nanoseconds=HEAP32[times+4>>2];mtime=seconds*1e3+nanoseconds/(1e3*1e3)}FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __dlinit(main_dso_handle){}var dlopenMissingError="To use dlopen, you need enable dynamic linking, see https://github.com/emscripten-core/emscripten/wiki/Linking";function __dlopen_js(filename,flag){abort(dlopenMissingError)}function __emscripten_date_now(){return Date.now()}var nowIsMonotonic=true;function __emscripten_get_now_is_monotonic(){return nowIsMonotonic}function __gmtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}function __localtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var start=new Date(date.getFullYear(),0,1);var yday=(date.getTime()-start.getTime())/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}function __mmap_js(len,prot,flags,fd,off,allocated){try{var stream=FS.getStream(fd);if(!stream)return-8;var res=FS.mmap(stream,len,off,prot,flags);var ptr=res.ptr;HEAP32[allocated>>2]=res.allocated;return ptr}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __msync_js(addr,len,flags,fd){try{SYSCALLS.doMsync(addr,FS.getStream(fd),len,flags,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __munmap_js(addr,len,prot,flags,fd,offset){try{var stream=FS.getStream(fd);if(stream){if(prot&2){SYSCALLS.doMsync(addr,stream,len,flags,offset)}FS.munmap(stream)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function _tzset_impl(timezone,daylight,tzname){var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAP32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);function extractZone(date){var match=date.toTimeString().match(/\(([A-Za-z ]+)\)$/);return match?match[1]:"GMT"}var winterName=extractZone(winter);var summerName=extractZone(summer);var winterNamePtr=allocateUTF8(winterName);var summerNamePtr=allocateUTF8(summerName);if(summerOffset>2]=winterNamePtr;HEAPU32[tzname+4>>2]=summerNamePtr}else{HEAPU32[tzname>>2]=summerNamePtr;HEAPU32[tzname+4>>2]=winterNamePtr}}function __tzset_js(timezone,daylight,tzname){if(__tzset_js.called)return;__tzset_js.called=true;_tzset_impl(timezone,daylight,tzname)}function _abort(){abort("")}var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function(buffer,bufferLength){const needTempBuf=typeof SharedArrayBuffer!=="undefined"&&Module.HEAPU8.buffer instanceof SharedArrayBuffer;const buf=needTempBuf?new ArrayBuffer(bufferLength):Module.HEAPU8.buffer;const offset=needTempBuf?0:buffer;for(let i=0;i{var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6}}else if(typeof dateNow!="undefined"){_emscripten_get_now=dateNow}else _emscripten_get_now=()=>performance.now();function _emscripten_get_now_res(){if(ENVIRONMENT_IS_NODE){return 1}else if(typeof dateNow!="undefined"){return 1e3}else return 1e3}function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}let alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}var ENV={};function getExecutableName(){return thisProgram||"./this.program"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+"="+env[x])}getEnvStrings.strings=strings}return getEnvStrings.strings}function _environ_get(__environ,environ_buf){var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAPU32[penviron_buf_size>>2]=bufSize;return 0}function _exit(status){exit(status)}function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4;HEAP8[pbuf>>0]=type;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doReadv(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doWritev(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr}return ret}function _fd_pwrite(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt,offset);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1];if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops&&stream.stream_ops.fsync){return-stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _getTempRet0(){return getTempRet0()}function _llvm_eh_typeid_for(type){return type}function _mono_set_timeout(){return __dotnet_runtime.__linker_exports.mono_set_timeout.apply(__dotnet_runtime,arguments)}function _mono_wasm_add_dbg_command_received(){return __dotnet_runtime.__linker_exports.mono_wasm_add_dbg_command_received.apply(__dotnet_runtime,arguments)}function _mono_wasm_asm_loaded(){return __dotnet_runtime.__linker_exports.mono_wasm_asm_loaded.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_cs_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_cs_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_js_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_js_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_create_cs_owned_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_create_cs_owned_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_debugger_log(){return __dotnet_runtime.__linker_exports.mono_wasm_debugger_log.apply(__dotnet_runtime,arguments)}function _mono_wasm_fire_debugger_agent_message(){return __dotnet_runtime.__linker_exports.mono_wasm_fire_debugger_agent_message.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_global_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_global_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_bound_function(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_bound_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_blazor(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_blazor.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_with_args_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_with_args_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_marshal_promise(){return __dotnet_runtime.__linker_exports.mono_wasm_marshal_promise.apply(__dotnet_runtime,arguments)}function _mono_wasm_release_cs_owned_object(){return __dotnet_runtime.__linker_exports.mono_wasm_release_cs_owned_object.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_entrypoint_breakpoint(){return __dotnet_runtime.__linker_exports.mono_wasm_set_entrypoint_breakpoint.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_trace_logger(){return __dotnet_runtime.__linker_exports.mono_wasm_trace_logger.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_from_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_from_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_to_array_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_to_array_ref.apply(__dotnet_runtime,arguments)}function _schedule_background_exec(){return __dotnet_runtime.__linker_exports.schedule_background_exec.apply(__dotnet_runtime,arguments)}function _setTempRet0(val){setTempRet0(val)}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value=="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}else{return thisDate.getFullYear()}}else{return thisDate.getFullYear()-1}}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}else{return"PM"}},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&__isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!__isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":function(date){return date.tm_wday},"%W":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":function(date){return(date.tm_year+1900).toString().substring(2)},"%Y":function(date){return date.tm_year+1900},"%z":function(date){var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.staticInit();Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_readFile"]=FS.readFile;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_unlink"]=FS.unlink;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;let __dotnet_replacement_PThread=false?{}:undefined;if(false){__dotnet_replacement_PThread.loadWasmModuleToWorker=PThread.loadWasmModuleToWorker;__dotnet_replacement_PThread.threadInitTLS=PThread.threadInitTLS;__dotnet_replacement_PThread.allocateUnusedWorker=PThread.allocateUnusedWorker}let __dotnet_replacements={scriptUrl:import.meta.url,fetch:globalThis.fetch,require:require,updateGlobalBufferAndViews:updateGlobalBufferAndViews,pthreadReplacements:__dotnet_replacement_PThread};if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise=import("module").then(mod=>mod.createRequire(import.meta.url))}let __dotnet_exportedAPI=__dotnet_runtime.__initializeImportsAndExports({isGlobal:false,isNode:ENVIRONMENT_IS_NODE,isWorker:ENVIRONMENT_IS_WORKER,isShell:ENVIRONMENT_IS_SHELL,isWeb:ENVIRONMENT_IS_WEB,isPThread:false,quit_:quit_,ExitStatus:ExitStatus,requirePromise:__dotnet_replacements.requirePromise},{mono:MONO,binding:BINDING,internal:INTERNAL,module:Module,marshaled_imports:IMPORTS},__dotnet_replacements,__callbackAPI);updateGlobalBufferAndViews=__dotnet_replacements.updateGlobalBufferAndViews;var fetch=__dotnet_replacements.fetch;_scriptDir=__dirname=scriptDirectory=__dotnet_replacements.scriptDirectory;if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise.then(someRequire=>{require=someRequire})}var noExitRuntime=__dotnet_replacements.noExitRuntime;if(false){PThread.loadWasmModuleToWorker=__dotnet_replacements.pthreadReplacements.loadWasmModuleToWorker;PThread.threadInitTLS=__dotnet_replacements.pthreadReplacements.threadInitTLS;PThread.allocateUnusedWorker=__dotnet_replacements.pthreadReplacements.allocateUnusedWorker}var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var decodeBase64=typeof atob=="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}Module["run"]=run;function exit(status,implicit){EXITSTATUS=status;procExit(status)}function procExit(code){EXITSTATUS=code;if(!keepRuntimeAlive()){if(Module["onExit"])Module["onExit"](code);ABORT=true}quit_(code,new ExitStatus(code))}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run();createDotnetRuntime.ready=createDotnetRuntime.ready.then(()=>{return __dotnet_exportedAPI}); + + + return createDotnetRuntime.ready +} +); +})(); +export default createDotnetRuntime; +const MONO = {}, BINDING = {}, INTERNAL = {}, IMPORTS = {}; + +// TODO duplicated from emscripten, so we can use them in the __setEmscriptenEntrypoint +var ENVIRONMENT_IS_WEB = typeof window == 'object'; +var ENVIRONMENT_IS_WORKER = typeof importScripts == 'function'; +var ENVIRONMENT_IS_NODE = typeof process == 'object' && typeof process.versions == 'object' && typeof process.versions.node == 'string'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +__dotnet_runtime.__setEmscriptenEntrypoint(createDotnetRuntime, { isNode: ENVIRONMENT_IS_NODE, isShell: ENVIRONMENT_IS_SHELL, isWeb: ENVIRONMENT_IS_WEB, isWorker: ENVIRONMENT_IS_WORKER }); +const dotnet = __dotnet_runtime.moduleExports.dotnet; +const exit = __dotnet_runtime.moduleExports.exit; +export { dotnet, exit, INTERNAL }; diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.timezones.blat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.timezones.blat new file mode 100644 index 000000000..2e1c6dd61 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.timezones.blat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.wasm b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.wasm new file mode 100644 index 000000000..b48cfb421 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/dotnet.wasm differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt.dat new file mode 100644 index 000000000..54093bdd3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_CJK.dat new file mode 100644 index 000000000..118a60d56 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_CJK.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_EFIGS.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_EFIGS.dat new file mode 100644 index 000000000..e4c1c9108 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_EFIGS.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_no_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_no_CJK.dat new file mode 100644 index 000000000..87b08e08a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/icudt_no_CJK.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Imaging.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Imaging.resources.dll new file mode 100644 index 000000000..b655ce1d7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Imaging.resources.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Pdf.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Pdf.resources.dll new file mode 100644 index 000000000..13b1f8c5c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/ja/GrapeCity.Documents.Pdf.resources.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/mscorlib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/mscorlib.dll new file mode 100644 index 000000000..ee9a10e48 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/mscorlib.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/netstandard.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/netstandard.dll new file mode 100644 index 000000000..b66a993aa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/netstandard.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package-lock.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package-lock.json new file mode 100644 index 000000000..e00090918 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package-lock.json @@ -0,0 +1,889 @@ +{ + "name": "GraphSample", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "@microsoft/mgt": "^2.10.1", + "@microsoft/microsoft-graph-client": "^3.0.5" + } + }, + "node_modules/@azure/msal-browser": { + "version": "2.37.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.37.0.tgz", + "integrity": "sha512-YNGD/W/tw/5wDWlXOfmrVILaxVsorVLxYU2ovmL1PDvxkdudbQRyGk/76l4emqgDAl/kPQeqyivxjOU6w1YfvQ==", + "dependencies": { + "@azure/msal-common": "13.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-common": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.0.0.tgz", + "integrity": "sha512-GqCOg5H5bouvLij9NFXFkh+asRRxsPBRwnTDsfK7o0KcxYHJbuidKw8/VXpycahGXNxgtuhqtK/n5he+5NhyEA==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@fluentui/web-components": { + "version": "0.22.1", + "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-0.22.1.tgz", + "integrity": "sha512-dnMgBRC2vXPa8Br2DpoJG9Fj+WNDlOEtJPzXDiDZss3ddnhsd1djzOEaHoYWayqYumA6ZU2tet5qaqF2i2lqOQ==", + "dependencies": { + "@microsoft/fast-colors": "^5.1.0", + "@microsoft/fast-element": "^1.0.0", + "@microsoft/fast-foundation": "^1.16.0", + "lodash-es": "^4.17.20", + "tslib": "^1.13.0" + } + }, + "node_modules/@microsoft/fast-colors": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz", + "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + }, + "node_modules/@microsoft/fast-element": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.12.0.tgz", + "integrity": "sha512-gQutuDHPKNxUEcQ4pypZT4Wmrbapus+P9s3bR/SEOLsMbNqNoXigGImITygI5zhb+aA5rzflM6O8YWkmRbGkPA==" + }, + "node_modules/@microsoft/fast-foundation": { + "version": "1.24.8", + "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-1.24.8.tgz", + "integrity": "sha512-n4O9jPh8BBliF/Yl9FAVhrSoopsRCnva2L432s/fHwLelY9WUeswjO3DidVBFbzXD5u/gzC4LGWJScNe/ZGU4Q==", + "dependencies": { + "@microsoft/fast-element": "^1.4.0", + "@microsoft/fast-web-utilities": "^4.8.0", + "@microsoft/tsdoc-config": "^0.13.4", + "tabbable": "^5.2.0", + "tslib": "^1.13.0" + } + }, + "node_modules/@microsoft/fast-web-utilities": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-4.8.1.tgz", + "integrity": "sha512-P3xeyUwQ9nPkFrgAdmkOzaXxIq8YqMU5K+LXcoHgJddJCBCKfGWW9OZQOTigLddItTyVyfO8qsJpDQb1TskKHA==", + "dependencies": { + "exenv-es6": "^1.0.0" + }, + "peerDependencies": { + "lodash-es": "^4.17.10" + } + }, + "node_modules/@microsoft/mgt": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt/-/mgt-2.10.1.tgz", + "integrity": "sha512-6zLHXDyif6rAlua1fjcor1kMpHTzWlmgQNsQfcFhGOxi/Nxg4hlFOCqKawWdGcEHuBDs4p35/mDXJNGBgML0NA==", + "dependencies": { + "@microsoft/mgt-components": "2.10.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/mgt-proxy-provider": "2.10.1", + "@microsoft/mgt-sharepoint-provider": "2.10.1", + "@microsoft/mgt-teams-msal2-provider": "2.10.1", + "@microsoft/mgt-teams-provider": "2.10.1" + } + }, + "node_modules/@microsoft/mgt-components": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-2.10.1.tgz", + "integrity": "sha512-uw760pZGXxkll4Uury6RoWvf0y3/IJBte55ltlCz2DunPeyIcUZ3QbA2E21EebIvMlbXwgVuUx2vBXVP9yMzdw==", + "dependencies": { + "@fluentui/web-components": "0.22.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview", + "office-ui-fabric-core": "11.0.0" + } + }, + "node_modules/@microsoft/mgt-components/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-element": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-2.10.1.tgz", + "integrity": "sha512-xRyuCOahxxpWuGPrpycwfFchcGowyC7DjV8bPbjtazh6HegKE6JjGWd+X5HwIN5Wf9JduL32zoWoX/GwfSkIgg==", + "dependencies": { + "@microsoft/microsoft-graph-client": "^2.2.1", + "idb": "6.0.0", + "lit-element": "^2.4.0" + } + }, + "node_modules/@microsoft/mgt-element/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-msal-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal-provider/-/mgt-msal-provider-2.10.1.tgz", + "integrity": "sha512-G5O6iQ2z9GF1dSjX4ErMmjaNb+8xkhOI9D8A7Oo5uBMlQZJeBCJ9vhd78oBkx1OZWNCh12lxKg5r6TePYeuczw==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + } + }, + "node_modules/@microsoft/mgt-msal-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal2-provider/-/mgt-msal2-provider-2.10.1.tgz", + "integrity": "sha512-4hT5jncgcCxX0FidS497lJxobaOnXhhjsGJLvjbdeAdH1Abg3sNP1WinCJfKSNagT3kvtM0s/JdqHOIPNdk4Xw==", + "dependencies": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + } + }, + "node_modules/@microsoft/mgt-msal2-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-proxy-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-proxy-provider/-/mgt-proxy-provider-2.10.1.tgz", + "integrity": "sha512-Xl3b3+6Asie0dMtUs3CkVhy8dJ4Wp2jpBdjIF5KetC8aNZpiZwwBocowiqNPNgdBtWoYkzar27ArgHy4UD5Mvg==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + } + }, + "node_modules/@microsoft/mgt-proxy-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-sharepoint-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-2.10.1.tgz", + "integrity": "sha512-ceZl8wkZpMleq4Btgpu2P+FWiOHBI4rbdj5fXHAdF7uvj3jhR/avw3LmrjFQxuqy/skOcpU0vcCBFgi85pHkrA==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1" + } + }, + "node_modules/@microsoft/mgt-teams-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-msal2-provider/-/mgt-teams-msal2-provider-2.10.1.tgz", + "integrity": "sha512-l1BrF5jtwi6BMSFjaMu9lpuJ8KKoNDPp/vdBFDaF8ZeY9ovlW92fFTZ1wQ2DmDsyitPreHBiqzRJHb+FCscjdg==", + "dependencies": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + } + }, + "node_modules/@microsoft/mgt-teams-msal2-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-teams-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-provider/-/mgt-teams-provider-2.10.1.tgz", + "integrity": "sha512-ZO7Mk4E/fGUkEG4Ay0fMVaevvLCXQ7w7qQNO6gCO1qtnANbOm9ESa3T6diqZIR/4LhjQ1nx9mbrLIY2z/abVHQ==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + } + }, + "node_modules/@microsoft/mgt-teams-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/microsoft-graph-client": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.5.tgz", + "integrity": "sha512-xQADFNLUhE78RzYadFZtOmy/5wBZenSZhVK193m40MTDC5hl1aYMQO1QOJApnKga8WcvMCDCU10taRhuXTOz5w==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependenciesMeta": { + "@azure/identity": { + "optional": true + }, + "@azure/msal-browser": { + "optional": true + }, + "buffer": { + "optional": true + }, + "stream-browserify": { + "optional": true + } + } + }, + "node_modules/@microsoft/microsoft-graph-client/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/@microsoft/microsoft-graph-types": { + "version": "2.31.0", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.31.0.tgz", + "integrity": "sha512-ZEVraeRK3qmAs0sVenlEsoMKbNO4T960atGtZNYNWBd8MZ9KMeOF/+6HRVAYiGTRUo+WLlweMKXlDm+TDKGleQ==" + }, + "node_modules/@microsoft/microsoft-graph-types-beta": { + "version": "0.16.0-preview", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.16.0-preview.tgz", + "integrity": "sha512-73d1b8pv8YnKx+oiQtMZDSey4ohmx/cfM/vFiAa5ZyLSj4nr9y/7wIT5jTIO+tkdniyBsfN/QQeDiRwyutcxAQ==" + }, + "node_modules/@microsoft/tsdoc": { + "version": "0.12.24", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.24.tgz", + "integrity": "sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg==" + }, + "node_modules/@microsoft/tsdoc-config": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.13.9.tgz", + "integrity": "sha512-VqqZn+rT9f6XujFPFR2aN9XKF/fuir/IzKVzoxI0vXIzxysp4ee6S2jCakmlGFHEasibifFTsJr7IYmRPxfzYw==", + "dependencies": { + "@microsoft/tsdoc": "0.12.24", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/exenv-es6": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz", + "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/idb": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz", + "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA==" + }, + "node_modules/is-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/lit-element": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz", + "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==", + "dependencies": { + "lit-html": "^1.1.1" + } + }, + "node_modules/lit-html": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz", + "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/msal": { + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.18.tgz", + "integrity": "sha512-QyWMWrZqpwtK6LEqhwtbikxIWqA1EOcdMvDeIDjIXdGU29wM4orwq538sPe1+JfKDIgPmJj1Fgi5B7luaw/IyA==", + "dependencies": { + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/office-ui-fabric-core": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.0.tgz", + "integrity": "sha512-K6+KGnBXXjfSxxZpp+4oDXVLgUc//7OnXrn8F08VoJnGhEz27WUf4ZuMa32SjGoqirWlb4JlKkXbOpC9cis6dQ==" + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dependencies": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tabbable": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", + "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + } + }, + "dependencies": { + "@azure/msal-browser": { + "version": "2.37.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.37.0.tgz", + "integrity": "sha512-YNGD/W/tw/5wDWlXOfmrVILaxVsorVLxYU2ovmL1PDvxkdudbQRyGk/76l4emqgDAl/kPQeqyivxjOU6w1YfvQ==", + "requires": { + "@azure/msal-common": "13.0.0" + } + }, + "@azure/msal-common": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.0.0.tgz", + "integrity": "sha512-GqCOg5H5bouvLij9NFXFkh+asRRxsPBRwnTDsfK7o0KcxYHJbuidKw8/VXpycahGXNxgtuhqtK/n5he+5NhyEA==" + }, + "@babel/runtime": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@fluentui/web-components": { + "version": "0.22.1", + "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-0.22.1.tgz", + "integrity": "sha512-dnMgBRC2vXPa8Br2DpoJG9Fj+WNDlOEtJPzXDiDZss3ddnhsd1djzOEaHoYWayqYumA6ZU2tet5qaqF2i2lqOQ==", + "requires": { + "@microsoft/fast-colors": "^5.1.0", + "@microsoft/fast-element": "^1.0.0", + "@microsoft/fast-foundation": "^1.16.0", + "lodash-es": "^4.17.20", + "tslib": "^1.13.0" + } + }, + "@microsoft/fast-colors": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz", + "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + }, + "@microsoft/fast-element": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.12.0.tgz", + "integrity": "sha512-gQutuDHPKNxUEcQ4pypZT4Wmrbapus+P9s3bR/SEOLsMbNqNoXigGImITygI5zhb+aA5rzflM6O8YWkmRbGkPA==" + }, + "@microsoft/fast-foundation": { + "version": "1.24.8", + "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-1.24.8.tgz", + "integrity": "sha512-n4O9jPh8BBliF/Yl9FAVhrSoopsRCnva2L432s/fHwLelY9WUeswjO3DidVBFbzXD5u/gzC4LGWJScNe/ZGU4Q==", + "requires": { + "@microsoft/fast-element": "^1.4.0", + "@microsoft/fast-web-utilities": "^4.8.0", + "@microsoft/tsdoc-config": "^0.13.4", + "tabbable": "^5.2.0", + "tslib": "^1.13.0" + } + }, + "@microsoft/fast-web-utilities": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-4.8.1.tgz", + "integrity": "sha512-P3xeyUwQ9nPkFrgAdmkOzaXxIq8YqMU5K+LXcoHgJddJCBCKfGWW9OZQOTigLddItTyVyfO8qsJpDQb1TskKHA==", + "requires": { + "exenv-es6": "^1.0.0" + } + }, + "@microsoft/mgt": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt/-/mgt-2.10.1.tgz", + "integrity": "sha512-6zLHXDyif6rAlua1fjcor1kMpHTzWlmgQNsQfcFhGOxi/Nxg4hlFOCqKawWdGcEHuBDs4p35/mDXJNGBgML0NA==", + "requires": { + "@microsoft/mgt-components": "2.10.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/mgt-proxy-provider": "2.10.1", + "@microsoft/mgt-sharepoint-provider": "2.10.1", + "@microsoft/mgt-teams-msal2-provider": "2.10.1", + "@microsoft/mgt-teams-provider": "2.10.1" + } + }, + "@microsoft/mgt-components": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-2.10.1.tgz", + "integrity": "sha512-uw760pZGXxkll4Uury6RoWvf0y3/IJBte55ltlCz2DunPeyIcUZ3QbA2E21EebIvMlbXwgVuUx2vBXVP9yMzdw==", + "requires": { + "@fluentui/web-components": "0.22.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview", + "office-ui-fabric-core": "11.0.0" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-element": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-2.10.1.tgz", + "integrity": "sha512-xRyuCOahxxpWuGPrpycwfFchcGowyC7DjV8bPbjtazh6HegKE6JjGWd+X5HwIN5Wf9JduL32zoWoX/GwfSkIgg==", + "requires": { + "@microsoft/microsoft-graph-client": "^2.2.1", + "idb": "6.0.0", + "lit-element": "^2.4.0" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-msal-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal-provider/-/mgt-msal-provider-2.10.1.tgz", + "integrity": "sha512-G5O6iQ2z9GF1dSjX4ErMmjaNb+8xkhOI9D8A7Oo5uBMlQZJeBCJ9vhd78oBkx1OZWNCh12lxKg5r6TePYeuczw==", + "requires": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal2-provider/-/mgt-msal2-provider-2.10.1.tgz", + "integrity": "sha512-4hT5jncgcCxX0FidS497lJxobaOnXhhjsGJLvjbdeAdH1Abg3sNP1WinCJfKSNagT3kvtM0s/JdqHOIPNdk4Xw==", + "requires": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-proxy-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-proxy-provider/-/mgt-proxy-provider-2.10.1.tgz", + "integrity": "sha512-Xl3b3+6Asie0dMtUs3CkVhy8dJ4Wp2jpBdjIF5KetC8aNZpiZwwBocowiqNPNgdBtWoYkzar27ArgHy4UD5Mvg==", + "requires": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-sharepoint-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-2.10.1.tgz", + "integrity": "sha512-ceZl8wkZpMleq4Btgpu2P+FWiOHBI4rbdj5fXHAdF7uvj3jhR/avw3LmrjFQxuqy/skOcpU0vcCBFgi85pHkrA==", + "requires": { + "@microsoft/mgt-element": "2.10.1" + } + }, + "@microsoft/mgt-teams-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-msal2-provider/-/mgt-teams-msal2-provider-2.10.1.tgz", + "integrity": "sha512-l1BrF5jtwi6BMSFjaMu9lpuJ8KKoNDPp/vdBFDaF8ZeY9ovlW92fFTZ1wQ2DmDsyitPreHBiqzRJHb+FCscjdg==", + "requires": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-teams-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-provider/-/mgt-teams-provider-2.10.1.tgz", + "integrity": "sha512-ZO7Mk4E/fGUkEG4Ay0fMVaevvLCXQ7w7qQNO6gCO1qtnANbOm9ESa3T6diqZIR/4LhjQ1nx9mbrLIY2z/abVHQ==", + "requires": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/microsoft-graph-client": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.5.tgz", + "integrity": "sha512-xQADFNLUhE78RzYadFZtOmy/5wBZenSZhVK193m40MTDC5hl1aYMQO1QOJApnKga8WcvMCDCU10taRhuXTOz5w==", + "requires": { + "@babel/runtime": "^7.12.5", + "tslib": "^2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "@microsoft/microsoft-graph-types": { + "version": "2.31.0", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.31.0.tgz", + "integrity": "sha512-ZEVraeRK3qmAs0sVenlEsoMKbNO4T960atGtZNYNWBd8MZ9KMeOF/+6HRVAYiGTRUo+WLlweMKXlDm+TDKGleQ==" + }, + "@microsoft/microsoft-graph-types-beta": { + "version": "0.16.0-preview", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.16.0-preview.tgz", + "integrity": "sha512-73d1b8pv8YnKx+oiQtMZDSey4ohmx/cfM/vFiAa5ZyLSj4nr9y/7wIT5jTIO+tkdniyBsfN/QQeDiRwyutcxAQ==" + }, + "@microsoft/tsdoc": { + "version": "0.12.24", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.24.tgz", + "integrity": "sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg==" + }, + "@microsoft/tsdoc-config": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.13.9.tgz", + "integrity": "sha512-VqqZn+rT9f6XujFPFR2aN9XKF/fuir/IzKVzoxI0vXIzxysp4ee6S2jCakmlGFHEasibifFTsJr7IYmRPxfzYw==", + "requires": { + "@microsoft/tsdoc": "0.12.24", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "exenv-es6": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz", + "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "idb": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz", + "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA==" + }, + "is-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "requires": { + "has": "^1.0.3" + } + }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "lit-element": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz", + "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==", + "requires": { + "lit-html": "^1.1.1" + } + }, + "lit-html": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz", + "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "msal": { + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.18.tgz", + "integrity": "sha512-QyWMWrZqpwtK6LEqhwtbikxIWqA1EOcdMvDeIDjIXdGU29wM4orwq538sPe1+JfKDIgPmJj1Fgi5B7luaw/IyA==", + "requires": { + "tslib": "^1.9.3" + } + }, + "office-ui-fabric-core": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.0.tgz", + "integrity": "sha512-K6+KGnBXXjfSxxZpp+4oDXVLgUc//7OnXrn8F08VoJnGhEz27WUf4ZuMa32SjGoqirWlb4JlKkXbOpC9cis6dQ==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "requires": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + }, + "tabbable": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", + "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package.json new file mode 100644 index 000000000..0f40843e0 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/package.json @@ -0,0 +1,6 @@ +{ + "dependencies": { + "@microsoft/mgt": "^2.10.1", + "@microsoft/microsoft-graph-client": "^3.0.5" + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll new file mode 100644 index 000000000..2c8f63787 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll.gz new file mode 100644 index 000000000..8707ba174 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.Core.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll new file mode 100644 index 000000000..a97c0efa8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll.gz new file mode 100644 index 000000000..22dcce5c4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AWSSDK.SecurityToken.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll new file mode 100644 index 000000000..c5019ede1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll.gz new file mode 100644 index 000000000..13cf892df Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.OpenAI.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll new file mode 100644 index 000000000..17936adff Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll.gz new file mode 100644 index 000000000..a0c3c5a5a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.AI.TextAnalytics.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll new file mode 100644 index 000000000..730ec4b53 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll.gz new file mode 100644 index 000000000..486efb6f3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Azure.Core.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll new file mode 100644 index 000000000..c86ec00ff Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll.gz new file mode 100644 index 000000000..b6e7faa73 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/AzureOpenAIClient.Http.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll new file mode 100644 index 000000000..53c55570c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll.gz new file mode 100644 index 000000000..7a94a1d69 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BlazorInputFile.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll new file mode 100644 index 000000000..8b8bad035 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll.gz new file mode 100644 index 000000000..bca5c6366 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Blazored.Modal.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll new file mode 100644 index 000000000..9265a5833 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll.gz new file mode 100644 index 000000000..4b76352d0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/BouncyCastle.Crypto.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll new file mode 100644 index 000000000..79fa1fa95 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll.gz new file mode 100644 index 000000000..ae5a8441e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ChartJSCore.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll new file mode 100644 index 000000000..39aa546ad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll.gz new file mode 100644 index 000000000..3f46cd8c5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DnsClient.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll new file mode 100644 index 000000000..1857a116d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll.gz new file mode 100644 index 000000000..ec0c14839 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/DocumentFormat.OpenXml.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll new file mode 100644 index 000000000..ae466c458 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll.gz new file mode 100644 index 000000000..62daf116f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Imaging.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll new file mode 100644 index 000000000..92224c755 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll.gz new file mode 100644 index 000000000..8753af853 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GrapeCity.Documents.Pdf.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll new file mode 100644 index 000000000..4087361e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll.gz new file mode 100644 index 000000000..ba7aa1c8e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb new file mode 100644 index 000000000..758251dcf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb.gz new file mode 100644 index 000000000..049d1a876 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/GraphSample.pdb.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 000000000..1ddfb5cf7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz new file mode 100644 index 000000000..46a2f9e87 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Authorization.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 000000000..648cd5134 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz new file mode 100644 index 000000000..784dd5897 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 000000000..d524cc4ee Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz new file mode 100644 index 000000000..382c220a0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Forms.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 000000000..4368c70bf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz new file mode 100644 index 000000000..f217c5649 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.Web.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll new file mode 100644 index 000000000..3db1b73c6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz new file mode 100644 index 000000000..25bc6f6b2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll new file mode 100644 index 000000000..8b4d59b74 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz new file mode 100644 index 000000000..f35ffb4aa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll new file mode 100644 index 000000000..9b2c61d61 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz new file mode 100644 index 000000000..7dbc5551a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Components.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 000000000..85d6c4a57 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz new file mode 100644 index 000000000..ef935d7d9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.Metadata.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 000000000..dc1e804ce Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll.gz new file mode 100644 index 000000000..0dda3925b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.AspNetCore.WebUtilities.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll new file mode 100644 index 000000000..9dce9bcfa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz new file mode 100644 index 000000000..e204a4197 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 000000000..a5b7ff99a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz new file mode 100644 index 000000000..e5759ed4d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll new file mode 100644 index 000000000..04a517768 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll.gz new file mode 100644 index 000000000..e43da26d6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.CSharp.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 000000000..058b12445 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz new file mode 100644 index 000000000..c6fee6cc1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 000000000..60441e996 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz new file mode 100644 index 000000000..a0ddb5b4b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Binder.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 000000000..def889adc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz new file mode 100644 index 000000000..c4a475e16 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 000000000..e8bdcc1d3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz new file mode 100644 index 000000000..31185e513 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.Json.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll new file mode 100644 index 000000000..fd14a9892 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz new file mode 100644 index 000000000..ede9a06bd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Configuration.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 000000000..048ba4129 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz new file mode 100644 index 000000000..8baf0ae05 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 000000000..2dcd31b5c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz new file mode 100644 index 000000000..cebbb4637 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.DependencyInjection.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 000000000..dc9b7ee37 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz new file mode 100644 index 000000000..705305507 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 000000000..b186402c6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz new file mode 100644 index 000000000..c1f8fc751 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 000000000..683ac380f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz new file mode 100644 index 000000000..32cc02a03 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 000000000..6c4181888 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz new file mode 100644 index 000000000..409841413 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll new file mode 100644 index 000000000..852830a1a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll.gz new file mode 100644 index 000000000..d5d520f4d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Http.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 000000000..41909d250 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz new file mode 100644 index 000000000..e69a99c4c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll new file mode 100644 index 000000000..f21b68bdf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz new file mode 100644 index 000000000..ac85744b4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Logging.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll new file mode 100644 index 000000000..09a4ad508 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz new file mode 100644 index 000000000..d6db1e5fc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Options.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll new file mode 100644 index 000000000..995314316 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz new file mode 100644 index 000000000..2c0acb195 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Extensions.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll new file mode 100644 index 000000000..0b16fef14 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll.gz new file mode 100644 index 000000000..9ea20ca6b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Fast.Components.FluentUI.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll new file mode 100644 index 000000000..61802fbfb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll.gz new file mode 100644 index 000000000..715a46ec7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Beta.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll new file mode 100644 index 000000000..172873770 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll.gz new file mode 100644 index 000000000..6fd854304 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.Core.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll new file mode 100644 index 000000000..cffae0f13 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll.gz new file mode 100644 index 000000000..eab27ba9e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Graph.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 000000000..5dc9e9748 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll.gz new file mode 100644 index 000000000..076bd4ef2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Abstractions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 000000000..22b2a2840 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz new file mode 100644 index 000000000..aabe6fb8d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 000000000..b96a33418 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll.gz new file mode 100644 index 000000000..2d3532369 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Logging.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 000000000..7197d3519 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz new file mode 100644 index 000000000..74bb09b2a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 000000000..7fbcdd9f6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll.gz new file mode 100644 index 000000000..473239588 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Protocols.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 000000000..b213bdce0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll.gz new file mode 100644 index 000000000..ca9a4a2b1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.IdentityModel.Tokens.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll new file mode 100644 index 000000000..fb38f8e84 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz new file mode 100644 index 000000000..b2d40d5a5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.WebAssembly.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll new file mode 100644 index 000000000..aab7b21bc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz new file mode 100644 index 000000000..738029f3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.JSInterop.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll new file mode 100644 index 000000000..a789f3626 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll.gz new file mode 100644 index 000000000..320ecad3c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Abstractions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll new file mode 100644 index 000000000..ed8ff39f7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll.gz new file mode 100644 index 000000000..cf6625325 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Authentication.Azure.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll new file mode 100644 index 000000000..fb9aa1863 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz new file mode 100644 index 000000000..89eee14e5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll new file mode 100644 index 000000000..c21ff4a5e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll.gz new file mode 100644 index 000000000..6140df868 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Form.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll new file mode 100644 index 000000000..fbf60ab04 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll.gz new file mode 100644 index 000000000..2f88b9725 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Json.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll new file mode 100644 index 000000000..d15c666ab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll.gz new file mode 100644 index 000000000..ff307ac7d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Kiota.Serialization.Text.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll new file mode 100644 index 000000000..01dec16aa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll.gz new file mode 100644 index 000000000..8e2765edc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Net.Http.Headers.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll new file mode 100644 index 000000000..c9df990e1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz new file mode 100644 index 000000000..a4e4c6a50 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.Core.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll new file mode 100644 index 000000000..79d79a381 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz new file mode 100644 index 000000000..e459afa1b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.VisualBasic.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll new file mode 100644 index 000000000..72f4b2c35 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz new file mode 100644 index 000000000..4243b3dc9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll new file mode 100644 index 000000000..529bbeff7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz new file mode 100644 index 000000000..0044b399a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Microsoft.Win32.Registry.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll new file mode 100644 index 000000000..c8980cf51 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll.gz new file mode 100644 index 000000000..5809ced8b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Bson.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll new file mode 100644 index 000000000..dc5043a21 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll.gz new file mode 100644 index 000000000..a5f3bd197 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.Core.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll new file mode 100644 index 000000000..db42ed05e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll.gz new file mode 100644 index 000000000..298a06413 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Driver.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll new file mode 100644 index 000000000..b57b81758 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll.gz new file mode 100644 index 000000000..13ad4e16f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/MongoDB.Libmongocrypt.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll new file mode 100644 index 000000000..d035c38b4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll.gz new file mode 100644 index 000000000..fb713c0c1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Newtonsoft.Json.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll new file mode 100644 index 000000000..9e491c83c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll.gz new file mode 100644 index 000000000..d6b4fe7d6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb new file mode 100644 index 000000000..547f3024f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb.gz new file mode 100644 index 000000000..14da34411 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharedModels.pdb.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll new file mode 100644 index 000000000..c1a7f0744 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll.gz new file mode 100644 index 000000000..3123b88f9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/SharpCompress.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll new file mode 100644 index 000000000..9b68e856c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll.gz new file mode 100644 index 000000000..b89fde0a2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Snappier.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll new file mode 100644 index 000000000..88359450a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll.gz new file mode 100644 index 000000000..a78162d1d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.AppContext.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll new file mode 100644 index 000000000..6e117cddb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll.gz new file mode 100644 index 000000000..89705cb32 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Buffers.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll new file mode 100644 index 000000000..68600f9af Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz new file mode 100644 index 000000000..98f5cb3db Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Concurrent.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll new file mode 100644 index 000000000..42ff9558b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll.gz new file mode 100644 index 000000000..c9726119a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Immutable.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll new file mode 100644 index 000000000..a786e0fa6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz new file mode 100644 index 000000000..aec64973c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.NonGeneric.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll new file mode 100644 index 000000000..19d0895c0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll.gz new file mode 100644 index 000000000..92b034ece Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.Specialized.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll new file mode 100644 index 000000000..5fe96d587 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll.gz new file mode 100644 index 000000000..a591af398 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Collections.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll new file mode 100644 index 000000000..817a8403d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz new file mode 100644 index 000000000..9fe38781a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Annotations.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 000000000..ae1230f3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz new file mode 100644 index 000000000..54adc7112 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.DataAnnotations.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 000000000..ec467f57c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz new file mode 100644 index 000000000..921ed3cf8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.EventBasedAsync.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll new file mode 100644 index 000000000..ac8e43602 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz new file mode 100644 index 000000000..f252e9384 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll new file mode 100644 index 000000000..f1c270e5d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz new file mode 100644 index 000000000..a7d13ee3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.TypeConverter.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll new file mode 100644 index 000000000..a18f987ca Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll.gz new file mode 100644 index 000000000..975531bab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ComponentModel.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll new file mode 100644 index 000000000..44c4babfe Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll.gz new file mode 100644 index 000000000..b4de63f44 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Configuration.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll new file mode 100644 index 000000000..649bb86f6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll.gz new file mode 100644 index 000000000..aedbd1e76 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Console.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll new file mode 100644 index 000000000..43dbcbc20 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll.gz new file mode 100644 index 000000000..130ea0354 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Core.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll new file mode 100644 index 000000000..49a2d3b5e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll.gz new file mode 100644 index 000000000..84a456cee Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.Common.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll new file mode 100644 index 000000000..c37f5144c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz new file mode 100644 index 000000000..ba0513f2e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.DataSetExtensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll new file mode 100644 index 000000000..5edabd59f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll.gz new file mode 100644 index 000000000..67c60062e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Data.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll new file mode 100644 index 000000000..6022dcafc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz new file mode 100644 index 000000000..dedf0dda2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Contracts.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll new file mode 100644 index 000000000..e3be49797 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz new file mode 100644 index 000000000..b15049b28 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Debug.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 000000000..6ebbfb40e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz new file mode 100644 index 000000000..be7c473a1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.DiagnosticSource.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 000000000..e00ee616b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz new file mode 100644 index 000000000..b7c57202d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.FileVersionInfo.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll new file mode 100644 index 000000000..d312f6aad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz new file mode 100644 index 000000000..c599b6b7c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Process.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll new file mode 100644 index 000000000..90fedf27d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz new file mode 100644 index 000000000..45825c5f7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.StackTrace.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 000000000..4dceedb74 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz new file mode 100644 index 000000000..a6e199d73 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TextWriterTraceListener.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll new file mode 100644 index 000000000..8840d760e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz new file mode 100644 index 000000000..def0edbdd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tools.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll new file mode 100644 index 000000000..8aa04ee74 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz new file mode 100644 index 000000000..5b526d4eb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.TraceSource.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll new file mode 100644 index 000000000..e192e5f20 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz new file mode 100644 index 000000000..543af01b9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Diagnostics.Tracing.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll new file mode 100644 index 000000000..f9420d62a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz new file mode 100644 index 000000000..3b6793008 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll new file mode 100644 index 000000000..6a81fbfe7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll.gz new file mode 100644 index 000000000..66220292e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Drawing.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll new file mode 100644 index 000000000..f31a2b99e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz new file mode 100644 index 000000000..19711ce43 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Dynamic.Runtime.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll new file mode 100644 index 000000000..76abc7e8b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll.gz new file mode 100644 index 000000000..16ad484a9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Asn1.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll new file mode 100644 index 000000000..85bab67ec Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll.gz new file mode 100644 index 000000000..0f83a8957 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Formats.Tar.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll new file mode 100644 index 000000000..5cbf030c2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz new file mode 100644 index 000000000..9ab6c980a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Calendars.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll new file mode 100644 index 000000000..3cf9baa98 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz new file mode 100644 index 000000000..3a52f3467 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.Extensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll new file mode 100644 index 000000000..6084688ac Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll.gz new file mode 100644 index 000000000..4757af788 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Globalization.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll new file mode 100644 index 000000000..d57490f8a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz new file mode 100644 index 000000000..0e31f24ec Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.Brotli.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll new file mode 100644 index 000000000..8000ae034 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz new file mode 100644 index 000000000..25cb1d748 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.FileSystem.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll new file mode 100644 index 000000000..3bf1c60c0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz new file mode 100644 index 000000000..ab15d34f5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.ZipFile.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll new file mode 100644 index 000000000..991a82327 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll.gz new file mode 100644 index 000000000..da85bfa1a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Compression.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 000000000..2dae9283f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz new file mode 100644 index 000000000..eac56af92 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.AccessControl.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 000000000..aee8f148d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz new file mode 100644 index 000000000..c2a578b9b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.DriveInfo.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll new file mode 100644 index 000000000..a2dccf0a4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz new file mode 100644 index 000000000..085a4bc5d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll new file mode 100644 index 000000000..f7912bec9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz new file mode 100644 index 000000000..bc93ed477 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.Watcher.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll new file mode 100644 index 000000000..dd6c782bb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll.gz new file mode 100644 index 000000000..fb616327b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.FileSystem.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll new file mode 100644 index 000000000..486d49939 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz new file mode 100644 index 000000000..1ac4535d5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.IsolatedStorage.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll new file mode 100644 index 000000000..12c945860 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz new file mode 100644 index 000000000..30ed72cde Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.MemoryMappedFiles.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll new file mode 100644 index 000000000..5460d2b3f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll.gz new file mode 100644 index 000000000..b905654d2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Packaging.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll new file mode 100644 index 000000000..cc7de0ce1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll.gz new file mode 100644 index 000000000..631250ce0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipelines.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll new file mode 100644 index 000000000..4059ec2e6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz new file mode 100644 index 000000000..35d3488bd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.AccessControl.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll new file mode 100644 index 000000000..1cb4c464c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll.gz new file mode 100644 index 000000000..06d40ba66 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.Pipes.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 000000000..901de5484 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz new file mode 100644 index 000000000..38baf3c4a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.UnmanagedMemoryStream.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll new file mode 100644 index 000000000..f5c583f88 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll.gz new file mode 100644 index 000000000..88a1a9012 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IO.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 000000000..19934cb40 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll.gz new file mode 100644 index 000000000..ae8ca4647 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.IdentityModel.Tokens.Jwt.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll new file mode 100644 index 000000000..619a95967 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll.gz new file mode 100644 index 000000000..3da0cac6c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Expressions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll new file mode 100644 index 000000000..e2887efbf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll.gz new file mode 100644 index 000000000..63bcbeb0c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Parallel.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll new file mode 100644 index 000000000..0818cb2d4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll.gz new file mode 100644 index 000000000..bcb263e26 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.Queryable.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll new file mode 100644 index 000000000..fc5990366 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll.gz new file mode 100644 index 000000000..adb1656d1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Linq.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll new file mode 100644 index 000000000..6f2a3e0ad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll.gz new file mode 100644 index 000000000..574afdeae Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.Data.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll new file mode 100644 index 000000000..ef420f782 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll.gz new file mode 100644 index 000000000..e374e801a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Memory.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll new file mode 100644 index 000000000..9c5dc7fd1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll.gz new file mode 100644 index 000000000..913a3c067 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.Json.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll new file mode 100644 index 000000000..40c4c07ff Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll.gz new file mode 100644 index 000000000..b66c41225 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Http.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll new file mode 100644 index 000000000..279b83975 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll.gz new file mode 100644 index 000000000..a88471e1d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.HttpListener.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll new file mode 100644 index 000000000..12da5a2fe Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll.gz new file mode 100644 index 000000000..fe3aa79f7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Mail.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll new file mode 100644 index 000000000..7329dc606 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll.gz new file mode 100644 index 000000000..5a161e44d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NameResolution.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll new file mode 100644 index 000000000..a0273c543 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz new file mode 100644 index 000000000..6fcaf4a7c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.NetworkInformation.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll new file mode 100644 index 000000000..e17d20e66 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll.gz new file mode 100644 index 000000000..666b33824 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Ping.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll new file mode 100644 index 000000000..855498126 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll.gz new file mode 100644 index 000000000..00df6e964 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll new file mode 100644 index 000000000..f99a72265 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll.gz new file mode 100644 index 000000000..080684180 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Quic.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll new file mode 100644 index 000000000..b624c6445 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll.gz new file mode 100644 index 000000000..368607d17 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Requests.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll new file mode 100644 index 000000000..2d0cdcd24 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll.gz new file mode 100644 index 000000000..0dfb9aa92 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Security.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll new file mode 100644 index 000000000..65d483147 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz new file mode 100644 index 000000000..53be14b0e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.ServicePoint.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll new file mode 100644 index 000000000..f9a600529 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll.gz new file mode 100644 index 000000000..5c99879ca Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.Sockets.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll new file mode 100644 index 000000000..abba87ef8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll.gz new file mode 100644 index 000000000..584db3961 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebClient.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll new file mode 100644 index 000000000..c569121df Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz new file mode 100644 index 000000000..e6162bf4a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebHeaderCollection.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll new file mode 100644 index 000000000..bd9d90c12 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll.gz new file mode 100644 index 000000000..540e2d52a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebProxy.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll new file mode 100644 index 000000000..6a65d0097 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz new file mode 100644 index 000000000..6d40cec07 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.Client.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll new file mode 100644 index 000000000..984f1e0ab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll.gz new file mode 100644 index 000000000..86250c0c9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.WebSockets.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll new file mode 100644 index 000000000..5c765d66a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll.gz new file mode 100644 index 000000000..4c44d50e9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Net.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll new file mode 100644 index 000000000..964be0537 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz new file mode 100644 index 000000000..928cfb1e6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.Vectors.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll new file mode 100644 index 000000000..8f76e4f3c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll.gz new file mode 100644 index 000000000..c746855bb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Numerics.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll new file mode 100644 index 000000000..b6f9ceff7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll.gz new file mode 100644 index 000000000..d55a1041b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ObjectModel.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll new file mode 100644 index 000000000..48e48e768 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll.gz new file mode 100644 index 000000000..762f1e641 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.CoreLib.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll new file mode 100644 index 000000000..2591b747f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz new file mode 100644 index 000000000..cb7fac90b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.DataContractSerialization.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll new file mode 100644 index 000000000..da72bdcb8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll.gz new file mode 100644 index 000000000..e81ea18e8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Uri.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll new file mode 100644 index 000000000..cd7f919d4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz new file mode 100644 index 000000000..d9a7fa4f5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.Linq.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll new file mode 100644 index 000000000..3e0ed9c58 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll.gz new file mode 100644 index 000000000..fc1d5cfb6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Private.Xml.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll new file mode 100644 index 000000000..d51db885f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz new file mode 100644 index 000000000..7d775bba1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.DispatchProxy.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 000000000..8d4088434 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz new file mode 100644 index 000000000..9d6747165 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.ILGeneration.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 000000000..cefda99a2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz new file mode 100644 index 000000000..284e2f93f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.Lightweight.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll new file mode 100644 index 000000000..d90e61ec5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll.gz new file mode 100644 index 000000000..a1513304e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Emit.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll new file mode 100644 index 000000000..0a49975c9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz new file mode 100644 index 000000000..8db056fd8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Extensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll new file mode 100644 index 000000000..5e3b88f67 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz new file mode 100644 index 000000000..8550ce916 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Metadata.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll new file mode 100644 index 000000000..2f3a7ee4c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz new file mode 100644 index 000000000..488100138 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll new file mode 100644 index 000000000..807227f01 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz new file mode 100644 index 000000000..21f943c2b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.TypeExtensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll new file mode 100644 index 000000000..559f8ed6f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll.gz new file mode 100644 index 000000000..26b257f56 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Reflection.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll new file mode 100644 index 000000000..9d0e4b1fa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll.gz new file mode 100644 index 000000000..c0ef3a932 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Reader.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll new file mode 100644 index 000000000..b99f0a372 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz new file mode 100644 index 000000000..fc92ffa50 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.ResourceManager.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll new file mode 100644 index 000000000..9f697424c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll.gz new file mode 100644 index 000000000..f78891b76 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Resources.Writer.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 000000000..b8b28fe5e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz new file mode 100644 index 000000000..26dbe540c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.Unsafe.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 000000000..a4c833d07 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz new file mode 100644 index 000000000..bc919ac15 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.CompilerServices.VisualC.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll new file mode 100644 index 000000000..f99ad6475 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz new file mode 100644 index 000000000..5b53a2a53 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Extensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll new file mode 100644 index 000000000..644253c5a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll.gz new file mode 100644 index 000000000..5ea184890 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Handles.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 000000000..bd146eaa6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.gz new file mode 100644 index 000000000..2d3e41382 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.JavaScript.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 000000000..fa0b4c8f3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz new file mode 100644 index 000000000..b9918d904 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll new file mode 100644 index 000000000..249823620 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz new file mode 100644 index 000000000..e9a371ad1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.InteropServices.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll new file mode 100644 index 000000000..e2426f378 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz new file mode 100644 index 000000000..1eee41b39 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Intrinsics.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll new file mode 100644 index 000000000..4ed7c6827 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll.gz new file mode 100644 index 000000000..ae2301f9e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Loader.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll new file mode 100644 index 000000000..42f487b3f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz new file mode 100644 index 000000000..97c6bc6f9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Numerics.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 000000000..54937f969 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz new file mode 100644 index 000000000..3767fd88f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Formatters.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll new file mode 100644 index 000000000..d3b2a9406 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz new file mode 100644 index 000000000..cfea19e43 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Json.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 000000000..b54b64b56 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz new file mode 100644 index 000000000..90e84afcd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll new file mode 100644 index 000000000..7f9710637 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz new file mode 100644 index 000000000..aa6957e6c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.Xml.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll new file mode 100644 index 000000000..dd519d85a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz new file mode 100644 index 000000000..62e58d83a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.Serialization.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll new file mode 100644 index 000000000..55c68aaf3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll.gz new file mode 100644 index 000000000..cc66c1823 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Runtime.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll new file mode 100644 index 000000000..4c5812573 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll.gz new file mode 100644 index 000000000..c115463ab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.AccessControl.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll new file mode 100644 index 000000000..4b9384d8e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll.gz new file mode 100644 index 000000000..443e9080c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Claims.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 000000000..ce4aeb6ad Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz new file mode 100644 index 000000000..165ee98e1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Algorithms.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll new file mode 100644 index 000000000..b8ca049d9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz new file mode 100644 index 000000000..518e0b994 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Cng.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll new file mode 100644 index 000000000..6742fd650 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz new file mode 100644 index 000000000..e5bad8b3f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Csp.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll new file mode 100644 index 000000000..4f6382771 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz new file mode 100644 index 000000000..dd7be1fdb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Encoding.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 000000000..8cea46393 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz new file mode 100644 index 000000000..8c1d9c111 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.OpenSsl.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll new file mode 100644 index 000000000..f37ccdcbd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz new file mode 100644 index 000000000..e4a506e97 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.Primitives.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 000000000..0dc496dd5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz new file mode 100644 index 000000000..2e8b77c82 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.X509Certificates.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll new file mode 100644 index 000000000..e77c70d44 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll.gz new file mode 100644 index 000000000..61bea88c0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Cryptography.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll new file mode 100644 index 000000000..6123f6044 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz new file mode 100644 index 000000000..8008eb57c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.Windows.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll new file mode 100644 index 000000000..1b945981b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll.gz new file mode 100644 index 000000000..a2fa082a0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.Principal.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll new file mode 100644 index 000000000..3a582326f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll.gz new file mode 100644 index 000000000..a5500ecd2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.SecureString.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll new file mode 100644 index 000000000..1a68f36f0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll.gz new file mode 100644 index 000000000..6a53aa2a2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Security.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll new file mode 100644 index 000000000..f2fe663d5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz new file mode 100644 index 000000000..032ad3fac Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceModel.Web.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll new file mode 100644 index 000000000..2dc92be7e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll.gz new file mode 100644 index 000000000..b2dcda1b9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ServiceProcess.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll new file mode 100644 index 000000000..0a24f1455 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz new file mode 100644 index 000000000..dec4a4c2c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.CodePages.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll new file mode 100644 index 000000000..0d78efac3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz new file mode 100644 index 000000000..b6ed042e0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.Extensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll new file mode 100644 index 000000000..6751cb4db Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll.gz new file mode 100644 index 000000000..b0e3255ba Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encoding.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll new file mode 100644 index 000000000..f6efbe59e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz new file mode 100644 index 000000000..31bc36798 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Encodings.Web.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll new file mode 100644 index 000000000..1058490d0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll.gz new file mode 100644 index 000000000..4c2d1858f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.Json.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll new file mode 100644 index 000000000..c2d413df6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz new file mode 100644 index 000000000..280dfbeed Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Text.RegularExpressions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll new file mode 100644 index 000000000..8b3424766 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll.gz new file mode 100644 index 000000000..0c27c81e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Channels.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll new file mode 100644 index 000000000..849f5ce02 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz new file mode 100644 index 000000000..ee7d4007e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Overlapped.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 000000000..c7fc5e3df Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz new file mode 100644 index 000000000..a026cd934 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Dataflow.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll new file mode 100644 index 000000000..98eeaab42 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz new file mode 100644 index 000000000..81ebf17d2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Extensions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll new file mode 100644 index 000000000..a53e84a9c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz new file mode 100644 index 000000000..94a6c7c21 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.Parallel.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll new file mode 100644 index 000000000..14c22864c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll.gz new file mode 100644 index 000000000..35c00acfa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Tasks.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll new file mode 100644 index 000000000..df035b39f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll.gz new file mode 100644 index 000000000..540db8533 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Thread.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll new file mode 100644 index 000000000..24e2d4d11 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz new file mode 100644 index 000000000..1e450e10c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.ThreadPool.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll new file mode 100644 index 000000000..58ba6c067 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll.gz new file mode 100644 index 000000000..e9d8511ba Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.Timer.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll new file mode 100644 index 000000000..46f1605e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll.gz new file mode 100644 index 000000000..f698867ed Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Threading.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll new file mode 100644 index 000000000..2bd46dba3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll.gz new file mode 100644 index 000000000..af517b11c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.Local.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll new file mode 100644 index 000000000..befa423e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll.gz new file mode 100644 index 000000000..2d9cae734 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Transactions.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll new file mode 100644 index 000000000..024d67a9c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll.gz new file mode 100644 index 000000000..a42bfd64e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.ValueTuple.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll new file mode 100644 index 000000000..0d8714c4e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz new file mode 100644 index 000000000..fa012d2cb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.HttpUtility.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll new file mode 100644 index 000000000..302f53c43 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll.gz new file mode 100644 index 000000000..a89006027 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Web.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll new file mode 100644 index 000000000..cc71c5d64 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll.gz new file mode 100644 index 000000000..5d100fbd2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Windows.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll new file mode 100644 index 000000000..6e46cd77a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll.gz new file mode 100644 index 000000000..c61324393 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Linq.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll new file mode 100644 index 000000000..c230b0faf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz new file mode 100644 index 000000000..019981999 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.ReaderWriter.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll new file mode 100644 index 000000000..21d796994 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll.gz new file mode 100644 index 000000000..6e0df739d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.Serialization.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll new file mode 100644 index 000000000..da4f85222 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll.gz new file mode 100644 index 000000000..cbf0c2ce4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XDocument.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll new file mode 100644 index 000000000..cb5c5218b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz new file mode 100644 index 000000000..2922cdd72 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.XDocument.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll new file mode 100644 index 000000000..287ee4529 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll.gz new file mode 100644 index 000000000..054492162 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XPath.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll new file mode 100644 index 000000000..e57ad2b93 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz new file mode 100644 index 000000000..e4ff9ad64 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlDocument.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll new file mode 100644 index 000000000..e8125f9a8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz new file mode 100644 index 000000000..aab146f67 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.XmlSerializer.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll new file mode 100644 index 000000000..8f36728e6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll.gz new file mode 100644 index 000000000..20758339b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.Xml.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll new file mode 100644 index 000000000..36a371e34 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll.gz new file mode 100644 index 000000000..d534c3db6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/System.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll new file mode 100644 index 000000000..733ef6e5c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll.gz new file mode 100644 index 000000000..fd765252d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/Tavis.UriTemplates.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll new file mode 100644 index 000000000..cd3dd5174 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll.gz new file mode 100644 index 000000000..458a44022 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/TimeZoneConverter.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll new file mode 100644 index 000000000..6047df34c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll.gz new file mode 100644 index 000000000..a9f747107 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/WindowsBase.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll new file mode 100644 index 000000000..8b4fe8260 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll.gz new file mode 100644 index 000000000..15414951e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ZstdSharp.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.boot.json b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.boot.json new file mode 100644 index 000000000..6d4766b49 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.boot.json @@ -0,0 +1,288 @@ +{ + "cacheBootResources": true, + "config": [ + "appsettings.json" + ], + "debugBuild": true, + "entryAssembly": "GraphSample", + "icuDataMode": 0, + "linkerEnabled": false, + "resources": { + "assembly": { + "AWSSDK.Core.dll": "sha256-+UpImU00F39wFSt+inE9WLBTUExntLG77AT9xvHPZXI=", + "AWSSDK.SecurityToken.dll": "sha256-P3TkEvrhuiq4K1HnQHdk6MNzra8x4cvSdJ1hHfOwlbw=", + "Azure.AI.OpenAI.dll": "sha256-T8n0WcKn3Ui\/r0U1+lkkDb7nNxhJe+TkZicE47fwkqg=", + "Azure.AI.TextAnalytics.dll": "sha256-zDB4xGMyIDmS4b7XvzWKlrSIk9+PjaKdkUbarRWQlbE=", + "Azure.Core.dll": "sha256-fYiFbau5RKj6IKlS+3Et3wUL+65zMsMwJA7d2o32LyI=", + "AzureOpenAIClient.Http.dll": "sha256-xEltVWIXqXiSXiC1+yabJK95YziEUJyVrpEx6Vsi6ag=", + "Blazored.Modal.dll": "sha256-Sr30UiM7JErBe8hojY6HAgaOOgfQE5zHijI0uVypmkM=", + "BlazorInputFile.dll": "sha256-C0KrMmLQQE68cd1+FNwIOW89nNGbOH48hRxQAoSBaaA=", + "ChartJSCore.dll": "sha256-gwwJ+\/kjTpw9Y\/nyF36HlnAZNnnaIkf6EcJEKPPdBPI=", + "DnsClient.dll": "sha256-pqqUK\/nxzj7PtSwp8HNcVX1ULYXRKP+ym0hhLNYpjsk=", + "GrapeCity.Documents.Imaging.dll": "sha256-80s7r7qVGZMWIYX7j1qcPcBV8+4kSrBBd9wY+6W1vUk=", + "GrapeCity.Documents.Pdf.dll": "sha256-+wBSnAizmMIfETLKWirKUjdBTc9AoLuV7Bqz3pbbroQ=", + "Microsoft.AspNetCore.Authorization.dll": "sha256-\/EkWRHMHBhfvvlx5hLVtXGPm8+Gyp4WkPiKKiiJIrqQ=", + "Microsoft.AspNetCore.Components.dll": "sha256-SvjxqyTqc68zPsYivPRkvjKRhUg5zYufzqwGNS83bwg=", + "Microsoft.AspNetCore.Components.Authorization.dll": "sha256-41dLN3Fx\/ysI0SP+sKtAMWTZamweRiufJ7JPqZlnXrA=", + "Microsoft.AspNetCore.Components.Forms.dll": "sha256-eoQ2CgfBGkvbK4QUMBgFDPIBqJem+g8247Fb3ZmnmCI=", + "Microsoft.AspNetCore.Components.Web.dll": "sha256-p3BQFPwUbOgu5j9V+1HlUGwDcVzB7iYNO4dIsDCOAgA=", + "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-55+LOYcA1yHHPQEjl6eI0UGgteq41y+8js6DQ5PhXDk=", + "Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": "sha256-LL+Ypy6kUg17vXDvFlVs7uG4+Ip+QdaY8llF\/DVC0\/c=", + "Microsoft.AspNetCore.Metadata.dll": "sha256-eIu14RWCV9bKCAARda4hnWGsOKJfmnGfQpkmeRnSibQ=", + "Microsoft.AspNetCore.WebUtilities.dll": "sha256-D5akJeBd7NNITuzAXxlX7zl2jfsc4uTKyeEKwwNhqoo=", + "Microsoft.Authentication.WebAssembly.Msal.dll": "sha256-M6I8rpdSyz29AfvhQusE2M7HxP83C6UjlCbXXNBs8m8=", + "Microsoft.Bcl.AsyncInterfaces.dll": "sha256-EcDo\/GQZkQrOT1Xd0jMPE3NwT5lsMq5DNsPxHVidLDQ=", + "Microsoft.Extensions.Configuration.dll": "sha256-PqQvp77oZ4+uuy2ElXk8AU9I6RfZSf18UGTrd4rulOo=", + "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-CnS3b9EMFQmETBUVEgtcron4DBsfFdcVt3zfCP6Uflg=", + "Microsoft.Extensions.Configuration.Binder.dll": "sha256-7GY9+7Cm0Z8DJ+JCFwgCx9OfFtUvXlFHaaLlBYmXfIE=", + "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-S86mGNxJnkVJ\/qolp6cBN7xwXQ\/YVtHy7QTaPO93AIA=", + "Microsoft.Extensions.Configuration.Json.dll": "sha256-k525Vc8hbMpPjxYUYZNPuzJIuy+E1Is2XRTMFbUm1pE=", + "Microsoft.Extensions.DependencyInjection.dll": "sha256-\/+vk9BsQP4bCVt1Y6aXakSztSMAli200ER6untxHLBg=", + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-jrAm+30mcWoI54hsUTOr+RMOzHIq+zO8ZuRBVrBvCoo=", + "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-Zt6OY6gg\/1Tzt9oFOQBkezPvUVkFK4dyM6Pfk+MTUvg=", + "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-9xkIbIienaRj9Td2MyWYzL9JmVx6CKbGCPrvJ1Pxfn8=", + "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-Gm0yiS5fySh2nZXdCRKZIbASK8sSukwjogLc+a9EBZY=", + "Microsoft.Extensions.Hosting.Abstractions.dll": "sha256-2qH9T9HZYBAigHr8n86fpvuaZsvJxdPdCMu5tec6Yjk=", + "Microsoft.Extensions.Http.dll": "sha256-QqjUvBFxKOeh8XX3IrmuIesFycYZMmwrhsRakmXvrXE=", + "Microsoft.Extensions.Logging.dll": "sha256-WMsuY8rhtg+vvssGFSR7ZLKhqYPAzOi538IXMoiJ6bI=", + "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-7zoKnNaWqWOrjF2eX3dFetJL+I03xqvCzORtFB4Ws08=", + "Microsoft.Extensions.Options.dll": "sha256-gcHJrSv1wTqvF9SyWTEKcbiShn4mkgfnm9+tRQr4OqY=", + "Microsoft.Extensions.Primitives.dll": "sha256-q4ruoDSCjV\/QJY9ZkzV6uxvEvZUVrDbyUjU3SSh5SlE=", + "Microsoft.Fast.Components.FluentUI.dll": "sha256-AM1swc0MWdQ008cWgP+\/qCGig6NCRCrj1UXWjhagH9k=", + "Microsoft.Graph.dll": "sha256-wHZisTU+lZHXIer25uRzCZzi1hBfV+H+31hgufwDzjg=", + "Microsoft.Graph.Beta.dll": "sha256-+22Gw67R9cVPo+yuDFgQ\/qvZP78moYdwW8th\/jg7Fww=", + "Microsoft.Graph.Core.dll": "sha256-ZgEqSt26LKpR2dQvVePfrvl\/upLdZBbiwmyI7TXFG\/Y=", + "Microsoft.IdentityModel.Abstractions.dll": "sha256-t7s0MJysE09CjR6Ug7LeooxWh6qQMvyP0BaK6owTg0A=", + "Microsoft.IdentityModel.JsonWebTokens.dll": "sha256-iOQnepr\/E4XN7m3ZPaRCHm1AkIN0fbzv9kaqAPxC0NY=", + "Microsoft.IdentityModel.Logging.dll": "sha256-R8PwspOBOtylLlhwJijr6JDM83WXCNuxcSLNOYkugEM=", + "Microsoft.IdentityModel.Protocols.dll": "sha256-Chqk48UY0+W2WrYmkz0CXA+b1jKiosBuYOrMCsPiOtQ=", + "Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": "sha256-WbnzvZq\/XQo1B5Z+1oKyjUxQ2aqNqeDyISq0xBaHxPc=", + "Microsoft.IdentityModel.Tokens.dll": "sha256-Wiph8o+JeePw4GkloTJqWzogne17szvkhrjInJkpAdQ=", + "Microsoft.JSInterop.dll": "sha256-OBt2YgODs1L5bJWrDjUFgcgGMUjDfmFTHCt9t69RxgU=", + "Microsoft.JSInterop.WebAssembly.dll": "sha256-GH0zLXwtZcak53A9656ZndP15W57wd1W0kLvKDIV+VE=", + "Microsoft.Kiota.Abstractions.dll": "sha256-XGyjS3FRRc3OQqr3wtmkCnagPvoljDLNV0Z4WxcpbkM=", + "Microsoft.Kiota.Authentication.Azure.dll": "sha256-jU5eYEFKzWgF7OWOYsJM5bEb5t8WrkBM8p7VuBv00wQ=", + "Microsoft.Kiota.Http.HttpClientLibrary.dll": "sha256-WKXOvKFrqRLnVjp\/gA0oc9l0OB8U+iN+mXdj2LeUFvM=", + "Microsoft.Kiota.Serialization.Form.dll": "sha256-6\/jk5AJnQJGNuouF52mvjJP6n6s+1opHZ0uBKONN5m8=", + "Microsoft.Kiota.Serialization.Json.dll": "sha256-CcAEXSbIJlpoe\/hF0X8VOuZSMLtEhdLf30ok3hWwBrQ=", + "Microsoft.Kiota.Serialization.Text.dll": "sha256-U9o18GdkXSXvCj1ptHww8sQL4nH8ED8iZIfX4C5iKpw=", + "Microsoft.Net.Http.Headers.dll": "sha256-P66ftDrXwc6ayND8uYzIk0CPQy1GjNZAPHx9RMhi3V4=", + "MongoDB.Bson.dll": "sha256-d3ZsdGnCH++KHoY26Z19JA1IxR9hFKWE59VDS0pGDmc=", + "MongoDB.Driver.dll": "sha256-XZXhge+o5qeM5xgV6lhHanVvNQKpth\/b0zhHSHVR\/kE=", + "MongoDB.Driver.Core.dll": "sha256-qqEfR0SnPkzUV0zmanIDmi2anLp1SyKhDFevWf2ambM=", + "MongoDB.Libmongocrypt.dll": "sha256-0IcHuoTqrHG0vWBoQq6+HxI2BSDMkAGnVwN64V5vGS8=", + "Newtonsoft.Json.dll": "sha256-IsZJ91\/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=", + "DocumentFormat.OpenXml.dll": "sha256-BDrsmnS\/9JzpRWDRRNJPdsQHMhnkIlMfqffKn0I9T4c=", + "BouncyCastle.Crypto.dll": "sha256-n7KC+76rIikEfNEJ10mSwNXh+MMbda\/f4FD9fZ8WIw4=", + "SharpCompress.dll": "sha256-g6OkB2E3tHVhjYz074TwY\/qKeHk14HgEWYjivSizy68=", + "Snappier.dll": "sha256-7+iUMbT8Ae8amaAJEgiQ8U\/p6OQqf5zp4oy2zEDxxis=", + "System.IdentityModel.Tokens.Jwt.dll": "sha256-mMRs4CYO0tK9iswmp2AS47Dfo8riHqMoxPkTdczonTw=", + "System.IO.Packaging.dll": "sha256-1NYPxd\/Znog+W3dejVSmi57hLM8eGX\/c6SIZBh\/dDRM=", + "System.IO.Pipelines.dll": "sha256-P\/MqD0fCBd5bgTM16JC1QC\/Zz7s+CwViyzmDFkBG4\/c=", + "System.Memory.Data.dll": "sha256-KTyl2GNY+yzgDaAsY+78s0Ron8DGNrYcl8PxsVqAqlE=", + "Tavis.UriTemplates.dll": "sha256-esSAQepI47ZEvrdjJKDUIkP\/+Zp\/gW65TN\/HizEItqs=", + "TimeZoneConverter.dll": "sha256-+\/jS+apdJFwJrSAk5mtpMJCNbqpKHyYTarXy\/5sfylU=", + "ZstdSharp.dll": "sha256-VKZX+de4WCoEsOirOWgSviiKvr0Z3Ujd2\/PpLOUPOaE=", + "Microsoft.CSharp.dll": "sha256-6Y1rN8knL1K5x5lsZ2tEVDND2h4LtDSuVgCg1N8ghkA=", + "Microsoft.VisualBasic.Core.dll": "sha256-LRJ4hN7opopr3bsogxcz7uyVjh4bNZOdMbVbIIQ9z+8=", + "Microsoft.VisualBasic.dll": "sha256-xkUVMleH\/xQU+9disGUzBr7fT6ckmem5\/CMscxtghD8=", + "Microsoft.Win32.Primitives.dll": "sha256-lucJz4+wGO1ZdiEthwNGGIOUtcRUsVVabMVW1gtQIMQ=", + "Microsoft.Win32.Registry.dll": "sha256-WGxv3PzEfgVp3usrYhy+MBHjJfAjodWNBQU6wbPwnis=", + "System.AppContext.dll": "sha256-7TWcUhjRPqzWr21Y2gCSBaAFyJxlc7z4owojtSWcSVI=", + "System.Buffers.dll": "sha256-D+pqpCCHBkmhRKEaV+INC98dHtA1JDcg9mWqL9Ond0Q=", + "System.Collections.Concurrent.dll": "sha256-2K\/WsDXzSv\/zr47al4KrDWT2OBs9l06gKahr5K9mwss=", + "System.Collections.Immutable.dll": "sha256-0brR0tAZlQr4KM97EMlVlNiHVDhE0EWIrE2q\/utNnY0=", + "System.Collections.NonGeneric.dll": "sha256-1PceS1QJJyR9TkHlfvUQEKGhsJ4xj5nKczaq5JM+kfs=", + "System.Collections.Specialized.dll": "sha256-fQn5UDuKsKLJLFM5oP7tV6c\/nsg4sCmcCQGD2cdOjD0=", + "System.Collections.dll": "sha256-vwimVkB+WktlZk8jST2HzG11jBQBcYI4g1uOR32VhRA=", + "System.ComponentModel.Annotations.dll": "sha256-NUD59NxxFo6ElXR4KdKYGRMeUflEmDlgpU0mZmr0JRA=", + "System.ComponentModel.DataAnnotations.dll": "sha256-LxLw+D49jEOMTd2EIBY2ah\/K9LEDEqJapMrBWvzrSWs=", + "System.ComponentModel.EventBasedAsync.dll": "sha256-2ba\/XMMymeP8SwHaOiMtpLLNw45+nA8iisGDHtzuW2s=", + "System.ComponentModel.Primitives.dll": "sha256-ra+S6YBscBNuGQRHqRBsFXMnn5Hf2LIrbJs7frsvXHA=", + "System.ComponentModel.TypeConverter.dll": "sha256-86xoWr1\/foKgp89NdwW\/sIJMnh8X6GQeQtGi2td+4OY=", + "System.ComponentModel.dll": "sha256-2u5p0jWnx5eMfQRr3n+YLoFjDFRwJf3KxghICbBP83Y=", + "System.Configuration.dll": "sha256-DxBo7aXEaQN\/RMTeWVrXeltU+jlTxKIE0MSxtgriBRY=", + "System.Console.dll": "sha256-x2R8PrlSUDcIcYa3wiFOYDo3WBJ6frGB5YdVeOu\/mh4=", + "System.Core.dll": "sha256-QU6Zi\/m0odpCw\/jmhvgflrMcgvcMjz0Qek35MPVcNCw=", + "System.Data.Common.dll": "sha256-qjkLUwub36Jnil+Mkt\/3NAy7MBFeI2YH8SLtZWKvGo0=", + "System.Data.DataSetExtensions.dll": "sha256-p+kFZC3MLQ8R42IjhsUwJakKUqkKM+a6uClvAsxwwOc=", + "System.Data.dll": "sha256-m+19eTWjPykLqlDe\/yQstXNXfewpumOqK0vaHZ0WRag=", + "System.Diagnostics.Contracts.dll": "sha256-dqfKcpJQauvOtAVBZlH9vZFg7TnQ7un3FGTjcG9hesM=", + "System.Diagnostics.Debug.dll": "sha256-1yhwgAHYEOsTk1ZE25o\/b8xrtdKZtuJnMBbHeebkfpA=", + "System.Diagnostics.DiagnosticSource.dll": "sha256-YP8hvCIj64eqULMIDKyhebV2s0TSA0lLKMmjXeJTb1I=", + "System.Diagnostics.FileVersionInfo.dll": "sha256-xLvNpGzQci45dyRBJq+FKc8WzHHrmf6VJ9kl5mvK4HI=", + "System.Diagnostics.Process.dll": "sha256-6MAKEKQinIE70XtsueWEgJ7oWQY4KKqWFsgs7DUsz5c=", + "System.Diagnostics.StackTrace.dll": "sha256-N1kt4OLEBIEt+JSmX5xQ25kxPJCsVbxvHK3xGIpzI2w=", + "System.Diagnostics.TextWriterTraceListener.dll": "sha256-hiTBz1YtFh+hXOMCVkXK1WgRZgUXbi1pesRRJ8l0A4A=", + "System.Diagnostics.Tools.dll": "sha256-Oc430NOwzVts7ZlS9ZOkLOgb5JdaXL\/qYoC3BVkrMFA=", + "System.Diagnostics.TraceSource.dll": "sha256-XA6qOo442+eAO6UnYehnVhpbs5DIrpUDeW1HlFPpXPE=", + "System.Diagnostics.Tracing.dll": "sha256-vWC30ViFKVvfA6lr4WpENnHARX4j2ur\/mHthwaKoATs=", + "System.Drawing.Primitives.dll": "sha256-BJy91Y2qFeK2inFNUFA\/5mJSMwdbm\/grKthhaO35NAI=", + "System.Drawing.dll": "sha256-Dt6ZUiquxwt73K0SwRxN9inXL9\/iBxGUSAssD2ZTsUg=", + "System.Dynamic.Runtime.dll": "sha256-A\/UdQgEr6UkQp0Zvy0ySsIVJvHuuCreyMGJi8e9NaMQ=", + "System.Formats.Asn1.dll": "sha256-P2vkee5dVn7oBeVQcsQwIXxYCQtVC5bnF3WIEh4Ex1w=", + "System.Formats.Tar.dll": "sha256-BghbZNz2l8GKkA8sbyBrvgZ\/1B0nJnS9jw1+9E5o4O8=", + "System.Globalization.Calendars.dll": "sha256-pALRgo1jB\/83My1cUtomrU4xdi34uIYdgWmJgSCR6po=", + "System.Globalization.Extensions.dll": "sha256-RffLgs1y7ZU19dsAW2hE0jwWT05QOSG4t+vwJxPOc1s=", + "System.Globalization.dll": "sha256-afrKKJTWfb1nxIBkRZi1Z560z7EHloRwO+KVyUVDzm4=", + "System.IO.Compression.Brotli.dll": "sha256-3jJVep1ZzHjUQPl6FMbiTvY4REKUCRclCCz1B3EB8Eg=", + "System.IO.Compression.FileSystem.dll": "sha256-VHqyfA\/xMKfCo714OvSrHJFJhOCTqkC3ERXm9W\/tQ7g=", + "System.IO.Compression.ZipFile.dll": "sha256-EaLFLzEig0YZOMmzwRhqdrmRsPjnura5sP+kIxrqpWc=", + "System.IO.Compression.dll": "sha256-eaSXrmsjLkjjY4kbxJWbwUloAU5j8g6PJyivblsNfww=", + "System.IO.FileSystem.AccessControl.dll": "sha256-a4HeIPUfXQvmb\/FlJsuBADEVP2ho6KQP76yENfuwxgc=", + "System.IO.FileSystem.DriveInfo.dll": "sha256-28iVzkA1XXuMlAF+voPShSwc7Dfb6RWat8w7UQrONIk=", + "System.IO.FileSystem.Primitives.dll": "sha256-+V\/Ar9S1GDkRmIEMFbydoyaonEcNtnjbcDCJk75zq8k=", + "System.IO.FileSystem.Watcher.dll": "sha256-s59BnWfcVMtsSayxP+JOhtd\/3yPT1SdkgNS8+y6htNo=", + "System.IO.FileSystem.dll": "sha256-gTTqQtC8gN0WRvXc1d2w13eDZTrbzIka0PQi3rPTTtE=", + "System.IO.IsolatedStorage.dll": "sha256-kE9wiBqkMoKnSNzZNmMkxGJrilJanBc9KfElZ1XwI3w=", + "System.IO.MemoryMappedFiles.dll": "sha256-HdDDMErSSsu+1IGXGrlpoAnVLwkRuWQQSmZPHbQKddI=", + "System.IO.Pipes.AccessControl.dll": "sha256-4uOuCBbwKHU0KekAiOQL1vlXj0LuORa+YNFf2DUKRpY=", + "System.IO.Pipes.dll": "sha256-k6JSQ9EoXOG\/Xt0ER9E4PwRa7IR\/AmJOoDcmHDQVf0g=", + "System.IO.UnmanagedMemoryStream.dll": "sha256-\/r0qrwbyFVcp09GZFLCBdnNBqGaNsg9dMqSpa52M7hE=", + "System.IO.dll": "sha256-vo7HL66JDROb6LCcXiLOInexsARgGyz701SOeGaocRc=", + "System.Linq.Expressions.dll": "sha256-AL\/cPJ36gyGw550gx1XbozxiGoAazGT2AoHXh7lxInM=", + "System.Linq.Parallel.dll": "sha256-oUO3Yz2pz9q6qrloWbxlBfCGe1AIXe1bO+8stkCZLFk=", + "System.Linq.Queryable.dll": "sha256-uLVZt+s7IYTq\/bJE8yFSthB5IsYBlPTKDk6TD3gibRA=", + "System.Linq.dll": "sha256-EXO1Eh2R1Txuipg3tHui\/Pqdl8l2gP4ZUYG3HVz5sKw=", + "System.Memory.dll": "sha256-W\/fRA8tiM6Xfvcphi6d57EdsMCcXbjTT4+UipHxZFq0=", + "System.Net.Http.Json.dll": "sha256-uPFK0nYPyNcalouETAhKv\/8l5cpJoKewEkH3SfCWjdc=", + "System.Net.Http.dll": "sha256-7pFAvBOTQxmKE\/Hx4y9CSTkXCj1NUkgaELyLPCpIw7M=", + "System.Net.HttpListener.dll": "sha256-1yh5nM+KHYQfjBIRnjw\/zm11xGCMDkW5X6xPbM4OK0M=", + "System.Net.Mail.dll": "sha256-Ees0GKEtYLtvcFaF4Mg7SrGmE6ntuARPJ3ctH7tnGyM=", + "System.Net.NameResolution.dll": "sha256-qNFVdZU8IlnT\/7Kydk2f5EeLEK43LPd5b\/3Tp8zTNjc=", + "System.Net.NetworkInformation.dll": "sha256-fnOoKrwcDOfqeRz4iups+eBqX\/CcgzYP8wSH3fs9cAw=", + "System.Net.Ping.dll": "sha256-rdnWnaqbwdek9cziz3YqU1I2HGbLitw3Yje5EnOfFZ0=", + "System.Net.Primitives.dll": "sha256-EZKPs84TovM60o7haxAMRR4PpXvQ586AoFeTUyb+e+Y=", + "System.Net.Quic.dll": "sha256-x3Fcp0ZpTn3s3A6RnexallUHcdT\/QyJRr0rwWNsB6s0=", + "System.Net.Requests.dll": "sha256-6lhVGYKf14zgrvx9spx9F65qFC7\/4dh23BHlRXWYAUM=", + "System.Net.Security.dll": "sha256-KahC\/cXzZqMT0F8cSEhY8lAoQjx218DicZ6fqjX5MyM=", + "System.Net.ServicePoint.dll": "sha256-yQi5HnnAAW3RYMxj4i0imy9EgP0ymv387JN\/i0tI98I=", + "System.Net.Sockets.dll": "sha256-8tCW4TMl1DDY1+sE99pGR0V7XOulRRd7AyhHLtT9e68=", + "System.Net.WebClient.dll": "sha256-6eW0V\/divz3WqpuQ38ivS\/EmJhjS9C9AeiM61oG+g1s=", + "System.Net.WebHeaderCollection.dll": "sha256-LAjBAyQsRUceRBXEmSd+VHWSWMhErrnMHwki\/x\/oUIQ=", + "System.Net.WebProxy.dll": "sha256-75hxZ+dw4YSJ6Odi+xmOUOK2v4KrWhTAakLdPUF4Jvg=", + "System.Net.WebSockets.Client.dll": "sha256-4A4eNfhKtqO22nPCE9gcCXBm+I16t5HodflV6JaqKfk=", + "System.Net.WebSockets.dll": "sha256-TMqLCEDpgG8LQvp6czXjbPCAHZ\/zSnxS7dmg0+Kpk4A=", + "System.Net.dll": "sha256-UmS\/aFJ1ge+t8hjDME17LrMrYKWlxzhyMXP8Do1rv9Y=", + "System.Numerics.Vectors.dll": "sha256-sfckNKDNCQrtLJC6UeN6k\/0jIM2T9BPzmmkC6xATRH8=", + "System.Numerics.dll": "sha256-+LmwPV2ZHT4i9u4WiO4BxSIec1FtrSIfxII7CVFizoA=", + "System.ObjectModel.dll": "sha256-x3o9lRJAWfBFD1WaseStgK30v3wVgiXgYR4DbL+H6s0=", + "System.Private.DataContractSerialization.dll": "sha256-QDskUjBYm03oolPQOQBFKFX4VCEbS0Bkd2DGO1bA0QU=", + "System.Private.Uri.dll": "sha256-lmmUVB4nvy09yB6IS\/A7ZdZ2C\/RyBnXf89xw2oWnDEM=", + "System.Private.Xml.Linq.dll": "sha256-Y7iQofVvArZGVmxpi2\/3D12FFW7dKxvftELb+OfMgI0=", + "System.Private.Xml.dll": "sha256-77UDSVB0hR8MCc9zzl3UJ7wxLh4kJoW2NuLrl2UhFTc=", + "System.Reflection.DispatchProxy.dll": "sha256-o54HxPqaDaOCrPXoWr3erljuUSZfS8OuRL+rsjx9PhI=", + "System.Reflection.Emit.ILGeneration.dll": "sha256-+8QK1ENgwjIIwXPFNXphrJKgGEEDhQK3WKVR3TYgS4Y=", + "System.Reflection.Emit.Lightweight.dll": "sha256-joIP68O8gIgVdQm7Fc7oWHhzXQk3t5cLgiiqop4YnNE=", + "System.Reflection.Emit.dll": "sha256-bf6mi\/QcTQVXipMxeU4z7e0dhmnzYnvp373Gac0S4xQ=", + "System.Reflection.Extensions.dll": "sha256-kJQJn9zh\/R8ad1HKxsnBf5TvyAcmDMNqCW2RqrSGhKI=", + "System.Reflection.Metadata.dll": "sha256-VmrPNFdw1UT+8IpCC7Whm\/jO8Ys75dpNHmYDwcd4tbc=", + "System.Reflection.Primitives.dll": "sha256-PUj2dTxker7Y0IrwEWRPzBVHBFfDQqP75lZ\/QcZ6XTo=", + "System.Reflection.TypeExtensions.dll": "sha256-OzuXdBaFnwmLsmtdXI\/drJv\/IIB7eABZAxDRitqqdhI=", + "System.Reflection.dll": "sha256-pljq5DnINJtH9bxdRXiDTyEBpJfwM1kj7yyEXjDQAqI=", + "System.Resources.Reader.dll": "sha256-\/pIxvJS4987MdCAuDU73oFCYj5zf4hJF90O8YBTNfHs=", + "System.Resources.ResourceManager.dll": "sha256-6yWD01YDvrUD1u47NYFvtdgKzRTQaGe37HQr8yQuuWU=", + "System.Resources.Writer.dll": "sha256-a37W4sVXcaG2gp\/GH3\/y9bbsjE4t3a\/rzemAfw09x4c=", + "System.Runtime.CompilerServices.Unsafe.dll": "sha256-Jer49wJrlVXBDylDpm4PJd3hABEhgUbjOJOUPPSFuds=", + "System.Runtime.CompilerServices.VisualC.dll": "sha256-S1ocTp356bytLRBiSYfUaP0\/rLFgL6zYoUlx42Ni+Ng=", + "System.Runtime.Extensions.dll": "sha256-cwPH9ZR05wn4zQSOpAzU6e0MRWUqlluljO\/\/KdUxFaQ=", + "System.Runtime.Handles.dll": "sha256-9gWv0Ah4Mhfc3p1OO7s1LyvkTCft+XUqkeZbGSsGP+E=", + "System.Runtime.InteropServices.JavaScript.dll": "sha256-Ika9jD1bp92C5JyRGWWAq8I30pX3+zHKfZH\/cGp0Wsk=", + "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-a56lo8SHC7lLQOyqmwdTIAxqcilLbdbxyLzygm+HS9o=", + "System.Runtime.InteropServices.dll": "sha256-I8JRWjqH9yGKfQ\/u8fGTBGL5R+p4t\/BTwCPtaVP5NNA=", + "System.Runtime.Intrinsics.dll": "sha256-s7ED6CqU5sqiriNPCBRyGad4J3mmP5cSLNBrPkf5YLU=", + "System.Runtime.Loader.dll": "sha256-7\/VXqrJyz6w7P0XjMWQQc644qmeGLJBJ8rOtPmenAg8=", + "System.Runtime.Numerics.dll": "sha256-CIuKFDtuWc\/+pxGCKWM2iT6vBSko4Xee+fcS5lPLkxM=", + "System.Runtime.Serialization.Formatters.dll": "sha256-bOjX9cfmsSsWnVBCpfu40b9+5H1PeQookq9J4dZ1tho=", + "System.Runtime.Serialization.Json.dll": "sha256-W1LFtjaMFDPf412OPRn7FqrtKP\/ZtR6zTwxLq8BnFg4=", + "System.Runtime.Serialization.Primitives.dll": "sha256-EVnHo6YYTpM1jEhqrKouL92pk98n7aOc6TJ+zUgGoAQ=", + "System.Runtime.Serialization.Xml.dll": "sha256-Aw6KX9j+5mx6HUHtImtB7LFROCxHSpbowylTBSCO8UA=", + "System.Runtime.Serialization.dll": "sha256-ieCoS99bFo3vtWCdlz80SbUJcApHTVmuZEGdAWGrrh8=", + "System.Runtime.dll": "sha256-HAhQeNzYHs9HyyBhTO\/EX1iU7YEKwoEnGx9X2LW4Vys=", + "System.Security.AccessControl.dll": "sha256-wOcRpFZ1XG5Yu+jPfiIX+RuWbM45zPT4jdMvA0jKtS8=", + "System.Security.Claims.dll": "sha256-obeNM8MiV3pV+71JCjOfWdKz7KvqDHVwYdxsbkL4QtU=", + "System.Security.Cryptography.Algorithms.dll": "sha256-KOR32YaPNGRa1Mx5GUAJocI4d7ILc0hNsR85s\/qHnz4=", + "System.Security.Cryptography.Cng.dll": "sha256-6GIzL6b8w8nBC\/0HGW67+ZdLl14KIzyJ3xnobSRCNtA=", + "System.Security.Cryptography.Csp.dll": "sha256-I6UTSqzotpguxLa6Mky\/CVlRoXaWA\/VGUnSa+fWfooE=", + "System.Security.Cryptography.Encoding.dll": "sha256-LFkdeimY8XYu5oM8lPftNn0EXjp77SYb0P9zAZ8i7JA=", + "System.Security.Cryptography.OpenSsl.dll": "sha256-pWMejSIyXuj6utObjjdaQYXHIJjkRyGhLs6ATNHzcCo=", + "System.Security.Cryptography.Primitives.dll": "sha256-6U9tVMS2AcRCVL7OsIB\/vClW5whwaSdwEkh3fMDN3fs=", + "System.Security.Cryptography.X509Certificates.dll": "sha256-GDvp0VwTbHYenh\/m7rQPMrh9R+w8\/ErOGci9kB9eDT4=", + "System.Security.Cryptography.dll": "sha256-dfovi0zCN3b5w3JBB6TP46bY1uC1oHy9B8wJxbYGAg4=", + "System.Security.Principal.Windows.dll": "sha256-d9f5+NQ4CskBA9qzwyV2GqSBslI7bRiXpGFSyPsEtVA=", + "System.Security.Principal.dll": "sha256-tVd55g5lNCTyam9JPEK13OlS2yCEG3+T68EERM3kqdg=", + "System.Security.SecureString.dll": "sha256-FAMqTDxIU0C3qGYFWBt6ZWujHGbpxzlYyGYeTfEZV7Q=", + "System.Security.dll": "sha256-9A1V+ITVbr0NJRyCxe+LzMHMnEUIiXRvS\/xXOSTKGDk=", + "System.ServiceModel.Web.dll": "sha256-7Hga+jap642rxVSYqG0\/GkTEmThGIlCzjjOvnkmnYRk=", + "System.ServiceProcess.dll": "sha256-nkLSRcQnaVp6gmYJxHwIfE+XjP2xOtanHFtYrj\/dIKo=", + "System.Text.Encoding.CodePages.dll": "sha256-7nAeOeAzxcaxc1CV7GLjLnlx6h0UyDe20lqOzmDgxFc=", + "System.Text.Encoding.Extensions.dll": "sha256-YPIlEpZ\/zKt3dzziZZKMLJLsECFJk0t9IHTOeJ1FNOo=", + "System.Text.Encoding.dll": "sha256-owgV8aZQzl0xLGBKto5qKnkQ+Jj3F97\/ewkxwoLhMVQ=", + "System.Text.Encodings.Web.dll": "sha256-WSjAnnOLfsXb33Twp35Ctsue8egrDWoLlNbMksiD4TI=", + "System.Text.Json.dll": "sha256-TnU5Ig0\/qKHRvdSNay7ugpKPaL3ahpQIyi37OSjlicM=", + "System.Text.RegularExpressions.dll": "sha256-N18f3LMYVaBB24DGtoJ+rzMgpkgTa3QFTuaJoC8pdDY=", + "System.Threading.Channels.dll": "sha256-s9dNZ8+KoW57Lmi+fP8zWYJqeRutSSu6z+kYdDjAu\/8=", + "System.Threading.Overlapped.dll": "sha256-37EfT1YZLtLB+Ez1m3MFz3kc2Z0XjO1nORyda+XDG1Q=", + "System.Threading.Tasks.Dataflow.dll": "sha256-qAOwJdRifT1gadnHfuv\/jB1mr\/lP4JLFSmsiFovDOYA=", + "System.Threading.Tasks.Extensions.dll": "sha256-nxEfwHtQFKoMl8lp5ikMB4+lpJ8QiGBy9xzjgnsMkNQ=", + "System.Threading.Tasks.Parallel.dll": "sha256-nSJC8IgDpcjauatJbybVvkgF4sc3Syg1K5Zh4YSAVjQ=", + "System.Threading.Tasks.dll": "sha256-G1nQ5\/Red3cs0DirxW682VCJ\/a1grb37qm1BVmts\/Nw=", + "System.Threading.Thread.dll": "sha256-fpg4DXuKPwTsiP\/poP4vgWCNimPuPLklzUIj1ODu5nU=", + "System.Threading.ThreadPool.dll": "sha256-67ZcL3XG5iZ2czqpw401ix2vn\/2RJE1OPPqATV+S5ZI=", + "System.Threading.Timer.dll": "sha256-261A8pkSF3pvGIrn6H7m02T1\/JsuwBgTAu8zpvEErqc=", + "System.Threading.dll": "sha256-xjtYe\/42JgagDKF8Xv3EhJl40NTziwx\/VwPE9y4ELH0=", + "System.Transactions.Local.dll": "sha256-rU4mTr82aHMgYBL70OO6U0TcL810LJwRUHljdC\/KC5Q=", + "System.Transactions.dll": "sha256-Fl36SVhASzk\/VsI8X80DrpDdLiKprXmcNRZ9dqHXOjk=", + "System.ValueTuple.dll": "sha256-eI9Gd7DfoOKMKcUvrUyBOYX\/1X+qoGlfLWGyov7CEoE=", + "System.Web.HttpUtility.dll": "sha256-t8YxFRjw08+4q36f9nLIRFiiczlca2RkfmzGYmGLIKI=", + "System.Web.dll": "sha256-xtj5BTZeF8uInYXYVlyZoxCO+4T5WOGwk7w+e6DLbsY=", + "System.Windows.dll": "sha256-DNjkNCF7j27CNyxBcGIrMuwL0ydDOMeRtUX4CE0Xt5E=", + "System.Xml.Linq.dll": "sha256-NhHAGnAlayjfbMQPRrTCkjckaz\/69co8poQmnLYnKOA=", + "System.Xml.ReaderWriter.dll": "sha256-f6p5YWzc3e2Vg606gUu50uHyviOtOgq7PzobmDgl8Kc=", + "System.Xml.Serialization.dll": "sha256-3XE2YVQZgqUZ2eYnIoNnkMq5bGl2XlblQrpOJlxnT4w=", + "System.Xml.XDocument.dll": "sha256-NO\/P\/T+7TPRsmjK9JCul9xqWcK8Qvdaz52cnzmclBQE=", + "System.Xml.XPath.XDocument.dll": "sha256-G43aXAhY6bZCObx3e\/T4Wf\/OvC1yO14GIhbmpz38hn4=", + "System.Xml.XPath.dll": "sha256-76s7J3orfX5VlcarhdfOV\/05St84NlfvGDul\/SaHe7s=", + "System.Xml.XmlDocument.dll": "sha256-eAWu9IQu2iunp\/SsP+1Wu\/bigY2zxV9JcNtdJagthu8=", + "System.Xml.XmlSerializer.dll": "sha256-8qnJDsE4pVWkhcfAoPGMsrgty96NOfCOAs+4swI4LPY=", + "System.Xml.dll": "sha256-ZrdEXfsh4gCVWAiAq038hgrsqQibCYHMFIpRW90jTlo=", + "System.dll": "sha256-cbk1\/4P+UvDk13iCw85zs2\/lR1S+nDR3mY60kAr\/cds=", + "WindowsBase.dll": "sha256-SgDw2itoVCJKQ9AGrgAuRDPOFrMUYvGZeeDXCm6eC1M=", + "mscorlib.dll": "sha256-qqpKd+W+AFb6UxudEYEKzrz7ma81p5LrWUwPBVvHV4U=", + "netstandard.dll": "sha256-OYYuPT3JUknj4LdYIa58zF7kDB3tCnLzjCSuhEjtKXM=", + "System.Private.CoreLib.dll": "sha256-EVS7zPxPV\/41g2mzPwdXtwiigWxI\/SeAHme1IgyD6tc=", + "SharedModels.dll": "sha256-b7WnF9tfopuJPf40TdpJMnoJRH6lZznx6H3yxJ7HH2Y=", + "GraphSample.dll": "sha256-dx0LNynAwY0HDteN3GhmnbQmYBcF4HANyYX1aNlf73k=" + }, + "extensions": null, + "lazyAssembly": null, + "libraryInitializers": { + "_content\/Microsoft.Fast.Components.FluentUI\/Microsoft.Fast.Components.FluentUI.lib.module.js": "sha256-ND1vLicPyknaz63eR1\/+a5vJIKrL2EX3xYqzR4e0S70=" + }, + "pdb": { + "SharedModels.pdb": "sha256-OhgUc7L3fu2touKGcGpX\/t\/ASF0lyDUGt\/H8bpJpu1g=", + "GraphSample.pdb": "sha256-GuGgC3nqjDaa111cO1\/HaRve97yXLMSDyfsaL1PHnTg=" + }, + "runtime": { + "dotnet.7.0.5.9her4wdnhl.js": "sha256-codB25EodaFEP43MDCfMBuKXU4LqurUKnQrpoMIFnPs=", + "dotnet.timezones.blat": "sha256-rIVQOJ+gHn4DeRSq6Ac3CURS8YBJG3P4CtYPfIuZ\/kk=", + "dotnet.wasm": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o=", + "icudt.dat": "sha256-tO5O5YzMTVSaKBboxAqezOQL9ewmupzV2JrB5Rkc8a4=", + "icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=", + "icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=", + "icudt_no_CJK.dat": "sha256-L7sV7NEYP37\/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=" + }, + "runtimeAssets": { + "dotnet.wasm": { + "behavior": "dotnetwasm", + "hash": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o=" + } + }, + "satelliteResources": { + "ja": { + "ja\/GrapeCity.Documents.Imaging.resources.dll": "sha256-KtoftVc29pGvHmYM82mOXOpk5+CBsiAvU6Rk8Yiu42c=", + "ja\/GrapeCity.Documents.Pdf.resources.dll": "sha256-6X2vLz48j72uR53HIHdDfjwonFxDkuuVjPm\/8+Xt1a8=" + } + } + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js new file mode 100644 index 000000000..3262acbb9 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js @@ -0,0 +1 @@ +(()=>{"use strict";var e,t,n;!function(e){window.DotNet=e;const t=[],n=new Map,r=new Map,o="__jsObjectId",s="__byte[]";class a{constructor(e){this._jsObject=e,this._cachedFunctions=new Map}findFunction(e){const t=this._cachedFunctions.get(e);if(t)return t;let n,r=this._jsObject;if(e.split(".").forEach((t=>{if(!(t in r))throw new Error(`Could not find '${e}' ('${t}' was undefined).`);n=r,r=r[t]})),r instanceof Function)return r=r.bind(n),this._cachedFunctions.set(e,r),r;throw new Error(`The value '${e}' is not a function.`)}getWrappedObject(){return this._jsObject}}const i={},c={0:new a(window)};c[0]._cachedFunctions.set("import",(e=>("string"==typeof e&&e.startsWith("./")&&(e=document.baseURI+e.substr(2)),import(e))));let l,u=1,d=1,f=null;function m(e){t.push(e)}function h(e){if(e&&"object"==typeof e){c[d]=new a(e);const t={[o]:d};return d++,t}throw new Error(`Cannot create a JSObjectReference from the value '${e}'.`)}function p(e){let t=-1;if(e instanceof ArrayBuffer&&(e=new Uint8Array(e)),e instanceof Blob)t=e.size;else{if(!(e.buffer instanceof ArrayBuffer))throw new Error("Supplied value is not a typed array or blob.");if(void 0===e.byteLength)throw new Error(`Cannot create a JSStreamReference from the value '${e}' as it doesn't have a byteLength.`);t=e.byteLength}const n={__jsStreamReferenceLength:t};try{const t=h(e);n.__jsObjectId=t.__jsObjectId}catch(t){throw new Error(`Cannot create a JSStreamReference from the value '${e}'.`)}return n}function y(e){return e?JSON.parse(e,((e,n)=>t.reduce(((t,n)=>n(e,t)),n))):null}function g(e,t,n,r){const o=w();if(o.invokeDotNetFromJS){const s=k(r),a=o.invokeDotNetFromJS(e,t,n,s);return a?y(a):null}throw new Error("The current dispatcher does not support synchronous calls from JS to .NET. Use invokeMethodAsync instead.")}function b(e,t,n,r){if(e&&n)throw new Error(`For instance method calls, assemblyName should be null. Received '${e}'.`);const o=u++,s=new Promise(((e,t)=>{i[o]={resolve:e,reject:t}}));try{const s=k(r);w().beginInvokeDotNetFromJS(o,e,t,n,s)}catch(e){v(o,!1,e)}return s}function w(){if(null!==f)return f;throw new Error("No .NET call dispatcher has been set.")}function v(e,t,n){if(!i.hasOwnProperty(e))throw new Error(`There is no pending async call with ID ${e}.`);const r=i[e];delete i[e],t?r.resolve(n):r.reject(n)}function E(e){return e instanceof Error?`${e.message}\n${e.stack}`:e?e.toString():"null"}function _(e,t){const n=c[t];if(n)return n.findFunction(e);throw new Error(`JS object instance with ID ${t} does not exist (has it been disposed?).`)}function C(e){delete c[e]}e.attachDispatcher=function(e){f=e},e.attachReviver=m,e.invokeMethod=function(e,t,...n){return g(e,t,null,n)},e.invokeMethodAsync=function(e,t,...n){return b(e,t,null,n)},e.createJSObjectReference=h,e.createJSStreamReference=p,e.disposeJSObjectReference=function(e){const t=e&&e.__jsObjectId;"number"==typeof t&&C(t)},function(e){e[e.Default=0]="Default",e[e.JSObjectReference=1]="JSObjectReference",e[e.JSStreamReference=2]="JSStreamReference",e[e.JSVoidResult=3]="JSVoidResult"}(l=e.JSCallResultType||(e.JSCallResultType={})),e.jsCallDispatcher={findJSFunction:_,disposeJSObjectReferenceById:C,invokeJSFromDotNet:(e,t,n,r)=>{const o=R(_(e,r).apply(null,y(t)),n);return null==o?null:k(o)},beginInvokeJSFromDotNet:(e,t,n,r,o)=>{const s=new Promise((e=>{e(_(t,o).apply(null,y(n)))}));e&&s.then((t=>k([e,!0,R(t,r)]))).then((t=>w().endInvokeJSFromDotNet(e,!0,t)),(t=>w().endInvokeJSFromDotNet(e,!1,JSON.stringify([e,!1,E(t)]))))},endInvokeDotNetFromJS:(e,t,n)=>{const r=t?y(n):new Error(n);v(parseInt(e,10),t,r)},receiveByteArray:(e,t)=>{n.set(e,t)},supplyDotNetStream:(e,t)=>{if(r.has(e)){const n=r.get(e);r.delete(e),n.resolve(t)}else{const n=new S;n.resolve(t),r.set(e,n)}}};class A{constructor(e){this._id=e}invokeMethod(e,...t){return g(null,e,this._id,t)}invokeMethodAsync(e,...t){return b(null,e,this._id,t)}dispose(){b(null,"__Dispose",this._id,null).catch((e=>console.error(e)))}serializeAsArg(){return{__dotNetObject:this._id}}}e.DotNetObject=A,m((function(e,t){if(t&&"object"==typeof t){if(t.hasOwnProperty("__dotNetObject"))return new A(t.__dotNetObject);if(t.hasOwnProperty(o)){const e=t.__jsObjectId,n=c[e];if(n)return n.getWrappedObject();throw new Error(`JS object instance with Id '${e}' does not exist. It may have been disposed.`)}if(t.hasOwnProperty(s)){const e=t["__byte[]"],r=n.get(e);if(void 0===r)throw new Error(`Byte array index '${e}' does not exist.`);return n.delete(e),r}if(t.hasOwnProperty("__dotNetStream"))return new I(t.__dotNetStream)}return t}));class I{constructor(e){if(r.has(e))this._streamPromise=r.get(e).streamPromise,r.delete(e);else{const t=new S;r.set(e,t),this._streamPromise=t.streamPromise}}stream(){return this._streamPromise}async arrayBuffer(){return new Response(await this.stream()).arrayBuffer()}}class S{constructor(){this.streamPromise=new Promise(((e,t)=>{this.resolve=e,this.reject=t}))}}function R(e,t){switch(t){case l.Default:return e;case l.JSObjectReference:return h(e);case l.JSStreamReference:return p(e);case l.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${t}'.`)}}let N=0;function k(e){return N=0,JSON.stringify(e,O)}function O(e,t){if(t instanceof A)return t.serializeAsArg();if(t instanceof Uint8Array){f.sendByteArray(N,t);const e={[s]:N};return N++,e}return t}}(e||(e={})),function(e){e[e.prependFrame=1]="prependFrame",e[e.removeFrame=2]="removeFrame",e[e.setAttribute=3]="setAttribute",e[e.removeAttribute=4]="removeAttribute",e[e.updateText=5]="updateText",e[e.stepIn=6]="stepIn",e[e.stepOut=7]="stepOut",e[e.updateMarkup=8]="updateMarkup",e[e.permutationListEntry=9]="permutationListEntry",e[e.permutationListEnd=10]="permutationListEnd"}(t||(t={})),function(e){e[e.element=1]="element",e[e.text=2]="text",e[e.attribute=3]="attribute",e[e.component=4]="component",e[e.region=5]="region",e[e.elementReferenceCapture=6]="elementReferenceCapture",e[e.markup=8]="markup"}(n||(n={}));class r{constructor(e,t){this.componentId=e,this.fieldValue=t}static fromEvent(e,t){const n=t.target;if(n instanceof Element){const t=function(e){return e instanceof HTMLInputElement?e.type&&"checkbox"===e.type.toLowerCase()?{value:e.checked}:{value:e.value}:e instanceof HTMLSelectElement||e instanceof HTMLTextAreaElement?{value:e.value}:null}(n);if(t)return new r(e,t.value)}return null}}const o=new Map,s=new Map,a=[];function i(e){return o.get(e)}function c(e){const t=o.get(e);return(null==t?void 0:t.browserEventName)||e}function l(e,t){e.forEach((e=>o.set(e,t)))}function u(e){const t=[];for(let n=0;ne.selected)).map((e=>e.value))}}{const e=function(e){return!!e&&"INPUT"===e.tagName&&"checkbox"===e.getAttribute("type")}(t);return{value:e?!!t.checked:t.value}}}}),l(["copy","cut","paste"],{createEventArgs:e=>({type:e.type})}),l(["drag","dragend","dragenter","dragleave","dragover","dragstart","drop"],{createEventArgs:e=>{return{...d(t=e),dataTransfer:t.dataTransfer?{dropEffect:t.dataTransfer.dropEffect,effectAllowed:t.dataTransfer.effectAllowed,files:Array.from(t.dataTransfer.files).map((e=>e.name)),items:Array.from(t.dataTransfer.items).map((e=>({kind:e.kind,type:e.type}))),types:t.dataTransfer.types}:null};var t}}),l(["focus","blur","focusin","focusout"],{createEventArgs:e=>({type:e.type})}),l(["keydown","keyup","keypress"],{createEventArgs:e=>{return{key:(t=e).key,code:t.code,location:t.location,repeat:t.repeat,ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["contextmenu","click","mouseover","mouseout","mousemove","mousedown","mouseup","mouseleave","mouseenter","dblclick"],{createEventArgs:e=>d(e)}),l(["error"],{createEventArgs:e=>{return{message:(t=e).message,filename:t.filename,lineno:t.lineno,colno:t.colno,type:t.type};var t}}),l(["loadstart","timeout","abort","load","loadend","progress"],{createEventArgs:e=>{return{lengthComputable:(t=e).lengthComputable,loaded:t.loaded,total:t.total,type:t.type};var t}}),l(["touchcancel","touchend","touchmove","touchenter","touchleave","touchstart"],{createEventArgs:e=>{return{detail:(t=e).detail,touches:u(t.touches),targetTouches:u(t.targetTouches),changedTouches:u(t.changedTouches),ctrlKey:t.ctrlKey,shiftKey:t.shiftKey,altKey:t.altKey,metaKey:t.metaKey,type:t.type};var t}}),l(["gotpointercapture","lostpointercapture","pointercancel","pointerdown","pointerenter","pointerleave","pointermove","pointerout","pointerover","pointerup"],{createEventArgs:e=>{return{...d(t=e),pointerId:t.pointerId,width:t.width,height:t.height,pressure:t.pressure,tiltX:t.tiltX,tiltY:t.tiltY,pointerType:t.pointerType,isPrimary:t.isPrimary};var t}}),l(["wheel","mousewheel"],{createEventArgs:e=>{return{...d(t=e),deltaX:t.deltaX,deltaY:t.deltaY,deltaZ:t.deltaZ,deltaMode:t.deltaMode};var t}}),l(["toggle"],{createEventArgs:()=>({})});const f=["date","datetime-local","month","time","week"],m=new Map;let h,p,y=0;const g={async add(e,t,n){if(!n)throw new Error("initialParameters must be an object, even if empty.");const r="__bl-dynamic-root:"+(++y).toString();m.set(r,e);const o=await v().invokeMethodAsync("AddRootComponent",t,r),s=new w(o,p[t]);return await s.setParameters(n),s}};class b{invoke(e){return this._callback(e)}setCallback(t){this._selfJSObjectReference||(this._selfJSObjectReference=e.createJSObjectReference(this)),this._callback=t}getJSObjectReference(){return this._selfJSObjectReference}dispose(){this._selfJSObjectReference&&e.disposeJSObjectReference(this._selfJSObjectReference)}}class w{constructor(e,t){this._jsEventCallbackWrappers=new Map,this._componentId=e;for(const e of t)"eventcallback"===e.type&&this._jsEventCallbackWrappers.set(e.name.toLowerCase(),new b)}setParameters(e){const t={},n=Object.entries(e||{}),r=n.length;for(const[e,r]of n){const n=this._jsEventCallbackWrappers.get(e.toLowerCase());n&&r?(n.setCallback(r),t[e]=n.getJSObjectReference()):t[e]=r}return v().invokeMethodAsync("SetRootComponentParameters",this._componentId,r,t)}async dispose(){if(null!==this._componentId){await v().invokeMethodAsync("RemoveRootComponent",this._componentId),this._componentId=null;for(const e of this._jsEventCallbackWrappers.values())e.dispose()}}}function v(){if(!h)throw new Error("Dynamic root components have not been enabled in this application.");return h}const E=new Map;let _;const C=new Promise((e=>{_=e}));function A(e,t,n){return S(e,t.eventHandlerId,(()=>I(e).invokeMethodAsync("DispatchEventAsync",t,n)))}function I(e){const t=E.get(e);if(!t)throw new Error(`No interop methods are registered for renderer ${e}`);return t}let S=(e,t,n)=>n();const R=j(["abort","blur","canplay","canplaythrough","change","cuechange","durationchange","emptied","ended","error","focus","load","loadeddata","loadedmetadata","loadend","loadstart","mouseenter","mouseleave","pointerenter","pointerleave","pause","play","playing","progress","ratechange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeupdate","toggle","unload","volumechange","waiting","DOMNodeInsertedIntoDocument","DOMNodeRemovedFromDocument"]),N={submit:!0},k=j(["click","dblclick","mousedown","mousemove","mouseup"]);class O{constructor(e){this.browserRendererId=e,this.afterClickCallbacks=[];const t=++O.nextEventDelegatorId;this.eventsCollectionKey=`_blazorEvents_${t}`,this.eventInfoStore=new F(this.onGlobalEvent.bind(this))}setListener(e,t,n,r){const o=this.getEventHandlerInfosForElement(e,!0),s=o.getHandler(t);if(s)this.eventInfoStore.update(s.eventHandlerId,n);else{const s={element:e,eventName:t,eventHandlerId:n,renderingComponentId:r};this.eventInfoStore.add(s),o.setHandler(t,s)}}getHandler(e){return this.eventInfoStore.get(e)}removeListener(e){const t=this.eventInfoStore.remove(e);if(t){const e=t.element,n=this.getEventHandlerInfosForElement(e,!1);n&&n.removeHandler(t.eventName)}}notifyAfterClick(e){this.afterClickCallbacks.push(e),this.eventInfoStore.addGlobalListener("click")}setStopPropagation(e,t,n){this.getEventHandlerInfosForElement(e,!0).stopPropagation(t,n)}setPreventDefault(e,t,n){this.getEventHandlerInfosForElement(e,!0).preventDefault(t,n)}onGlobalEvent(e){if(!(e.target instanceof Element))return;this.dispatchGlobalEventToAllElements(e.type,e);const t=(n=e.type,s.get(n));var n;t&&t.forEach((t=>this.dispatchGlobalEventToAllElements(t,e))),"click"===e.type&&this.afterClickCallbacks.forEach((t=>t(e)))}dispatchGlobalEventToAllElements(e,t){const n=t.composedPath();let o=n.shift(),s=null,a=!1;const c=Object.prototype.hasOwnProperty.call(R,e);let l=!1;for(;o;){const f=o,m=this.getEventHandlerInfosForElement(f,!1);if(m){const n=m.getHandler(e);if(n&&(u=f,d=t.type,!((u instanceof HTMLButtonElement||u instanceof HTMLInputElement||u instanceof HTMLTextAreaElement||u instanceof HTMLSelectElement)&&Object.prototype.hasOwnProperty.call(k,d)&&u.disabled))){if(!a){const n=i(e);s=(null==n?void 0:n.createEventArgs)?n.createEventArgs(t):{},a=!0}Object.prototype.hasOwnProperty.call(N,t.type)&&t.preventDefault(),A(this.browserRendererId,{eventHandlerId:n.eventHandlerId,eventName:e,eventFieldInfo:r.fromEvent(n.renderingComponentId,t)},s)}m.stopPropagation(e)&&(l=!0),m.preventDefault(e)&&t.preventDefault()}o=c||l?void 0:n.shift()}var u,d}getEventHandlerInfosForElement(e,t){return Object.prototype.hasOwnProperty.call(e,this.eventsCollectionKey)?e[this.eventsCollectionKey]:t?e[this.eventsCollectionKey]=new T:null}}O.nextEventDelegatorId=0;class F{constructor(e){this.globalListener=e,this.infosByEventHandlerId={},this.countByEventName={},a.push(this.handleEventNameAliasAdded.bind(this))}add(e){if(this.infosByEventHandlerId[e.eventHandlerId])throw new Error(`Event ${e.eventHandlerId} is already tracked`);this.infosByEventHandlerId[e.eventHandlerId]=e,this.addGlobalListener(e.eventName)}get(e){return this.infosByEventHandlerId[e]}addGlobalListener(e){if(e=c(e),Object.prototype.hasOwnProperty.call(this.countByEventName,e))this.countByEventName[e]++;else{this.countByEventName[e]=1;const t=Object.prototype.hasOwnProperty.call(R,e);document.addEventListener(e,this.globalListener,t)}}update(e,t){if(Object.prototype.hasOwnProperty.call(this.infosByEventHandlerId,t))throw new Error(`Event ${t} is already tracked`);const n=this.infosByEventHandlerId[e];delete this.infosByEventHandlerId[e],n.eventHandlerId=t,this.infosByEventHandlerId[t]=n}remove(e){const t=this.infosByEventHandlerId[e];if(t){delete this.infosByEventHandlerId[e];const n=c(t.eventName);0==--this.countByEventName[n]&&(delete this.countByEventName[n],document.removeEventListener(n,this.globalListener))}return t}handleEventNameAliasAdded(e,t){if(Object.prototype.hasOwnProperty.call(this.countByEventName,e)){const n=this.countByEventName[e];delete this.countByEventName[e],document.removeEventListener(e,this.globalListener),this.addGlobalListener(t),this.countByEventName[t]+=n-1}}}class T{constructor(){this.handlers={},this.preventDefaultFlags=null,this.stopPropagationFlags=null}getHandler(e){return Object.prototype.hasOwnProperty.call(this.handlers,e)?this.handlers[e]:null}setHandler(e,t){this.handlers[e]=t}removeHandler(e){delete this.handlers[e]}preventDefault(e,t){return void 0!==t&&(this.preventDefaultFlags=this.preventDefaultFlags||{},this.preventDefaultFlags[e]=t),!!this.preventDefaultFlags&&this.preventDefaultFlags[e]}stopPropagation(e,t){return void 0!==t&&(this.stopPropagationFlags=this.stopPropagationFlags||{},this.stopPropagationFlags[e]=t),!!this.stopPropagationFlags&&this.stopPropagationFlags[e]}}function j(e){const t={};return e.forEach((e=>{t[e]=!0})),t}const D=Y("_blazorLogicalChildren"),L=Y("_blazorLogicalParent"),B=Y("_blazorLogicalEnd");function P(e,t){if(e.childNodes.length>0&&!t)throw new Error("New logical elements must start empty, or allowExistingContents must be true");return D in e||(e[D]=[]),e}function M(e,t){const n=document.createComment("!");return x(n,e,t),n}function x(e,t,n){const r=e;if(e instanceof Comment&&U(r)&&U(r).length>0)throw new Error("Not implemented: inserting non-empty logical container");if(H(r))throw new Error("Not implemented: moving existing logical children");const o=U(t);if(n0;)$(n,0)}const r=n;r.parentNode.removeChild(r)}function H(e){return e[L]||null}function J(e,t){return U(e)[t]}function z(e){const t=K(e);return"http://www.w3.org/2000/svg"===t.namespaceURI&&"foreignObject"!==t.tagName}function U(e){return e[D]}function W(e,t){const n=U(e);t.forEach((e=>{e.moveRangeStart=n[e.fromSiblingIndex],e.moveRangeEnd=X(e.moveRangeStart)})),t.forEach((t=>{const r=document.createComment("marker");t.moveToBeforeMarker=r;const o=n[t.toSiblingIndex+1];o?o.parentNode.insertBefore(r,o):G(r,e)})),t.forEach((e=>{const t=e.moveToBeforeMarker,n=t.parentNode,r=e.moveRangeStart,o=e.moveRangeEnd;let s=r;for(;s;){const e=s.nextSibling;if(n.insertBefore(s,t),s===o)break;s=e}n.removeChild(t)})),t.forEach((e=>{n[e.toSiblingIndex]=e.moveRangeStart}))}function K(e){if(e instanceof Element||e instanceof DocumentFragment)return e;if(e instanceof Comment)return e.parentNode;throw new Error("Not a valid logical element")}function V(e){const t=U(H(e));return t[Array.prototype.indexOf.call(t,e)+1]||null}function G(e,t){if(t instanceof Element||t instanceof DocumentFragment)t.appendChild(e);else{if(!(t instanceof Comment))throw new Error(`Cannot append node because the parent is not a valid logical element. Parent: ${t}`);{const n=V(t);n?n.parentNode.insertBefore(e,n):G(e,H(t))}}}function X(e){if(e instanceof Element||e instanceof DocumentFragment)return e;const t=V(e);if(t)return t.previousSibling;{const t=H(e);return t instanceof Element||t instanceof DocumentFragment?t.lastChild:X(t)}}function Y(e){return"function"==typeof Symbol?Symbol():e}function q(e){return`_bl_${e}`}e.attachReviver(((e,t)=>t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,"__internalId")&&"string"==typeof t.__internalId?function(e){const t=`[${q(e)}]`;return document.querySelector(t)}(t.__internalId):t));const Z="_blazorDeferredValue",Q=document.createElement("template"),ee=document.createElementNS("http://www.w3.org/2000/svg","g"),te={},ne="__internal_",re="preventDefault_",oe="stopPropagation_";class se{constructor(e){this.rootComponentIds=new Set,this.childComponentLocations={},this.eventDelegator=new O(e),this.eventDelegator.notifyAfterClick((e=>{if(!he)return;if(0!==e.button||function(e){return e.ctrlKey||e.shiftKey||e.altKey||e.metaKey}(e))return;if(e.defaultPrevented)return;const t=function(e){const t=!window._blazorDisableComposedPath&&e.composedPath&&e.composedPath();if(t){for(let e=0;edocument.baseURI,getLocationHref:()=>location.href};function Ae(e,t,n=!1){const r=Te(e);!t.forceLoad&&De(r)?Ie(r,!1,t.replaceHistoryEntry,t.historyEntryState,n):function(e,t){if(location.href===e){const t=e+"?";history.replaceState(null,"",t),location.replace(e)}else t?location.replace(e):location.href=e}(e,t.replaceHistoryEntry)}async function Ie(e,t,n,r,o=!1){Re(),(o||!ye||await Ne(e,r,t))&&(fe=!0,n?history.replaceState({userState:r,_index:ge},"",e):(ge++,history.pushState({userState:r,_index:ge},"",e)),await ke(t))}function Se(e){return new Promise((t=>{const n=Ee;Ee=()=>{Ee=n,t()},history.go(e)}))}function Re(){_e&&(_e(!1),_e=null)}function Ne(e,t,n){return new Promise((r=>{Re(),ve?(be++,_e=r,ve(be,e,t,n)):r(!1)}))}async function ke(e){var t;we&&await we(location.href,null===(t=history.state)||void 0===t?void 0:t.userState,e)}async function Oe(e){var t,n;Ee&&await Ee(e),ge=null!==(n=null===(t=history.state)||void 0===t?void 0:t._index)&&void 0!==n?n:0}let Fe;function Te(e){return Fe=Fe||document.createElement("a"),Fe.href=e,Fe.href}function je(e,t){return e?e.tagName===t?e:je(e.parentElement,t):null}function De(e){const t=(n=document.baseURI).substring(0,n.lastIndexOf("/"));var n;const r=e.charAt(t.length);return e.startsWith(t)&&(""===r||"/"===r||"?"===r||"#"===r)}const Le={focus:function(e,t){if(e instanceof HTMLElement)e.focus({preventScroll:t});else{if(!(e instanceof SVGElement))throw new Error("Unable to focus an invalid element.");if(!e.hasAttribute("tabindex"))throw new Error("Unable to focus an SVG element that does not have a tabindex.");e.focus({preventScroll:t})}},focusBySelector:function(e){const t=document.querySelector(e);t&&(t.hasAttribute("tabindex")||(t.tabIndex=-1),t.focus())}},Be={init:function(e,t,n,r=50){const o=Me(t);(o||document.documentElement).style.overflowAnchor="none";const s=document.createRange();u(n.parentElement)&&(t.style.display="table-row",n.style.display="table-row");const a=new IntersectionObserver((function(r){r.forEach((r=>{var o;if(!r.isIntersecting)return;s.setStartAfter(t),s.setEndBefore(n);const a=s.getBoundingClientRect().height,i=null===(o=r.rootBounds)||void 0===o?void 0:o.height;r.target===t?e.invokeMethodAsync("OnSpacerBeforeVisible",r.intersectionRect.top-r.boundingClientRect.top,a,i):r.target===n&&n.offsetHeight>0&&e.invokeMethodAsync("OnSpacerAfterVisible",r.boundingClientRect.bottom-r.intersectionRect.bottom,a,i)}))}),{root:o,rootMargin:`${r}px`});a.observe(t),a.observe(n);const i=l(t),c=l(n);function l(e){const t={attributes:!0},n=new MutationObserver(((n,r)=>{u(e.parentElement)&&(r.disconnect(),e.style.display="table-row",r.observe(e,t)),a.unobserve(e),a.observe(e)}));return n.observe(e,t),n}function u(e){return null!==e&&(e instanceof HTMLTableElement&&""===e.style.display||"table"===e.style.display||e instanceof HTMLTableSectionElement&&""===e.style.display||"table-row-group"===e.style.display)}Pe[e._id]={intersectionObserver:a,mutationObserverBefore:i,mutationObserverAfter:c}},dispose:function(e){const t=Pe[e._id];t&&(t.intersectionObserver.disconnect(),t.mutationObserverBefore.disconnect(),t.mutationObserverAfter.disconnect(),e.dispose(),delete Pe[e._id])}},Pe={};function Me(e){return e&&e!==document.body&&e!==document.documentElement?"visible"!==getComputedStyle(e).overflowY?e:Me(e.parentElement):null}const xe={getAndRemoveExistingTitle:function(){var e;const t=document.head?document.head.getElementsByTagName("title"):[];if(0===t.length)return null;let n=null;for(let r=t.length-1;r>=0;r--){const o=t[r],s=o.previousSibling;s instanceof Comment&&null!==H(s)||(null===n&&(n=o.textContent),null===(e=o.parentNode)||void 0===e||e.removeChild(o))}return n}},$e={init:function(e,t){t._blazorInputFileNextFileId=0,t.addEventListener("click",(function(){t.value=""})),t.addEventListener("change",(function(){t._blazorFilesById={};const n=Array.prototype.map.call(t.files,(function(e){const n={id:++t._blazorInputFileNextFileId,lastModified:new Date(e.lastModified).toISOString(),name:e.name,size:e.size,contentType:e.type,readPromise:void 0,arrayBuffer:void 0,blob:e};return t._blazorFilesById[n.id]=n,n}));e.invokeMethodAsync("NotifyChange",n)}))},toImageFile:async function(e,t,n,r,o){const s=He(e,t),a=await new Promise((function(e){const t=new Image;t.onload=function(){URL.revokeObjectURL(t.src),e(t)},t.onerror=function(){t.onerror=null,URL.revokeObjectURL(t.src)},t.src=URL.createObjectURL(s.blob)})),i=await new Promise((function(e){var t;const s=Math.min(1,r/a.width),i=Math.min(1,o/a.height),c=Math.min(s,i),l=document.createElement("canvas");l.width=Math.round(a.width*c),l.height=Math.round(a.height*c),null===(t=l.getContext("2d"))||void 0===t||t.drawImage(a,0,0,l.width,l.height),l.toBlob(e,n)})),c={id:++e._blazorInputFileNextFileId,lastModified:s.lastModified,name:s.name,size:(null==i?void 0:i.size)||0,contentType:n,blob:i||s.blob};return e._blazorFilesById[c.id]=c,c},readFileData:async function(e,t){return He(e,t).blob}};function He(e,t){const n=e._blazorFilesById[t];if(!n)throw new Error(`There is no file with ID ${t}. The file list may have changed. See https://aka.ms/aspnet/blazor-input-file-multiple-selections.`);return n}const Je=new Set,ze={enableNavigationPrompt:function(e){0===Je.size&&window.addEventListener("beforeunload",Ue),Je.add(e)},disableNavigationPrompt:function(e){Je.delete(e),0===Je.size&&window.removeEventListener("beforeunload",Ue)}};function Ue(e){e.preventDefault(),e.returnValue=!0}const We=new Map,Ke={navigateTo:function(e,t,n=!1){Ae(e,t instanceof Object?t:{forceLoad:t,replaceHistoryEntry:n})},registerCustomEventType:function(e,t){if(!t)throw new Error("The options parameter is required.");if(o.has(e))throw new Error(`The event '${e}' is already registered.`);if(t.browserEventName){const n=s.get(t.browserEventName);n?n.push(e):s.set(t.browserEventName,[e]),a.forEach((n=>n(e,t.browserEventName)))}o.set(e,t)},rootComponents:g,_internal:{navigationManager:Ce,domWrapper:Le,Virtualize:Be,PageTitle:xe,InputFile:$e,NavigationLock:ze,getJSDataStreamChunk:async function(e,t,n){return e instanceof Blob?await async function(e,t,n){const r=e.slice(t,t+n),o=await r.arrayBuffer();return new Uint8Array(o)}(e,t,n):function(e,t,n){return new Uint8Array(e.buffer,e.byteOffset+t,n)}(e,t,n)},receiveDotNetDataStream:function(t,n,r,o){let s=We.get(t);if(!s){const n=new ReadableStream({start(e){We.set(t,e),s=e}});e.jsCallDispatcher.supplyDotNetStream(t,n)}o?(s.error(o),We.delete(t)):0===r?(s.close(),We.delete(t)):s.enqueue(n.length===r?n:n.subarray(0,r))},attachWebRendererInterop:function(t,n,r,o){if(E.has(t))throw new Error(`Interop methods are already registered for renderer ${t}`);E.set(t,n),Object.keys(r).length>0&&function(t,n,r){if(h)throw new Error("Dynamic root components have already been enabled.");h=t,p=n;for(const[t,o]of Object.entries(r)){const r=e.jsCallDispatcher.findJSFunction(t,0);for(const e of o)r(e,n[e])}}(I(t),r,o),_()}}};let Ve;function Ge(e){return Ve=e,Ve}var Xe,Ye;window.Blazor=Ke;const qe=navigator,Ze=qe.userAgentData&&qe.userAgentData.brands,Qe=Ze?Ze.some((e=>"Google Chrome"===e.brand||"Microsoft Edge"===e.brand||"Chromium"===e.brand)):window.chrome,et=null!==(Ye=null===(Xe=qe.userAgentData)||void 0===Xe?void 0:Xe.platform)&&void 0!==Ye?Ye:navigator.platform;let tt=!1,nt=!1;function rt(){return(tt||nt)&&Qe}let ot=!1;function st(){const e=document.querySelector("#blazor-error-ui");e&&(e.style.display="block"),ot||(ot=!0,document.querySelectorAll("#blazor-error-ui .reload").forEach((e=>{e.onclick=function(e){location.reload(),e.preventDefault()}})),document.querySelectorAll("#blazor-error-ui .dismiss").forEach((e=>{e.onclick=function(e){const t=document.querySelector("#blazor-error-ui");t&&(t.style.display="none"),e.preventDefault()}})))}class at{constructor(e,t){this.bootConfig=e,this.applicationEnvironment=t}static async initAsync(e,t){const n=void 0!==e?e("manifest","blazor.boot.json","_framework/blazor.boot.json",""):a("_framework/blazor.boot.json");let r;r=n?"string"==typeof n?await a(n):await n:await a("_framework/blazor.boot.json");const o=t||r.headers.get("Blazor-Environment")||"Production",s=await r.json();return s.modifiableAssemblies=r.headers.get("DOTNET-MODIFIABLE-ASSEMBLIES"),s.aspnetCoreBrowserTools=r.headers.get("ASPNETCORE-BROWSER-TOOLS"),new at(s,o);function a(e){return fetch(e,{method:"GET",credentials:"include",cache:"no-cache"})}}}var it;let ct,lt,ut,dt;!function(e){e[e.Sharded=0]="Sharded",e[e.All=1]="All",e[e.Invariant=2]="Invariant"}(it||(it={}));const ft=Math.pow(2,32),mt=Math.pow(2,21)-1;let ht=null;function pt(e){return lt.getI32(e)}const yt={start:async function(t){(function(e){tt=!!e.bootConfig.resources.pdb,nt=e.bootConfig.debugBuild;const t=et.match(/^Mac/i)?"Cmd":"Alt";rt()&&console.info(`Debugging hotkey: Shift+${t}+D (when application has focus)`),document.addEventListener("keydown",(e=>{e.shiftKey&&(e.metaKey||e.altKey)&&"KeyD"===e.code&&(nt||tt?Qe?function(){const e=document.createElement("a");e.href=`_framework/debug?url=${encodeURIComponent(location.href)}`,e.target="_blank",e.rel="noopener noreferrer",e.click()}():console.error("Currently, only Microsoft Edge (80+), Google Chrome, or Chromium, are supported for debugging."):console.error("Cannot start debugging, because the application was not compiled with debugging enabled."))}))})(t),await async function(t){let n,r;const o=new Promise(((e,t)=>{n=e,r=t})),s=async function(e){if("undefined"==typeof WebAssembly||!WebAssembly.validate)throw new Error("This browser does not support WebAssembly.");const t=Object.keys(e.bootConfig.resources.runtime).filter((e=>e.startsWith("dotnet.")&&e.endsWith(".js")))[0],n=e.bootConfig.resources.runtime[t];let r,o=`_framework/${t}`;if(e.startOptions.loadBootResource){const r="dotnetjs",s=e.startOptions.loadBootResource(r,t,o,n);if("string"==typeof s)o=s;else if(s)throw new Error(`For a ${r} resource, custom loaders must supply a URI string.`)}if(e.bootConfig.cacheBootResources){const e=document.createElement("link");e.rel="modulepreload",e.href=o,e.crossOrigin="anonymous",e.integrity=n,document.head.appendChild(e)}const s=new Promise((e=>{r=e}));globalThis.__onDotnetRuntimeLoaded=e=>{delete globalThis.__onDotnetRuntimeLoaded,r(e)};const a=new URL(o,document.baseURI).toString(),{default:i}=await import(a);return i?(delete globalThis.__onDotnetRuntimeLoaded,i):await s}(t),a=t.bootConfig.resources,i=window.Module||{},c=["DEBUGGING ENABLED"],l=e=>c.indexOf(e)<0&&console.log(e),u=e=>{console.error(e),st()},d=i.preRun||[],f=i.postRun||[];i.preloadPlugins=[];let m=0;function h(){m++;const e=m/b.length*100;document.documentElement.style.setProperty("--blazor-load-percentage",`${e}%`),document.documentElement.style.setProperty("--blazor-load-percentage-text",`"${Math.floor(e)}%"`)}const p=t.loadResources(a.assembly,(e=>`_framework/${e}`),"assembly"),y=t.loadResources(a.pdb||{},(e=>`_framework/${e}`),"pdb"),g=t.loadResource("dotnet.wasm","_framework/dotnet.wasm",t.bootConfig.resources.runtime["dotnet.wasm"],"dotnetwasm"),b=p.concat(y,g);b.forEach((e=>e.response.then((e=>h()))));const w="dotnet.timezones.blat";let v,E;if(t.bootConfig.resources.runtime.hasOwnProperty(w)&&(v=t.loadResource(w,"_framework/dotnet.timezones.blat",t.bootConfig.resources.runtime["dotnet.timezones.blat"],"globalization"),b.push(v),v.response.then((e=>h()))),t.bootConfig.icuDataMode!==it.Invariant){const e=t.startOptions.applicationCulture||navigator.languages&&navigator.languages[0],n=function(e,t){if(!t||e.icuDataMode===it.All)return"icudt.dat";const n=t.split("-")[0];return["en","fr","it","de","es"].includes(n)?"icudt_EFIGS.dat":["zh","ko","ja"].includes(n)?"icudt_CJK.dat":"icudt_no_CJK.dat"}(t.bootConfig,e);E=t.loadResource(n,`_framework/${n}`,t.bootConfig.resources.runtime[n],"globalization"),b.push(E),E.response.then((e=>h()))}const _=await s;return await _((o=>{const{MONO:s,BINDING:a,Module:c,IMPORTS:m}=o;async function h(e,t){const n=`blazor:${e.name}`;ut.addRunDependency(n);try{const n=await e.response.then((e=>e.arrayBuffer())),r=new Uint8Array(n),s=ut._malloc(r.length);new Uint8Array(ut.HEAPU8.buffer,s,r.length).set(r),lt.mono_wasm_add_assembly(t,s,r.length),lt.loaded_files.push((o=e.url,gt.href=o,gt.href))}catch(e){return void r(e)}var o;ut.removeRunDependency(n)}return ut=c,ct=a,lt=s,dt=m,{...i,disableDotnet6Compatibility:!1,preRun:[()=>{v&&async function(e){const t="blazor:timezonedata";ut.addRunDependency(t);const n=await e.response,r=await n.arrayBuffer();ut.FS_createPath("/","usr",!0,!0),ut.FS_createPath("/usr/","share",!0,!0),ut.FS_createPath("/usr/share/","zoneinfo",!0,!0),lt.mono_wasm_load_data_archive(new Uint8Array(r),"/usr/share/zoneinfo/"),ut.removeRunDependency(t)}(v),E&&async function(e){const t="blazor:icudata";ut.addRunDependency(t);const n=await e.response,r=new Uint8Array(await n.arrayBuffer()),o=lt.mono_wasm_load_bytes_into_heap(r);if(!lt.mono_wasm_load_icu_data(o))throw new Error("Error loading ICU asset.");ut.removeRunDependency(t)}(E),p.forEach((e=>h(e,Et(e.name,".dll")))),y.forEach((e=>h(e,e.name))),Ke._internal.dotNetCriticalError=e=>u(e||"(null)"),Ke._internal.getSatelliteAssemblies=e=>{const n=ct.mono_array_to_js_array(e),r=t.bootConfig.resources.satelliteResources;if(r){const e=Promise.all(n.filter((e=>r.hasOwnProperty(e))).map((e=>t.loadResources(r[e],(e=>`_framework/${e}`),"assembly"))).reduce(((e,t)=>e.concat(t)),new Array).map((async e=>(await e.response).arrayBuffer())));return ct.js_to_mono_obj(e.then((e=>(e.length&&(Ke._internal.readSatelliteAssemblies=()=>{const t=ct.mono_obj_array_new(e.length);for(let n=0;n{const r=ct.mono_array_to_js_array(n),o=t.bootConfig.resources.lazyAssembly;if(!o)throw new Error("No assemblies have been marked as lazy-loadable. Use the 'BlazorWebAssemblyLazyLoad' item group in your project file to enable lazy loading an assembly.");const s=r.filter((e=>o.hasOwnProperty(e)));if(s.length!==r.length){const e=r.filter((e=>!s.includes(e)));throw new Error(`${e.join()} must be marked with 'BlazorWebAssemblyLazyLoad' item group in your project file to allow lazy-loading.`)}let a;if(rt()){const e=t.bootConfig.resources.pdb,n=s.map((e=>Et(e,".pdb")));e&&(a=Promise.all(n.map((e=>o.hasOwnProperty(e)?t.loadResource(e,`_framework/${e}`,o[e],"pdb"):null)).map((async e=>e?(await e.response).arrayBuffer():null))))}const i=Promise.all(s.map((e=>t.loadResource(e,`_framework/${e}`,o[e],"assembly"))).map((async e=>(await e.response).arrayBuffer())));return ct.js_to_mono_obj(Promise.all([i,a]).then((t=>(e.assemblies=t[0],e.pdbs=t[1],e.assemblies.length&&(Ke._internal.readLazyAssemblies=()=>{const{assemblies:t}=e;if(!t)return ct.mono_obj_array_new(0);const n=ct.mono_obj_array_new(t.length);for(let e=0;e{const{assemblies:t,pdbs:n}=e;if(!t)return ct.mono_obj_array_new(0);const r=ct.mono_obj_array_new(t.length);for(let e=0;e{t.bootConfig.debugBuild&&t.bootConfig.cacheBootResources&&t.logToConsole(),t.purgeUnusedCacheEntriesAsync(),t.bootConfig.icuDataMode===it.Sharded&&(lt.mono_wasm_setenv("__BLAZOR_SHARDED_ICU","1"),t.startOptions.applicationCulture&<.mono_wasm_setenv("LANG",`${t.startOptions.applicationCulture}.UTF-8`));let r="UTC";try{r=Intl.DateTimeFormat().resolvedOptions().timeZone}catch{}lt.mono_wasm_setenv("TZ",r||"UTC"),t.bootConfig.modifiableAssemblies&<.mono_wasm_setenv("DOTNET_MODIFIABLE_ASSEMBLIES",t.bootConfig.modifiableAssemblies),t.bootConfig.aspnetCoreBrowserTools&<.mono_wasm_setenv("__ASPNETCORE_BROWSER_TOOLS",t.bootConfig.aspnetCoreBrowserTools),lt.mono_wasm_load_runtime("appBinDir",rt()?-1:0),lt.mono_wasm_runtime_ready();try{ct.bind_static_method("invalid-fqn","")}catch(e){}dt.Blazor={_internal:Ke._internal},function(){const t=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","InvokeDotNet"),n=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","BeginInvokeDotNet"),r=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","EndInvokeJS"),o=wt("Microsoft.AspNetCore.Components.WebAssembly","Microsoft.AspNetCore.Components.WebAssembly.Services.DefaultWebAssemblyJSRuntime","NotifyByteArrayAvailable");e.attachDispatcher({beginInvokeDotNetFromJS:(e,t,r,o,s)=>{if(_t(),!o&&!t)throw new Error("Either assemblyName or dotNetObjectId must have a non null value.");const a=o?o.toString():t;n(e?e.toString():null,a,r,s)},endInvokeJSFromDotNet:(e,t,n)=>{r(n)},sendByteArray:(e,t)=>{vt=t,o(e)},invokeDotNetFromJS:(e,n,r,o)=>(_t(),t(e||null,n,r?r.toString():null,o))})}(),n(o)},...f],print:l,printErr:u,instantiateWasm:(e,t)=>((async()=>{let n;try{const t=await g;n=await async function(e,t){var n;const r=await e.response,o="application/wasm"===(null===(n=r.headers)||void 0===n?void 0:n.get("content-type"));if(o&&"function"==typeof WebAssembly.instantiateStreaming)return(await WebAssembly.instantiateStreaming(r,t)).instance;{o||console.warn('WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await r.arrayBuffer();return(await WebAssembly.instantiate(e,t)).instance}}(t,e)}catch(e){throw u(e.toString()),e}t(n)})(),[]),onRuntimeInitialized:()=>{E||lt.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1")}}})),await o}(t)},callEntryPoint:async function(e){const t=[[]];try{await ct.call_assembly_entry_point(e,t,"m")}catch(e){console.error(e),st()}},toUint8Array:function(e){const t=bt(e),n=pt(t),r=new Uint8Array(n);return r.set(ut.HEAPU8.subarray(t+4,t+4+n)),r},getArrayLength:function(e){return pt(bt(e))},getArrayEntryPtr:function(e,t,n){return bt(e)+4+t*n},getObjectFieldsBaseAddress:function(e){return e+8},readInt16Field:function(e,t){return n=e+(t||0),lt.getI16(n);var n},readInt32Field:function(e,t){return pt(e+(t||0))},readUint64Field:function(e,t){return function(e){const t=e>>2,n=ut.HEAPU32[t+1];if(n>mt)throw new Error(`Cannot read uint64 with high order part ${n}, because the result would exceed Number.MAX_SAFE_INTEGER.`);return n*ft+ut.HEAPU32[t]}(e+(t||0))},readFloatField:function(e,t){return n=e+(t||0),lt.getF32(n);var n},readObjectField:function(e,t){return pt(e+(t||0))},readStringField:function(e,t,n){const r=pt(e+(t||0));if(0===r)return null;if(n){const e=ct.unbox_mono_obj(r);return"boolean"==typeof e?e?"":null:e}let o;return ht?(o=ht.stringCache.get(r),void 0===o&&(o=ct.conv_string(r),ht.stringCache.set(r,o))):o=ct.conv_string(r),o},readStructField:function(e,t){return e+(t||0)},beginHeapLock:function(){return _t(),ht=new Ct,ht},invokeWhenHeapUnlocked:function(e){ht?ht.enqueuePostReleaseAction(e):e()}},gt=document.createElement("a");function bt(e){return e+12}function wt(e,t,n){const r=`[${e}] ${t}:${n}`;return ct.bind_static_method(r)}let vt=null;function Et(e,t){const n=e.lastIndexOf(".");if(n<0)throw new Error(`No extension to replace in '${e}'`);return e.substr(0,n)+t}function _t(){if(ht)throw new Error("Assertion failed - heap is currently locked")}class Ct{constructor(){this.stringCache=new Map}enqueuePostReleaseAction(e){this.postReleaseActions||(this.postReleaseActions=[]),this.postReleaseActions.push(e)}release(){var e;if(ht!==this)throw new Error("Trying to release a lock which isn't current");for(ht=null;null===(e=this.postReleaseActions)||void 0===e?void 0:e.length;)this.postReleaseActions.shift()(),_t()}}class At{constructor(e){this.batchAddress=e,this.arrayRangeReader=It,this.arrayBuilderSegmentReader=St,this.diffReader=Rt,this.editReader=Nt,this.frameReader=kt}updatedComponents(){return Ve.readStructField(this.batchAddress,0)}referenceFrames(){return Ve.readStructField(this.batchAddress,It.structLength)}disposedComponentIds(){return Ve.readStructField(this.batchAddress,2*It.structLength)}disposedEventHandlerIds(){return Ve.readStructField(this.batchAddress,3*It.structLength)}updatedComponentsEntry(e,t){return Ot(e,t,Rt.structLength)}referenceFramesEntry(e,t){return Ot(e,t,kt.structLength)}disposedComponentIdsEntry(e,t){const n=Ot(e,t,4);return Ve.readInt32Field(n)}disposedEventHandlerIdsEntry(e,t){const n=Ot(e,t,8);return Ve.readUint64Field(n)}}const It={structLength:8,values:e=>Ve.readObjectField(e,0),count:e=>Ve.readInt32Field(e,4)},St={structLength:12,values:e=>{const t=Ve.readObjectField(e,0),n=Ve.getObjectFieldsBaseAddress(t);return Ve.readObjectField(n,0)},offset:e=>Ve.readInt32Field(e,4),count:e=>Ve.readInt32Field(e,8)},Rt={structLength:4+St.structLength,componentId:e=>Ve.readInt32Field(e,0),edits:e=>Ve.readStructField(e,4),editsEntry:(e,t)=>Ot(e,t,Nt.structLength)},Nt={structLength:20,editType:e=>Ve.readInt32Field(e,0),siblingIndex:e=>Ve.readInt32Field(e,4),newTreeIndex:e=>Ve.readInt32Field(e,8),moveToSiblingIndex:e=>Ve.readInt32Field(e,8),removedAttributeName:e=>Ve.readStringField(e,16)},kt={structLength:36,frameType:e=>Ve.readInt16Field(e,4),subtreeLength:e=>Ve.readInt32Field(e,8),elementReferenceCaptureId:e=>Ve.readStringField(e,16),componentId:e=>Ve.readInt32Field(e,12),elementName:e=>Ve.readStringField(e,16),textContent:e=>Ve.readStringField(e,16),markupContent:e=>Ve.readStringField(e,16),attributeName:e=>Ve.readStringField(e,16),attributeValue:e=>Ve.readStringField(e,24,!0),attributeEventHandlerId:e=>Ve.readUint64Field(e,8)};function Ot(e,t,n){return Ve.getArrayEntryPtr(e,t,n)}class Ft{constructor(e,t,n){this.bootConfig=e,this.cacheIfUsed=t,this.startOptions=n,this.usedCacheKeys={},this.networkLoads={},this.cacheLoads={}}static async initAsync(e,t){const n=await async function(e){if(!e.cacheBootResources||"undefined"==typeof caches)return null;if(!1===window.isSecureContext)return null;const t=`blazor-resources-${document.baseURI.substring(document.location.origin.length)}`;try{return await caches.open(t)||null}catch{return null}}(e);return new Ft(e,n,t)}loadResources(e,t,n){return Object.keys(e).map((r=>this.loadResource(r,t(r),e[r],n)))}loadResource(e,t,n,r){return{name:e,url:t,response:this.cacheIfUsed?this.loadResourceWithCaching(this.cacheIfUsed,e,t,n,r):this.loadResourceWithoutCaching(e,t,n,r)}}logToConsole(){const e=Object.values(this.cacheLoads),t=Object.values(this.networkLoads),n=Tt(e),r=Tt(t),o=n+r;if(0===o)return;const s=this.bootConfig.linkerEnabled?"%c":"\n%cThis application was built with linking (tree shaking) disabled. Published applications will be significantly smaller.";console.groupCollapsed(`%cblazor%c Loaded ${jt(o)} resources${s}`,"background: purple; color: white; padding: 1px 3px; border-radius: 3px;","font-weight: bold;","font-weight: normal;"),e.length&&(console.groupCollapsed(`Loaded ${jt(n)} resources from cache`),console.table(this.cacheLoads),console.groupEnd()),t.length&&(console.groupCollapsed(`Loaded ${jt(r)} resources from network`),console.table(this.networkLoads),console.groupEnd()),console.groupEnd()}async purgeUnusedCacheEntriesAsync(){const e=this.cacheIfUsed;if(e){const t=(await e.keys()).map((async t=>{t.url in this.usedCacheKeys||await e.delete(t)}));await Promise.all(t)}}async loadResourceWithCaching(e,t,n,r,o){if(!r||0===r.length)throw new Error("Content hash is required");const s=Te(`${n}.${r}`);let a;this.usedCacheKeys[s]=!0;try{a=await e.match(s)}catch{}if(a){const e=parseInt(a.headers.get("content-length")||"0");return this.cacheLoads[t]={responseBytes:e},a}{const a=await this.loadResourceWithoutCaching(t,n,r,o);return this.addToCacheAsync(e,t,s,a),a}}loadResourceWithoutCaching(e,t,n,r){if(this.startOptions.loadBootResource){const o=this.startOptions.loadBootResource(r,e,t,n);if(o instanceof Promise)return o;"string"==typeof o&&(t=o)}return fetch(t,{cache:"no-cache",integrity:this.bootConfig.cacheBootResources?n:void 0})}async addToCacheAsync(e,t,n,r){const o=await r.clone().arrayBuffer(),s=function(e){if("undefined"!=typeof performance)return performance.getEntriesByName(e)[0]}(r.url),a=s&&s.encodedBodySize||void 0;this.networkLoads[t]={responseBytes:a};const i=new Response(o,{headers:{"content-type":r.headers.get("content-type")||"","content-length":(a||r.headers.get("content-length")||"").toString()}});try{await e.put(n,i)}catch{}}}function Tt(e){return e.reduce(((e,t)=>e+(t.responseBytes||0)),0)}function jt(e){return`${(e/1048576).toFixed(2)} MB`}class Dt{static async initAsync(e){Ke._internal.getApplicationEnvironment=()=>ct.js_string_to_mono_string(e.applicationEnvironment);const t=await Promise.all((e.bootConfig.config||[]).filter((t=>"appsettings.json"===t||t===`appsettings.${e.applicationEnvironment}.json`)).map((async e=>({name:e,content:await n(e)}))));async function n(e){const t=await fetch(e,{method:"GET",credentials:"include",cache:"no-cache"});return new Uint8Array(await t.arrayBuffer())}Ke._internal.getConfig=e=>{const n=ct.conv_string(e),r=t.find((e=>e.name===n));return r?ct.js_typed_array_to_array(r.content):void 0}}}class Lt{constructor(e){this.preregisteredComponents=e;const t={};for(let n=0;no.push(e))),e[L]=r,t&&(e[B]=t,P(t)),P(e)}(this.componentsById[t].start,this.componentsById[t].end)}getParameterValues(e){return this.componentsById[e].parameterValues}getParameterDefinitions(e){return this.componentsById[e].parameterDefinitions}getTypeName(e){return this.componentsById[e].typeName}getAssembly(e){return this.componentsById[e].assembly}getId(e){return this.preregisteredComponents[e].id}getCount(){return this.preregisteredComponents.length}}const Bt=/^\s*Blazor-Component-State:(?[a-zA-Z0-9+/=]+)$/;function Pt(e){var t;if(e.nodeType===Node.COMMENT_NODE){const n=e.textContent||"",r=Bt.exec(n),o=r&&r.groups&&r.groups.state;return o&&(null===(t=e.parentNode)||void 0===t||t.removeChild(e)),o}if(!e.hasChildNodes())return;const n=e.childNodes;for(let e=0;e.*)$/);function $t(e,t){const n=e.currentElement;if(n&&n.nodeType===Node.COMMENT_NODE&&n.textContent){const r=xt.exec(n.textContent),o=r&&r.groups&&r.groups.descriptor;if(!o)return;try{const r=function(e){const t=JSON.parse(e),{type:n}=t;if("server"!==n&&"webassembly"!==n)throw new Error(`Invalid component type '${n}'.`);return t}(o);switch(t){case"webassembly":return function(e,t,n){const{type:r,assembly:o,typeName:s,parameterDefinitions:a,parameterValues:i,prerenderId:c}=e;if("webassembly"===r){if(!o)throw new Error("assembly must be defined when using a descriptor.");if(!s)throw new Error("typeName must be defined when using a descriptor.");if(c){const e=Ht(c,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t,prerenderId:c,end:e}}return{type:r,assembly:o,typeName:s,parameterDefinitions:a&&atob(a),parameterValues:i&&atob(i),start:t}}}(r,n,e);case"server":return function(e,t,n){const{type:r,descriptor:o,sequence:s,prerenderId:a}=e;if("server"===r){if(!o)throw new Error("descriptor must be defined when using a descriptor.");if(void 0===s)throw new Error("sequence must be defined when using a descriptor.");if(!Number.isInteger(s))throw new Error(`Error parsing the sequence '${s}' for component '${JSON.stringify(e)}'`);if(a){const e=Ht(a,n);if(!e)throw new Error(`Could not find an end component comment for '${t}'`);return{type:r,sequence:s,descriptor:o,start:t,prerenderId:a,end:e}}return{type:r,sequence:s,descriptor:o,start:t}}}(r,n,e)}}catch(e){throw new Error(`Found malformed component comment at ${n.textContent}`)}}}function Ht(e,t){for(;t.next()&&t.currentElement;){const n=t.currentElement;if(n.nodeType!==Node.COMMENT_NODE)continue;if(!n.textContent)continue;const r=xt.exec(n.textContent),o=r&&r[1];if(o)return Jt(o,e),n}}function Jt(e,t){const n=JSON.parse(e);if(1!==Object.keys(n).length)throw new Error(`Invalid end of component comment: '${e}'`);const r=n.prerenderId;if(!r)throw new Error(`End of component comment must have a value for the prerendered property: '${e}'`);if(r!==t)throw new Error(`End of component comment prerendered property must match the start comment prerender id: '${t}', '${r}'`)}class zt{constructor(e){this.childNodes=e,this.currentIndex=-1,this.length=e.length}next(){return this.currentIndex++,this.currentIndexasync function(e,n){const r=function(e){const t=document.baseURI;return t.endsWith("/")?`${t}${e}`:`${t}/${e}`}(n),o=await import(r);if(void 0===o)return;const{beforeStart:s,afterStarted:a}=o;return a&&e.afterStartedCallbacks.push(a),s?s(...t):void 0}(this,e))))}async invokeAfterStartedCallbacks(e){await C,await Promise.all(this.afterStartedCallbacks.map((t=>t(e))))}}let Kt=!1;async function Vt(t){if(Kt)throw new Error("Blazor has already started.");Kt=!0,function(){if(window.parent!==window&&!window.opener&&window.frameElement){const e=window.sessionStorage&&window.sessionStorage["Microsoft.AspNetCore.Components.WebAssembly.Authentication.CachedAuthSettings"],t=e&&JSON.parse(e);return t&&t.redirect_uri&&location.href.startsWith(t.redirect_uri)}return!1}()&&await new Promise((()=>{})),S=(e,t,n)=>{const r=function(e){return de[e]}(e);r.eventDelegator.getHandler(t)&&yt.invokeWhenHeapUnlocked(n)},Ke._internal.applyHotReload=(t,n,r,o)=>{e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","ApplyHotReloadDelta",t,n,r,o)},Ke._internal.getApplyUpdateCapabilities=()=>e.invokeMethod("Microsoft.AspNetCore.Components.WebAssembly","GetApplyUpdateCapabilities"),Ke._internal.invokeJSFromDotNet=Gt,Ke._internal.endInvokeDotNetFromJS=Xt,Ke._internal.receiveByteArray=Yt,Ke._internal.retrieveByteArray=qt;const n=Ge(yt);Ke.platform=n,Ke._internal.renderBatch=(e,t)=>{const n=yt.beginHeapLock();try{!function(e,t){const n=de[e];if(!n)throw new Error(`There is no browser renderer with ID ${e}.`);const r=t.arrayRangeReader,o=t.updatedComponents(),s=r.values(o),a=r.count(o),i=t.referenceFrames(),c=r.values(i),l=t.diffReader;for(let e=0;ect.js_string_to_mono_string(r()),Ke._internal.navigationManager.getUnmarshalledLocationHref=()=>ct.js_string_to_mono_string(o()),Ke._internal.navigationManager.listenForNavigationEvents((async(t,n,r)=>{await e.invokeMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChanged",t,n,r)}),(async(t,n,r,o)=>{const s=await e.invokeMethodAsync("Microsoft.AspNetCore.Components.WebAssembly","NotifyLocationChangingAsync",n,r,o);Ke._internal.navigationManager.endLocationChanging(t,s)}));const s=null!=t?t:{},a=s.environment,i=at.initAsync(s.loadBootResource,a),c=function(e,t){return function(e){const t=Mt(e,"webassembly"),n=[];for(let e=0;ee.id-t.id))}(e)}(document),l=new Lt(c);Ke._internal.registeredComponents={getRegisteredComponentsCount:()=>l.getCount(),getId:e=>l.getId(e),getAssembly:e=>ct.js_string_to_mono_string(l.getAssembly(e)),getTypeName:e=>ct.js_string_to_mono_string(l.getTypeName(e)),getParameterDefinitions:e=>ct.js_string_to_mono_string(l.getParameterDefinitions(e)||""),getParameterValues:e=>ct.js_string_to_mono_string(l.getParameterValues(e)||"")},Ke._internal.getPersistedState=()=>ct.js_string_to_mono_string(Pt(document)||""),Ke._internal.attachRootComponentToElement=(e,t,n)=>{const r=l.resolveRegisteredElement(e);r?me(n,r,t,!1):function(e,t,n){const r="::after";let o=!1;if(e.endsWith(r))e=e.slice(0,-r.length),o=!0;else if(e.endsWith("::before"))throw new Error("The '::before' selector is not supported.");const s=function(e){const t=m.get(e);if(t)return m.delete(e),t}(e)||document.querySelector(e);if(!s)throw new Error(`Could not find any element matching selector '${e}'.`);me(n||0,P(s,!0),t,o)}(e,t,n)};const u=await i,d=await async function(e,t){const n=e.resources.libraryInitializers,r=new Wt;return n&&await r.importInitializersAsync(Object.keys(n),[t,e.resources.extensions]),r}(u.bootConfig,s),[f]=await Promise.all([Ft.initAsync(u.bootConfig,s||{}),Dt.initAsync(u)]);try{await n.start(f)}catch(e){throw new Error(`Failed to start platform. Reason: ${e}`)}n.callEntryPoint(f.bootConfig.entryAssembly),d.invokeAfterStartedCallbacks(Ke)}function Gt(t,n,r,o){const s=yt.readStringField(t,0),a=yt.readInt32Field(t,4),i=yt.readStringField(t,8),c=yt.readUint64Field(t,20);if(null!==i){const n=yt.readUint64Field(t,12);if(0!==n)return e.jsCallDispatcher.beginInvokeJSFromDotNet(n,s,i,a,c),0;{const t=e.jsCallDispatcher.invokeJSFromDotNet(s,i,a,c);return null===t?0:ct.js_string_to_mono_string(t)}}{const t=e.jsCallDispatcher.findJSFunction(s,c).call(null,n,r,o);switch(a){case e.JSCallResultType.Default:return t;case e.JSCallResultType.JSObjectReference:return e.createJSObjectReference(t).__jsObjectId;case e.JSCallResultType.JSStreamReference:{const n=e.createJSStreamReference(t),r=JSON.stringify(n);return ct.js_string_to_mono_string(r)}case e.JSCallResultType.JSVoidResult:return null;default:throw new Error(`Invalid JS call result type '${a}'.`)}}}function Xt(t,n,r){const o=ct.conv_string(t),s=0!==n,a=ct.conv_string(r);e.jsCallDispatcher.endInvokeDotNetFromJS(o,s,a)}function Yt(t,n){const r=t,o=yt.toUint8Array(n);e.jsCallDispatcher.receiveByteArray(r,o)}function qt(){if(null===vt)throw new Error("Byte array not available for transfer");return ct.js_typed_array_to_array(vt)}Ke.start=Vt,document&&document.currentScript&&"false"!==document.currentScript.getAttribute("autostart")&&Vt().catch((e=>{void 0!==ut&&ut.printErr?ut.printErr(e):console.error(e)}))})(); \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js.gz new file mode 100644 index 000000000..b11efc1e8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/blazor.webassembly.js.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js new file mode 100644 index 000000000..133ee2bdf --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js @@ -0,0 +1,33 @@ +//! Licensed to the .NET Foundation under one or more agreements. +//! The .NET Foundation licenses this file to you under the MIT license. +var __dotnet_runtime=function(e){"use strict";var t="7.0.5",n=false,r="Release";let o,s,i,a,c,u,l,f;const _={},d={};let m;function g(e,t){s=t.internal,i=t.marshaled_imports,o=t.module,w(e),a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread,b.quit=e.quit_,b.ExitStatus=e.ExitStatus,b.requirePromise=e.requirePromise}function w(e){a=e.isNode,c=e.isShell,u=e.isWeb,l=e.isWorker,f=e.isPThread}function h(e){m=e}const p=undefined,b={javaScriptExports:{},mono_wasm_load_runtime_done:false,mono_wasm_bindings_is_ready:false,maxParallelDownloads:16,config:{environmentVariables:{}},diagnosticTracing:false},y=0,v=0,E=0,A=0,S=0,O=0,x=-1,j=0,$=0,N=0,k=0;function T(e){return void 0===e||null===e}const R=[[true,"mono_wasm_register_root","number",["number","number","string"]],[true,"mono_wasm_deregister_root",null,["number"]],[true,"mono_wasm_string_get_data",null,["number","number","number","number"]],[true,"mono_wasm_string_get_data_ref",null,["number","number","number","number"]],[true,"mono_wasm_set_is_debugger_attached","void",["bool"]],[true,"mono_wasm_send_dbg_command","bool",["number","number","number","number","number"]],[true,"mono_wasm_send_dbg_command_with_parms","bool",["number","number","number","number","number","number","string"]],[true,"mono_wasm_setenv",null,["string","string"]],[true,"mono_wasm_parse_runtime_options",null,["number","number"]],[true,"mono_wasm_strdup","number",["string"]],[true,"mono_background_exec",null,[]],[true,"mono_set_timeout_exec",null,[]],[true,"mono_wasm_load_icu_data","number",["number"]],[true,"mono_wasm_get_icudt_name","string",["string"]],[false,"mono_wasm_add_assembly","number",["string","number","number"]],[true,"mono_wasm_add_satellite_assembly","void",["string","string","number","number"]],[false,"mono_wasm_load_runtime",null,["string","number"]],[true,"mono_wasm_change_debugger_log_level","void",["number"]],[true,"mono_wasm_get_corlib","number",[]],[true,"mono_wasm_assembly_load","number",["string"]],[true,"mono_wasm_find_corlib_class","number",["string","string"]],[true,"mono_wasm_assembly_find_class","number",["number","string","string"]],[true,"mono_wasm_runtime_run_module_cctor","void",["number"]],[true,"mono_wasm_find_corlib_type","number",["string","string"]],[true,"mono_wasm_assembly_find_type","number",["number","string","string"]],[true,"mono_wasm_assembly_find_method","number",["number","string","number"]],[true,"mono_wasm_invoke_method","number",["number","number","number","number"]],[false,"mono_wasm_invoke_method_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_string_get_utf8","number",["number"]],[true,"mono_wasm_string_from_utf16_ref","void",["number","number","number"]],[true,"mono_wasm_get_obj_type","number",["number"]],[true,"mono_wasm_array_length","number",["number"]],[true,"mono_wasm_array_get","number",["number","number"]],[true,"mono_wasm_array_get_ref","void",["number","number","number"]],[false,"mono_wasm_obj_array_new","number",["number"]],[false,"mono_wasm_obj_array_new_ref","void",["number","number"]],[false,"mono_wasm_obj_array_set","void",["number","number","number"]],[false,"mono_wasm_obj_array_set_ref","void",["number","number","number"]],[true,"mono_wasm_register_bundled_satellite_assemblies","void",[]],[false,"mono_wasm_try_unbox_primitive_and_get_type_ref","number",["number","number","number"]],[true,"mono_wasm_box_primitive_ref","void",["number","number","number","number"]],[true,"mono_wasm_intern_string_ref","void",["number"]],[true,"mono_wasm_assembly_get_entry_point","number",["number"]],[true,"mono_wasm_get_delegate_invoke_ref","number",["number"]],[true,"mono_wasm_string_array_new_ref","void",["number","number"]],[true,"mono_wasm_typed_array_new_ref","void",["number","number","number","number","number"]],[true,"mono_wasm_class_get_type","number",["number"]],[true,"mono_wasm_type_get_class","number",["number"]],[true,"mono_wasm_get_type_name","string",["number"]],[true,"mono_wasm_get_type_aqn","string",["number"]],[true,"mono_wasm_event_pipe_enable","bool",["string","number","number","string","bool","number"]],[true,"mono_wasm_event_pipe_session_start_streaming","bool",["number"]],[true,"mono_wasm_event_pipe_session_disable","bool",["number"]],[true,"mono_wasm_diagnostic_server_create_thread","bool",["string","number"]],[true,"mono_wasm_diagnostic_server_thread_attach_to_runtime","void",[]],[true,"mono_wasm_diagnostic_server_post_resume_runtime","void",[]],[true,"mono_wasm_diagnostic_server_create_stream","number",[]],[true,"mono_wasm_string_from_js","number",["string"]],[false,"mono_wasm_exit","void",["number"]],[true,"mono_wasm_getenv","number",["string"]],[true,"mono_wasm_set_main_args","void",["number","number"]],[false,"mono_wasm_enable_on_demand_gc","void",["number"]],[false,"mono_profiler_init_aot","void",["number"]],[false,"mono_wasm_exec_regression","number",["number","string"]],[false,"mono_wasm_invoke_method_bound","number",["number","number"]],[true,"mono_wasm_write_managed_pointer_unsafe","void",["number","number"]],[true,"mono_wasm_copy_managed_pointer","void",["number","number"]],[true,"mono_wasm_i52_to_f64","number",["number","number"]],[true,"mono_wasm_u52_to_f64","number",["number","number"]],[true,"mono_wasm_f64_to_i52","number",["number","number"]],[true,"mono_wasm_f64_to_u52","number",["number","number"]]],M={};function I(){const e=!!f;for(const t of R){const n=M,[r,s,i,a,c]=t;if(r||e)n[s]=function(...e){const t=o.cwrap(s,i,a,c);return n[s]=t,t(...e)};else{const e=o.cwrap(s,i,a,c);n[s]=e}}}function D(e,t,n){const r=C(e,t,n);let o="",s=0,i=0,a=0,c=0,u=0,l=0;const f=16777215,_=262143,d=4095,m=63,g=18,w=12,h=6,p=0;for(;s=r.read(),i=r.read(),a=r.read(),null!==s;)null===i&&(i=0,u+=1),null===a&&(a=0,u+=1),l=s<<16|i<<8|a<<0,c=(l&f)>>g,o+=U[c],c=(l&_)>>w,o+=U[c],u<2&&(c=(l&d)>>6,o+=U[c]),2===u?o+="==":1===u?o+="=":(c=(l&m)>>0,o+=U[c]);return o}const U=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"];function C(e,t,n){let r="number"===typeof t?t:0,o;o="number"===typeof n?r+n:e.length-r;const s={read:function(){if(r>=o)return null;const t=e[r];return r+=1,t}};return Object.defineProperty(s,"eof",{get:function(){return r>=o},configurable:true,enumerable:true}),s}const P=new Map;P.remove=function(e){const t=this.get(e);return this.delete(e),t};let W={},F=0,B=-1,V,H,z;function mono_wasm_runtime_ready(){if(s.mono_wasm_runtime_is_ready=b.mono_wasm_runtime_is_ready=true,F=0,W={},B=-1,globalThis.dotnetDebugger)debugger;else console.debug("mono_wasm_runtime_ready","fe00e07a-5519-4dfe-b35a-f867dbaf2e28")}function mono_wasm_fire_debugger_agent_message(){debugger}function L(e,t,n,r){const s=undefined,i=undefined,a={res_ok:e,res:{id:t,value:D(new Uint8Array(o.HEAPU8.buffer,n,r))}};P.has(t)&&console.warn(`MONO_WASM: Adding an id (${t}) that already exists in commands_received`),P.set(t,a)}function J(e){e.length>B&&(V&&o._free(V),B=Math.max(e.length,B,256),V=o._malloc(B));const t=atob(e);for(let e=0;e{const t=setInterval((()=>{1==b.waitForDebugger&&(clearInterval(t),e())}),100)}))}function te(){-1==b.waitForDebugger&&(b.waitForDebugger=1),M.mono_wasm_set_is_debugger_attached(true)}function ne(e,t){H=o.UTF8ToString(e).concat(".dll"),z=t,console.assert(true,`Adding an entrypoint breakpoint ${H} at method token ${z}`);debugger}function re(e,t){if(e.startsWith("dotnet:array:")){let e;if(void 0===t.items)return e=t.map((e=>e.value)),e;if(void 0===t.dimensionsDetails||1===t.dimensionsDetails.length)return e=t.items.map((e=>e.value)),e}const n={};return Object.keys(t).forEach((e=>{const r=t[e];void 0!==r.get?Object.defineProperty(n,r.name,{get(){return G(r.get.id,r.get.commandSet,r.get.command,r.get.buffer)},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):void 0!==r.set?Object.defineProperty(n,r.name,{get(){return r.value},set:function(e){return q(r.set.id,r.set.commandSet,r.set.command,r.set.buffer,r.set.length,r.set.valtype,e),true}}):n[r.name]=r.value})),n}function oe(e){if(void 0!=e.arguments&&!Array.isArray(e.arguments))throw new Error(`"arguments" should be an array, but was ${e.arguments}`);const t=e.objectId,n=e.details;let r={};if(t.startsWith("dotnet:cfo_res:")){if(!(t in W))throw new Error(`Unknown object id ${t}`);r=W[t]}else r=re(t,n);const o=void 0!=e.arguments?e.arguments.map((e=>JSON.stringify(e.value))):[],s=`const fn = ${e.functionDeclaration}; return fn.apply(proxy, [${o}]);`,i=undefined,a=new Function("proxy",s)(r);if(void 0===a)return{type:"undefined"};if(Object(a)!==a)return"object"==typeof a&&null==a?{type:typeof a,subtype:`${a}`,value:null}:{type:typeof a,description:`${a}`,value:`${a}`};if(e.returnByValue&&void 0==a.subtype)return{type:"object",value:a};if(Object.getPrototypeOf(a)==Array.prototype){const e=ae(a);return{type:"object",subtype:"array",className:"Array",description:`Array(${a.length})`,objectId:e}}if(void 0!==a.value||void 0!==a.subtype)return a;if(a==r)return{type:"object",className:"Object",description:"Object",objectId:t};const c=undefined;return{type:"object",className:"Object",description:"Object",objectId:ae(a)}}function se(e,t){if(!(e in W))throw new Error(`Could not find any object with id ${e}`);const n=W[e],r=Object.getOwnPropertyDescriptors(n);t.accessorPropertiesOnly&&Object.keys(r).forEach((e=>{void 0===r[e].get&&Reflect.deleteProperty(r,e)}));const o=[];return Object.keys(r).forEach((e=>{let t;const n=r[e];t="object"==typeof n.value?Object.assign({name:e},n):void 0!==n.value?{name:e,value:Object.assign({type:typeof n.value,description:""+n.value},n)}:void 0!==n.get?{name:e,get:{className:"Function",description:`get ${e} () {}`,type:"function"}}:{name:e,value:{type:"symbol",value:"",description:""}},o.push(t)})),{__value_as_json_string__:JSON.stringify(o)}}function ie(e,t={}){return se(`dotnet:cfo_res:${e}`,t)}function ae(e){const t="dotnet:cfo_res:"+F++;return W[t]=e,t}function ce(e){e in W&&delete W[e]}function ue(e,t){const n=o.UTF8ToString(t);if(s.logging&&"function"===typeof s.logging.debugger)return s.logging.debugger(e,n),void 0}let le=0;function fe(e){const t=1===M.mono_wasm_load_icu_data(e);return t&&le++,t}function _e(e){return M.mono_wasm_get_icudt_name(e)}function de(){const e=b.config;let t=false;if(e.globalizationMode||(e.globalizationMode="auto"),"invariant"===e.globalizationMode&&(t=true),!t)if(le>0)b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) loaded, disabling invariant mode");else{if("icu"===e.globalizationMode){const e="invariant globalization mode is inactive and no ICU data archives were loaded";throw o.printErr(`MONO_WASM: ERROR: ${e}`),new Error(e)}b.diagnosticTracing&&console.debug("MONO_WASM: ICU data archive(s) not loaded, using invariant globalization mode"),t=true}t&&M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT","1"),M.mono_wasm_setenv("DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY","1")}function me(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="System.Runtime.InteropServices.JavaScript.JavaScriptExports::StopProfile"),"sendTo"in e||(e.sendTo="Interop/Runtime::DumpAotProfileData");const t="aot:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_aot",null,["string"],[t])}function ge(e){null==e&&(e={}),"writeAt"in e||(e.writeAt="WebAssembly.Runtime::StopProfile"),"sendTo"in e||(e.sendTo="WebAssembly.Runtime::DumpCoverageProfileData");const t="coverage:write-at-method="+e.writeAt+",send-to-method="+e.sendTo;o.ccall("mono_wasm_load_profiler_coverage",null,["string"],[t])}const we=new Map,he=new Map;let pe=0;function be(e){if(we.has(e))return we.get(e);const t=M.mono_wasm_assembly_load(e);return we.set(e,t),t}function ye(e,t,n){let r=he.get(e);r||he.set(e,r=new Map);let o=r.get(t);return o||(o=new Map,r.set(t,o)),o.get(n)}function ve(e,t,n,r){const o=he.get(e);if(!o)throw new Error("internal error");const s=o.get(t);if(!s)throw new Error("internal error");s.set(n,r)}function Ee(e,t,n){pe||(pe=M.mono_wasm_get_corlib());let r=ye(pe,e,t);if(void 0!==r)return r;if(r=M.mono_wasm_assembly_find_class(pe,e,t),n&&!r)throw new Error(`Failed to find corlib class ${e}.${t}`);return ve(pe,e,t,r),r} +//! Licensed to the .NET Foundation under one or more agreements. +const Ae=new Map,Se=[];function Oe(e){try{if(0==Ae.size)return e;const t=e;for(let n=0;n{const n=t.find((e=>"object"==typeof e&&void 0!==e.replaceSection));if(void 0===n)return e;const r=n.funcNum,o=n.replaceSection,s=Ae.get(Number(r));return void 0===s?e:e.replace(o,`${s} (${o})`)}));if(r!==t)return r}return t}catch(t){return console.debug(`MONO_WASM: failed to symbolicate: ${t}`),e}}function xe(e){let t=e;return t instanceof Error||(t=new Error(t)),Oe(t.stack)}function je(e,t,n,r,i){const a=o.UTF8ToString(n),c=!!r,u=o.UTF8ToString(e),l=i,f=o.UTF8ToString(t),_=`[MONO] ${a}`;if(s.logging&&"function"===typeof s.logging.trace)return s.logging.trace(u,f,_,c,l),void 0;switch(f){case"critical":case"error":console.error(xe(_));break;case"warning":console.warn(_);break;case"message":console.log(_);break;case"info":console.info(_);break;case"debug":console.debug(_);break;default:console.log(_);break}}let $e;function Ne(e,t,n){const r={log:t.log,error:t.error},o=t;function s(t,n,o){return function(...s){try{let r=s[0];if(void 0===r)r="undefined";else if(null===r)r="null";else if("function"===typeof r)r=r.toString();else if("string"!==typeof r)try{r=JSON.stringify(r)}catch(e){r=r.toString()}"string"===typeof r&&"main"!==e&&(r=`[${e}] ${r}`),n(o?JSON.stringify({method:t,payload:r,arguments:s}):[t+r,...s.slice(1)])}catch(e){r.error(`proxyConsole failed: ${e}`)}}}const i=["debug","trace","warn","info","error"];for(const e of i)"function"!==typeof o[e]&&(o[e]=s(`console.${e}: `,t.log,false));const a=`${n}/console`.replace("https://","wss://").replace("http://","ws://");$e=new WebSocket(a),$e.addEventListener("open",(()=>{r.log(`browser: [${e}] Console websocket connected.`)})),$e.addEventListener("error",(t=>{r.error(`[${e}] websocket error: ${t}`,t)})),$e.addEventListener("close",(t=>{r.error(`[${e}] websocket closed: ${t}`,t)}));const c=e=>{$e.readyState===WebSocket.OPEN?$e.send(e):r.log(e)};for(const e of["log",...i])o[e]=s(`console.${e}`,c,true)}function ke(e){if(!b.mono_wasm_symbols_are_ready){b.mono_wasm_symbols_are_ready=true;try{const t=undefined;o.FS_readFile(e,{flags:"r",encoding:"utf8"}).split(/[\r\n]/).forEach((e=>{const t=e.split(/:/);t.length<2||(t[1]=t.splice(1).join(":"),Ae.set(Number(t[0]),t[1]))}))}catch(t){return 44==t.errno||console.log(`MONO_WASM: Error loading symbol file ${e}: ${JSON.stringify(t)}`),void 0}}}async function Te(e,t){try{const n=await Re(e,t);return De(n),n}catch(e){return e instanceof b.ExitStatus?e.status:(De(1,e),1)}}async function Re(e,t){Ic(e,t),-1==b.waitForDebugger&&(console.log("MONO_WASM: waiting for debugger..."),await ee());const n=Me(e);return b.javaScriptExports.call_entry_point(n,t)}function Me(e){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const t=be(e);if(!t)throw new Error("Could not find assembly: "+e);let n=0;1==b.waitForDebugger&&(n=1);const r=M.mono_wasm_assembly_get_entry_point(t,n);if(!r)throw new Error("Could not find entry point for assembly: "+e);return r}function Ie(e){bc(e,false),De(1,e)}function De(e,t){if(b.config.asyncFlushOnExit&&0===e)throw(async()=>{try{await Ue()}finally{Ce(e,t)}})(),b.ExitStatus?new b.ExitStatus(e):t||new Error("Stop with exit code "+e);Ce(e,t)}async function Ue(){try{const e=await import("process"),t=e=>new Promise(((t,n)=>{e.on("error",(e=>n(e))),e.write("",(function(){t()}))})),n=t(e.stderr),r=t(e.stdout);await Promise.all([r,n])}catch(e){console.error(`flushing std* streams failed: ${e}`)}}function Ce(e,t){if(b.ExitStatus&&(!t||t instanceof b.ExitStatus?t=new b.ExitStatus(e):t instanceof Error?o.printErr(s.mono_wasm_stringify_as_error_with_stack(t)):"string"==typeof t?o.printErr(t):o.printErr(JSON.stringify(t))),We(e,t),Pe(e),0!==e||!u){if(!b.quit)throw t;b.quit(e,t)}}function Pe(e){if(u&&b.config.appendElementOnExit){const t=document.createElement("label");t.id="tests_done",e&&(t.style.background="red"),t.innerHTML=e.toString(),document.body.appendChild(t)}}function We(e,t){if(b.config.logExitCode)if(0!=e&&t&&(t instanceof Error?console.error(xe(t)):"string"==typeof t?console.error(t):console.error(JSON.stringify(t))),$e){const t=()=>{0==$e.bufferedAmount?console.log("WASM EXIT "+e):setTimeout(t,100)};t()}else console.log("WASM EXIT "+e)}Se.push(/at (?[^:()]+:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)((?![^)a-fA-F\d])|$)/),Se.push(/(?:WASM \[[\da-zA-Z]+\], (?function #(?[\d]+) \(''\)))/),Se.push(/(?[a-z]+:\/\/[^ )]*:wasm-function\[(?\d+)\]:0x[a-fA-F\d]+)/),Se.push(/(?<[^ >]+>[.:]wasm-function\[(?[0-9]+)\])/);const Fe="function"===typeof globalThis.WeakRef;function Be(e){return Fe?new WeakRef(e):{deref:()=>e}}const Ve="function"===typeof globalThis.FinalizationRegistry;let He;const ze=[],Le=[];let Je=1;const qe=new Map;Ve&&(He=new globalThis.FinalizationRegistry(rt));const Ge=Symbol.for("wasm js_owned_gc_handle"),Ye=Symbol.for("wasm cs_owned_js_handle");function Ze(e){return 0!==e&&e!==x?ze[e]:null}function Xe(e){return 0!==e&&e!==x?Ze(e):null}function Qe(e){if(e[Ye])return e[Ye];const t=Le.length?Le.pop():Je++;return ze[t]=e,Object.isExtensible(e)&&(e[Ye]=t),t}function Ke(e){const t=ze[e];if("undefined"!==typeof t&&null!==t){if(globalThis===t)return;"undefined"!==typeof t[Ye]&&(t[Ye]=void 0),ze[e]=void 0,Le.push(e)}}function et(e,t){e[Ge]=t,Ve&&He.register(e,t,e);const n=Be(e);qe.set(t,n)}function tt(e,t){e&&(t=e[Ge],e[Ge]=0,Ve&&He.unregister(e)),0!==t&&qe.delete(t)&&b.javaScriptExports.release_js_owned_object_by_gc_handle(t)}function nt(e){const t=e[Ge];if(!(0!=t))throw new Error("Assert failed: ObjectDisposedException");return t}function rt(e){tt(null,e)}function ot(e){if(!e)return null;const t=qe.get(e);return t?t.deref():null}const st=Symbol.for("wasm promise_control");function it(e,t){let n=null;const r=new Promise((function(r,o){n={isDone:false,promise:null,resolve:t=>{n.isDone||(n.isDone=true,r(t),e&&e())},reject:e=>{n.isDone||(n.isDone=true,o(e),t&&t())}}}));n.promise=r;const o=r;return o[st]=n,{promise:o,promise_control:n}}function at(e){return e[st]}function ct(e){return void 0!==e[st]}function ut(e){if(!ct(e))throw new Error("Assert failed: Promise is not controllable")}const lt=("object"===typeof Promise||"function"===typeof Promise)&&"function"===typeof Promise.resolve;function ft(e){return Promise.resolve(e)===e||("object"===typeof e||"function"===typeof e)&&"function"===typeof e.then}function _t(e){const{promise:t,promise_control:n}=it(),r=undefined;return e().then((e=>n.resolve(e))).catch((e=>n.reject(e))),t}function dt(e){const t=ot(e);if(!t)return;const n=t.promise;if(!!!n)throw new Error(`Assert failed: Expected Promise for GCHandle ${e}`);ut(n);const r=undefined;at(n).reject("OperationCanceledException")}const mt=[],gt=32768;let wt,ht,pt=null;function bt(){wt||(wt=o._malloc(gt),ht=wt)}const yt="undefined"!==typeof BigInt&&"undefined"!==typeof BigInt64Array;function vt(){bt(),mt.push(ht)}function Et(){if(!mt.length)throw new Error("No temp frames have been created at this point");ht=mt.pop()}function At(e,t,n){if(!Number.isSafeInteger(e))throw new Error(`Assert failed: Value is not an integer: ${e} (${typeof e})`);if(!(e>=t&&e<=n))throw new Error(`Assert failed: Overflow: value ${e} is out of ${t} ${n} range`)}function St(e,t){o.HEAP8.fill(0,e,t+e)}function Ot(e,t){const n=!!t;"number"===typeof t&&At(t,0,1),o.HEAP32[e>>>2]=n?1:0}function xt(e,t){At(t,0,255),o.HEAPU8[e]=t}function jt(e,t){At(t,0,65535),o.HEAPU16[e>>>1]=t}function $t(e,t){o.HEAPU32[e>>>2]=t}function Nt(e,t){At(t,0,4294967295),o.HEAPU32[e>>>2]=t}function kt(e,t){At(t,-128,127),o.HEAP8[e]=t}function Tt(e,t){At(t,-32768,32767),o.HEAP16[e>>>1]=t}function Rt(e,t){o.HEAP32[e>>>2]=t}function Mt(e,t){At(t,-2147483648,2147483647),o.HEAP32[e>>>2]=t}function It(e){if(0!==e)switch(e){case 1:throw new Error("value was not an integer");case 2:throw new Error("value out of range");default:throw new Error("unknown internal error")}}function Dt(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);const n=undefined;It(M.mono_wasm_f64_to_i52(e,t))}function Ut(e,t){if(!Number.isSafeInteger(t))throw new Error(`Assert failed: Value is not a safe integer: ${t} (${typeof t})`);if(!(t>=0))throw new Error("Assert failed: Can't convert negative Number into UInt64");const n=undefined;It(M.mono_wasm_f64_to_u52(e,t))}function Ct(e,t){if(!yt)throw new Error("Assert failed: BigInt is not supported.");if(!("bigint"===typeof t))throw new Error(`Assert failed: Value is not an bigint: ${t} (${typeof t})`);if(!(t>=Kt&&t<=Qt))throw new Error(`Assert failed: Overflow: value ${t} is out of ${Kt} ${Qt} range`);pt[e>>>3]=t}function Pt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF32[e>>>2]=t}function Wt(e,t){if(!("number"===typeof t))throw new Error(`Assert failed: Value is not a Number: ${t} (${typeof t})`);o.HEAPF64[e>>>3]=t}function Ft(e){return!!o.HEAP32[e>>>2]}function Bt(e){return o.HEAPU8[e]}function Vt(e){return o.HEAPU16[e>>>1]}function Ht(e){return o.HEAPU32[e>>>2]}function zt(e){return o.HEAP8[e]}function Lt(e){return o.HEAP16[e>>>1]}function Jt(e){return o.HEAP32[e>>>2]}function qt(e){const t=M.mono_wasm_i52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Gt(e){const t=M.mono_wasm_u52_to_f64(e,b._i52_error_scratch_buffer),n=undefined;return It(Jt(b._i52_error_scratch_buffer)),t}function Yt(e){if(!yt)throw new Error("Assert failed: BigInt is not supported.");return pt[e>>>3]}function Zt(e){return o.HEAPF32[e>>>2]}function Xt(e){return o.HEAPF64[e>>>3]}let Qt,Kt;function en(e){yt&&(Qt=BigInt("9223372036854775807"),Kt=BigInt("-9223372036854775808"),pt=new BigInt64Array(e))}function tn(e){const t=o._malloc(e.length),n=undefined;return new Uint8Array(o.HEAPU8.buffer,t,e.length).set(e),t}const nn=8192;let rn=null,on=null,sn=0;const an=[],cn=[];function un(e,t){if(e<=0)throw new Error("capacity >= 1");const n=4*(e|=0),r=o._malloc(n);if(r%4!==0)throw new Error("Malloc returned an unaligned offset");return St(r,n),new WasmRootBufferImpl(r,e,true,t)}function ln(e){let t;if(!e)throw new Error("address must be a location in the native heap");return cn.length>0?(t=cn.pop(),t._set_address(e)):t=new wn(e),t}function fn(e){let t;if(an.length>0)t=an.pop();else{const e=mn(),n=undefined;t=new gn(rn,e)}if(void 0!==e){if("number"!==typeof e)throw new Error("value must be an address in the managed heap");t.set(e)}else t.set(0);return t}function _n(...e){for(let t=0;t>>2,this.__count=t,this.length=t,this.__handle=M.mono_wasm_register_root(e,o,r||"noname"),this.__ownsAllocation=n}_throw_index_out_of_range(){throw new Error("index out of range")}_check_in_range(e){(e>=this.__count||e<0)&&this._throw_index_out_of_range()}get_address(e){return this._check_in_range(e),this.__offset+4*e}get_address_32(e){return this._check_in_range(e),this.__offset32+e}get(e){this._check_in_range(e);const t=this.get_address_32(e);return o.HEAPU32[t]}set(e,t){const n=this.get_address(e);return M.mono_wasm_write_managed_pointer_unsafe(n,t),t}copy_value_from_address(e,t){const n=this.get_address(e);M.mono_wasm_copy_managed_pointer(n,t)}_unsafe_get(e){return o.HEAPU32[this.__offset32+e]}_unsafe_set(e,t){const n=this.__offset+e;M.mono_wasm_write_managed_pointer_unsafe(n,t)}clear(){this.__offset&&St(this.__offset,4*this.__count)}release(){this.__offset&&this.__ownsAllocation&&(M.mono_wasm_deregister_root(this.__offset),St(this.__offset,4*this.__count),o._free(this.__offset)),this.__handle=this.__offset=this.__count=this.__offset32=0}toString(){return`[root buffer @${this.get_address(0)}, size ${this.__count} ]`}}class gn{constructor(e,t){this.__buffer=e,this.__index=t}get_address(){return this.__buffer.get_address(this.__index)}get_address_32(){return this.__buffer.get_address_32(this.__index)}get address(){return this.__buffer.get_address(this.__index)}get(){const e=undefined;return this.__buffer._unsafe_get(this.__index)}set(e){const t=this.__buffer.get_address(this.__index);return M.mono_wasm_write_managed_pointer_unsafe(t,e),e}copy_from(e){const t=e.address,n=this.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){if(!this.__buffer)throw new Error("No buffer");const e=128;an.length>e?(dn(this.__index),this.__buffer=null,this.__index=0):(this.set(0),an.push(this))}toString(){return`[root @${this.address}]`}}class wn{constructor(e){this.__external_address=0,this.__external_address_32=0,this._set_address(e)}_set_address(e){this.__external_address=e,this.__external_address_32=e>>>2}get address(){return this.__external_address}get_address(){return this.__external_address}get_address_32(){return this.__external_address_32}get(){const e=undefined;return o.HEAPU32[this.__external_address_32]}set(e){return M.mono_wasm_write_managed_pointer_unsafe(this.__external_address,e),e}copy_from(e){const t=e.address,n=this.__external_address;M.mono_wasm_copy_managed_pointer(n,t)}copy_to(e){const t=this.__external_address,n=e.address;M.mono_wasm_copy_managed_pointer(n,t)}copy_from_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(t,e)}copy_to_address(e){const t=this.__external_address;M.mono_wasm_copy_managed_pointer(e,t)}get value(){return this.get()}set value(e){this.set(e)}valueOf(){throw new Error("Implicit conversion of roots to pointers is no longer supported. Use .value or .address as appropriate")}clear(){this.set(0)}release(){const e=128;cn.length=r&&(vr=null),vr||(vr=un(r,"interned strings"),Er=0);const o=vr,s=Er++;if(n&&(M.mono_wasm_intern_string_ref(t.address),!t.value))throw new Error("mono_wasm_intern_string_ref produced a null pointer");br.set(e,t.value),pr.set(t.value,e),0!==e.length||yr||(yr=t.value),o.copy_value_from_address(s,t.address)}function Nr(e,t){let n;if("symbol"===typeof e?(n=e.description,"string"!==typeof n&&(n=Symbol.keyFor(e)),"string"!==typeof n&&(n="")):"string"===typeof e&&(n=e),"string"!==typeof n)throw new Error(`Argument to js_string_to_mono_string_interned must be a string but was ${e}`);if(0===n.length&&yr)return t.set(yr),void 0;const r=br.get(n);if(r)return t.set(r),void 0;Tr(n,t),$r(n,t,true)}function kr(e,t){if(t.clear(),null!==e)if("symbol"===typeof e)Nr(e,t);else{if("string"!==typeof e)throw new Error("Expected string argument, got "+typeof e);if(0===e.length)Nr(e,t);else{if(e.length<=256){const n=br.get(e);if(n)return t.set(n),void 0}Tr(e,t)}}}function Tr(e,t){const n=o._malloc(2*(e.length+1)),r=n>>>1|0;for(let t=0;t{const n=On(e,0),a=On(e,1),c=On(e,2),u=On(e,3),l=On(e,4);try{let e,n,f;o&&(e=o(c)),s&&(n=s(u)),i&&(f=i(l));const _=t(e,n,f);r&&r(a,_)}catch(e){eo(n,e)}};a[yn]=true;const c=undefined;cr(e,Qe(a)),Cn(e,wr.Function)}class Qr{constructor(e){this.promise=e}dispose(){tt(this,0)}get isDisposed(){return 0===this[Ge]}}function Kr(e,t,n,r){if(null===t||void 0===t)return Cn(e,wr.None),void 0;if(!ft(t))throw new Error("Assert failed: Value is not a Promise");const o=b.javaScriptExports.create_task_callback();lr(e,o),Cn(e,wr.Task);const s=new Qr(t);et(s,o),t.then((e=>{b.javaScriptExports.complete_task(o,null,e,r||no),tt(s,o)})).catch((e=>{b.javaScriptExports.complete_task(o,e,null,void 0),tt(s,o)}))}function eo(e,t){if(null===t||void 0===t)Cn(e,wr.None);else if(t instanceof ManagedError){Cn(e,wr.Exception);const n=undefined;lr(e,nt(t))}else{if(!("object"===typeof t||"string"===typeof t))throw new Error("Assert failed: Value is not an Error "+typeof t);Cn(e,wr.JSException);const n=undefined;Yr(e,t.toString());const r=t[Ye];if(r)cr(e,r);else{const n=undefined;cr(e,Qe(t))}}}function to(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{if(!(void 0===t[Ge]))throw new Error("Assert failed: JSObject proxy of ManagedObject proxy is not supported");if(!("function"===typeof t||"object"===typeof t))throw new Error(`Assert failed: JSObject proxy of ${typeof t} is not supported`);Cn(e,wr.JSObject);const n=undefined;cr(e,Qe(t))}}function no(e,t){if(void 0===t||null===t)Cn(e,wr.None);else{const n=t[Ge],r=typeof t;if(void 0===n)if("string"===r||"symbol"===r)Cn(e,wr.String),Yr(e,t);else if("number"===r)Cn(e,wr.Double),sr(e,t);else{if("bigint"===r)throw new Error("NotImplementedException: bigint");if("boolean"===r)Cn(e,wr.Boolean),Zn(e,t);else if(t instanceof Date)Cn(e,wr.DateTime),or(e,t);else if(t instanceof Error)eo(e,t);else if(t instanceof Uint8Array)oo(e,t,wr.Byte);else if(t instanceof Float64Array)oo(e,t,wr.Double);else if(t instanceof Int32Array)oo(e,t,wr.Int32);else if(Array.isArray(t))oo(e,t,wr.Object);else{if(t instanceof Int16Array||t instanceof Int8Array||t instanceof Uint8ClampedArray||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Float32Array)throw new Error("NotImplementedException: TypedArray");if(ft(t))Kr(e,t);else{if(t instanceof Span)throw new Error("NotImplementedException: Span");if("object"!=r)throw new Error(`JSObject proxy is not supported for ${r} ${t}`);{const n=Qe(t);Cn(e,wr.JSObject),cr(e,n)}}}}else{if(nt(t),t instanceof ArraySegment)throw new Error("NotImplementedException: ArraySegment");if(t instanceof ManagedError)Cn(e,wr.Exception),lr(e,n);else{if(!(t instanceof ManagedObject))throw new Error("NotImplementedException "+r);Cn(e,wr.Object),lr(e,n)}}}}function ro(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=undefined;oo(e,t,kn(n))}function oo(e,t,n){if(null===t||void 0===t)Cn(e,wr.None);else{const r=mr(n);if(!(-1!=r))throw new Error(`Assert failed: Element type ${wr[n]} not supported`);const s=t.length,i=r*s,a=o._malloc(i);if(n==wr.String){if(!Array.isArray(t))throw new Error("Assert failed: Value is not an Array");St(a,i),M.mono_wasm_register_root(a,i,"marshal_array_to_cs");for(let e=0;e>2,(a>>2)+s).set(t)}else{if(n!=wr.Double)throw new Error("not implemented");{if(!(Array.isArray(t)||t instanceof Float64Array))throw new Error("Assert failed: Value is not an Array or Float64Array");const e=undefined;o.HEAPF64.subarray(a>>3,(a>>3)+s).set(t)}}tr(e,a),Cn(e,wr.Array),Pn(e,n),dr(e,t.length)}}function so(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");if(!!t.isDisposed)throw new Error("Assert failed: ObjectDisposedException");ao(n,t._viewType),Cn(e,wr.Span),tr(e,t._pointer),dr(e,t.length)}function io(e,t,n){if(!!!n)throw new Error("Assert failed: Expected valid sig parameter");const r=nt(t);if(!r)throw new Error("Assert failed: Only roundtrip of ArraySegment instance created by C#");ao(n,t._viewType),Cn(e,wr.ArraySegment),tr(e,t._pointer),dr(e,t.length),lr(e,r)}function ao(e,t){const n=kn(e);if(n==wr.Byte){if(!(0==t))throw new Error("Assert failed: Expected MemoryViewType.Byte")}else if(n==wr.Int32){if(!(1==t))throw new Error("Assert failed: Expected MemoryViewType.Int32")}else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);if(!(2==t))throw new Error("Assert failed: Expected MemoryViewType.Double")}}function co(){0==hn.size&&(hn.set(wr.Array,ko),hn.set(wr.Span,Ro),hn.set(wr.ArraySegment,Mo),hn.set(wr.Boolean,lo),hn.set(wr.Byte,fo),hn.set(wr.Char,_o),hn.set(wr.Int16,mo),hn.set(wr.Int32,go),hn.set(wr.Int52,wo),hn.set(wr.BigInt64,ho),hn.set(wr.Single,po),hn.set(wr.IntPtr,yo),hn.set(wr.Double,bo),hn.set(wr.String,xo),hn.set(wr.Exception,jo),hn.set(wr.JSException,jo),hn.set(wr.JSObject,$o),hn.set(wr.Object,No),hn.set(wr.DateTime,Eo),hn.set(wr.DateTimeOffset,Eo),hn.set(wr.Task,So),hn.set(wr.Action,Ao),hn.set(wr.Function,Ao),hn.set(wr.None,vo),hn.set(wr.Void,vo),hn.set(wr.Discard,vo))}function uo(e,t,n,r,o,s){let i="",a="",c="";const u="converter"+t;let l="null",f="null",_="null",d="null",m=$n(e);if(m===wr.None||m===wr.Void)return{converters:i,call_body:c,marshaler_type:m};const g=Nn(e);if(g!==wr.None){const e=hn.get(g);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${g} at ${t}`);m!=wr.Nullable?(d="converter"+t+"_res",i+=", "+d,a+=" "+wr[g],s[d]=e):m=g}const w=kn(e);if(w!==wr.None){const e=pn.get(w);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${w} at ${t}`);l="converter"+t+"_arg1",i+=", "+l,a+=" "+wr[w],s[l]=e}const h=Tn(e);if(h!==wr.None){const e=pn.get(h);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${h} at ${t}`);f="converter"+t+"_arg2",i+=", "+f,a+=" "+wr[h],s[f]=e}const p=Rn(e);if(p!==wr.None){const e=pn.get(p);if(!(e&&"function"===typeof e))throw new Error(`Assert failed: Unknow converter for type ${p} at ${t}`);_="converter"+t+"_arg3",i+=", "+_,a+=" "+wr[p],s[_]=e}const b=hn.get(m);if(!(b&&"function"===typeof b))throw new Error(`Assert failed: Unknow converter for type ${m} at ${t} `);return i+=", "+u,a+=" "+wr[m],s[u]=b,c=m==wr.Task?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}); // ${a} \n`:m==wr.Action||m==wr.Function?` const ${o} = ${u}(args + ${n}, signature + ${r}, ${d}, ${l}, ${f}, ${_}); // ${a} \n`:` const ${o} = ${u}(args + ${n}, signature + ${r}); // ${a} \n`,{converters:i,call_body:c,marshaler_type:m}}function lo(e){const t=undefined;return Dn(e)==wr.None?null:Wn(e)}function fo(e){const t=undefined;return Dn(e)==wr.None?null:Fn(e)}function _o(e){const t=undefined;return Dn(e)==wr.None?null:Bn(e)}function mo(e){const t=undefined;return Dn(e)==wr.None?null:Vn(e)}function go(e){const t=undefined;return Dn(e)==wr.None?null:Hn(e)}function wo(e){const t=undefined;return Dn(e)==wr.None?null:Ln(e)}function ho(e){const t=undefined;return Dn(e)==wr.None?null:Jn(e)}function po(e){const t=undefined;return Dn(e)==wr.None?null:Gn(e)}function bo(e){const t=undefined;return Dn(e)==wr.None?null:Yn(e)}function yo(e){const t=undefined;return Dn(e)==wr.None?null:zn(e)}function vo(){return null}function Eo(e){const t=undefined;return Dn(e)===wr.None?null:qn(e)}function Ao(e,t,n,r,o,s){const i=undefined;if(Dn(e)===wr.None)return null;const a=ur(e);let c=ot(a);return null!==c&&void 0!==c||(c=(e,t,i)=>b.javaScriptExports.call_delegate(a,e,t,i,n,r,o,s),et(c,a)),c}function So(e,t,n){const r=Dn(e);if(r===wr.None)return null;if(r!==wr.Task){if(n||(n=hn.get(r)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[r]} `);const t=n(e);return new Promise((e=>e(t)))}const o=ar(e);if(0==o)return new Promise((e=>e(void 0)));const s=Ze(o);if(!!!s)throw new Error(`Assert failed: ERR28: promise not found for js_handle: ${o} `);ut(s);const i=at(s),a=i.resolve;return i.resolve=e=>{const t=Dn(e);if(t===wr.None)return a(null),void 0;if(n||(n=hn.get(t)),!n)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[t]}`);const r=n(e);a(r)},s}function Oo(e){const t=On(e,0),n=On(e,1),r=On(e,2),o=On(e,3),s=Dn(t),i=Dn(o),a=ar(r);if(0===a){const{promise:e,promise_control:r}=it(),a=undefined;if(cr(n,Qe(e)),s!==wr.None){const e=jo(t);r.reject(e)}else if(i!==wr.Task){const e=hn.get(i);if(!e)throw new Error(`Assert failed: Unknow sub_converter for type ${wr[i]} `);const t=e(o);r.resolve(t)}}else{const e=Ze(a);if(!!!e)throw new Error(`Assert failed: ERR25: promise not found for js_handle: ${a} `);ut(e);const n=at(e);if(s!==wr.None){const e=jo(t);n.reject(e)}else i!==wr.Task&&n.resolve(o)}Cn(n,wr.Task),Cn(t,wr.None)}function xo(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=fr(e);try{const e=undefined;return xr(n)}finally{n.release()}}function jo(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSException){const t=undefined,n=undefined;return Ze(ar(e))}const n=ur(e);let r=ot(n);if(null===r||void 0===r){const t=xo(e);r=new ManagedError(t),et(r,n)}return r}function $o(e){const t=undefined;if(Dn(e)==wr.None)return null;const n=undefined,r=undefined;return Ze(ar(e))}function No(e){const t=Dn(e);if(t==wr.None)return null;if(t==wr.JSObject){const t=undefined,n=undefined;return Ze(ar(e))}if(t==wr.Array){const t=undefined;return To(e,Un(e))}if(t==wr.Object){const t=ur(e);if(0===t)return null;let n=ot(t);return n||(n=new ManagedObject,et(n,t)),n}const n=hn.get(t);if(!n)throw new Error(`Assert failed: Unknow converter for type ${wr[t]}`);return n(e)}function ko(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=undefined;return To(e,kn(t))}function To(e,t){const n=undefined;if(Dn(e)==wr.None)return null;const r=undefined;if(!(-1!=mr(t)))throw new Error(`Assert failed: Element type ${wr[t]} not supported`);const s=zn(e),i=_r(e);let a=null;if(t==wr.String){a=new Array(i);for(let e=0;e>2,(s>>2)+i).slice()}else{if(t!=wr.Double)throw new Error(`NotImplementedException ${wr[t]} `);{const e=undefined;a=o.HEAPF64.subarray(s>>3,(s>>3)+i).slice()}}return o._free(s),a}function Ro(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new Span(r,o,0);else if(n==wr.Int32)s=new Span(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new Span(r,o,2)}return s}function Mo(e,t){if(!!!t)throw new Error("Assert failed: Expected valid sig parameter");const n=kn(t),r=zn(e),o=_r(e);let s=null;if(n==wr.Byte)s=new ArraySegment(r,o,0);else if(n==wr.Int32)s=new ArraySegment(r,o,1);else{if(n!=wr.Double)throw new Error(`NotImplementedException ${wr[n]} `);s=new ArraySegment(r,o,2)}const i=undefined;return et(s,ur(e)),s}let Io,Do;const Uo={};function Co(e){Io=e.mono,Do=e.binding}const Po=Symbol.for("wasm type");function Wo(e){return new Promise((t=>setTimeout(t,e)))}const Fo=it(),Bo=it();let Vo=0,Ho=0,zo=0,Lo=0;const Jo=[],qo=Object.create(null);let Go=0,Yo;const Zo={"js-module-threads":true},Xo={dotnetwasm:true},Qo={"js-module-threads":true,dotnetwasm:true};function Ko(e){var t;const n=null===(t=b.config.assets)||void 0===t?void 0:t.find((t=>t.behavior==e));if(!n)throw new Error(`Assert failed: Can't find asset for ${e}`);return n.resolvedUrl||(n.resolvedUrl=os(n,"")),n}async function es(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_download_assets"),b.maxParallelDownloads=b.config.maxParallelDownloads||b.maxParallelDownloads;try{const e=[];for(const t of b.config.assets){const n=t;if(Qo[n.behavior]||Lo++,!Zo[n.behavior]){const t=Xo[n.behavior];if(zo++,n.pendingDownload){n.pendingDownloadInternal=n.pendingDownload;const r=async()=>{const e=await n.pendingDownloadInternal.response;return t||(n.buffer=await e.arrayBuffer()),++Vo,{asset:n,buffer:n.buffer}};e.push(r())}else{const r=async()=>(n.buffer=await ts(n,!t),{asset:n,buffer:n.buffer});e.push(r())}}}Bo.promise_control.resolve();const t=[];for(const n of e)t.push((async()=>{const e=await n,t=e.asset;if(e.buffer){if(!Qo[t.behavior]){const n=t.pendingDownloadInternal.url,r=new Uint8Array(t.buffer);t.pendingDownloadInternal=null,t.pendingDownload=null,t.buffer=null,e.buffer=null,await lc.promise,is(t,n,r)}}else{const e=undefined;if(Xo[t.behavior])Xo[t.behavior]&&++Vo;else{if(!t.isOptional)throw new Error("Assert failed: Expected asset to have the downloaded buffer");Zo[t.behavior]||zo--,Qo[t.behavior]||Lo--}}})());Promise.all(t).then((()=>{Fo.promise_control.resolve()})).catch((e=>{o.printErr("MONO_WASM: Error in mono_download_assets: "+e),bc(e,true)}))}catch(e){throw o.printErr("MONO_WASM: Error in mono_download_assets: "+e),e}}async function ts(e,t){try{return await ns(e,t)}catch(n){if(c||a)throw n;if(e.pendingDownload&&e.pendingDownloadInternal==e.pendingDownload)throw n;if(e.resolvedUrl&&-1!=e.resolvedUrl.indexOf("file://"))throw n;if(n&&404==n.status)throw n;e.pendingDownloadInternal=void 0,await Bo.promise;try{return await ns(e,t)}catch(n){return e.pendingDownloadInternal=void 0,await Wo(100),await ns(e,t)}}}async function ns(e,t){for(;Yo;)await Yo.promise;try{++Go,Go==b.maxParallelDownloads&&(b.diagnosticTracing&&console.debug("MONO_WASM: Throttling further parallel downloads"),Yo=it());const n=await rs(e);if(!t||!n)return;const r=await n.arrayBuffer();return++Vo,r}finally{if(--Go,Yo&&Go==b.maxParallelDownloads-1){b.diagnosticTracing&&console.debug("MONO_WASM: Resuming more parallel downloads");const e=Yo;Yo=void 0,e.promise_control.resolve()}}}async function rs(e){if(e.buffer){const t=e.buffer;return e.buffer=null,e.pendingDownloadInternal={url:"undefined://"+e.name,name:e.name,response:Promise.resolve({arrayBuffer:()=>t,headers:{get:()=>{}}})},e.pendingDownloadInternal.response}if(e.pendingDownloadInternal&&e.pendingDownloadInternal.response){const t=undefined;return await e.pendingDownloadInternal.response}const t=e.loadRemote&&b.config.remoteSources?b.config.remoteSources:[""];let n;for(let r of t){r=r.trim(),"./"===r&&(r="");const t=os(e,r);e.name===t?b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}'`):b.diagnosticTracing&&console.debug(`MONO_WASM: Attempting to download '${t}' for ${e.name}`);try{const r=ss({name:e.name,resolvedUrl:t,hash:e.hash,behavior:e.behavior});if(e.pendingDownloadInternal=r,n=await r.response,!n.ok)continue;return n}catch(e){continue}}const r=e.isOptional||e.name.match(/\.pdb$/)&&b.config.ignorePdbLoadErrors;if(!n)throw new Error(`Assert failed: Response undefined ${e.name}`);if(r)return o.print(`MONO_WASM: optional download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`),void 0;{const t=new Error(`MONO_WASM: download '${n.url}' for ${e.name} failed ${n.status} ${n.statusText}`);throw t.status=n.status,t}}function os(e,t){if(!(null!==t&&void 0!==t))throw new Error(`Assert failed: sourcePrefix must be provided for ${e.name}`);let n;const r=b.config.assemblyRootFolder;if(e.resolvedUrl)n=e.resolvedUrl;else{if(""===t)if("assembly"===e.behavior||"pdb"===e.behavior)n=r?r+"/"+e.name:e.name;else if("resource"===e.behavior){const t=e.culture&&""!==e.culture?`${e.culture}/${e.name}`:e.name;n=r?r+"/"+t:t}else n=e.name;else n=t+e.name;n=b.locateFile(n)}if(!(n&&"string"==typeof n))throw new Error("Assert failed: attemptUrl need to be path or url string");return n}function ss(e){try{if("function"===typeof o.downloadResource){const t=o.downloadResource(e);if(t)return t}const t={};e.hash&&(t.integrity=e.hash);const n=b.fetch_like(e.resolvedUrl,t);return{name:e.name,url:e.resolvedUrl,response:n}}catch(t){const n={ok:false,url:e.resolvedUrl,status:500,statusText:"ERR29: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}};return{name:e.name,url:e.resolvedUrl,response:Promise.resolve(n)}}}function is(e,t,n){b.diagnosticTracing&&console.debug(`MONO_WASM: Loaded:${e.name} as ${e.behavior} size ${n.length} from ${t}`);const r="string"===typeof e.virtualPath?e.virtualPath:e.name;let s=null;switch(e.behavior){case"dotnetwasm":case"js-module-threads":break;case"resource":case"assembly":case"pdb":Jo.push({url:t,file:r});case"heap":case"icu":s=tn(n),qo[r]=[s,n.length];break;case"vfs":{const e=r.lastIndexOf("/");let t=e>0?r.substr(0,e):null,s=e>0?r.substr(e+1):r;s.startsWith("/")&&(s=s.substr(1)),t?(b.diagnosticTracing&&console.debug(`MONO_WASM: Creating directory '${t}'`),o.FS_createPath("/",t,true,true)):t="/",b.diagnosticTracing&&console.debug(`MONO_WASM: Creating file '${s}' in directory '${t}'`),cs(n,t)||o.FS_createDataFile(t,s,n,true,true,true);break}default:throw new Error(`Unrecognized asset behavior:${e.behavior}, for asset ${e.name}`)}if("assembly"===e.behavior){const e=undefined;if(!M.mono_wasm_add_assembly(r,s,n.length)){const e=Jo.findIndex((e=>e.file==r));Jo.splice(e,1)}}else"icu"===e.behavior?fe(s)||o.printErr(`MONO_WASM: Error loading ICU asset ${e.name}`):"resource"===e.behavior&&M.mono_wasm_add_satellite_assembly(r,e.culture||"",s,n.length);++Ho}async function as(e,t,n){if(!(e&&e.pendingDownloadInternal&&e.pendingDownloadInternal.response))throw new Error("Assert failed: Can't load dotnet.wasm");const r=await e.pendingDownloadInternal.response,o=r.headers&&r.headers.get?r.headers.get("Content-Type"):void 0;let s,i;if("function"===typeof WebAssembly.instantiateStreaming&&"application/wasm"===o){b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module streaming");const e=await WebAssembly.instantiateStreaming(r,t);s=e.instance,i=e.module}else{u&&"application/wasm"!==o&&console.warn('MONO_WASM: WebAssembly resource does not have the expected content type "application/wasm", so falling back to slower ArrayBuffer instantiation.');const e=await r.arrayBuffer();b.diagnosticTracing&&console.debug("MONO_WASM: instantiate_wasm_module buffered");const n=await WebAssembly.instantiate(e,t);s=n.instance,i=n.module}n(s,i)}function cs(e,t){if(e.length<8)return false;const n=new DataView(e.buffer),r=undefined;if(1651270004!=n.getUint32(0,true))return false;const s=n.getUint32(4,true);if(0==s||e.length{const t=e[0],n=t.lastIndexOf("/"),r=t.slice(0,n+1);a.add(r)})),a.forEach((e=>{o.FS_createPath(t,e,true,true)}));for(const n of i){const r=n[0],s=n[1],i=e.slice(0,s);o.FS_createDataFile(t,r,i,true,true),e=e.slice(s)}return true}async function us(){if(await Fo.promise,b.config.assets){if(!(Vo==zo))throw new Error(`Assert failed: Expected ${zo} assets to be downloaded, but only finished ${Vo}`);if(!(Ho==Lo))throw new Error(`Assert failed: Expected ${Lo} assets to be in memory, but only instantiated ${Ho}`);Jo.forEach((e=>Io.loaded_files.push(e.url))),b.diagnosticTracing&&console.debug("MONO_WASM: all assets are loaded in wasm memory")}}function ls(){return Io.loaded_files}let fs,_s;function ds(e){const t=o;"undefined"===typeof globalThis.performance&&(globalThis.performance=gs),"undefined"===typeof globalThis.URL&&(globalThis.URL=class e{constructor(e){this.url=e}toString(){return this.url}});const n=t.imports=o.imports||{},r=e=>t=>{const n=o.imports[t];return n||e(t)};n.require?b.requirePromise=e.requirePromise=Promise.resolve(r(n.require)):e.require?b.requirePromise=e.requirePromise=Promise.resolve(r(e.require)):e.requirePromise?b.requirePromise=e.requirePromise.then((e=>r(e))):b.requirePromise=e.requirePromise=Promise.resolve(r((e=>{throw new Error(`Please provide Module.imports.${e} or Module.imports.require`)}))),b.scriptDirectory=e.scriptDirectory=bs(e),t.mainScriptUrlOrBlob=e.scriptUrl,t.__locateFile===t.locateFile?t.locateFile=b.locateFile=e=>Es(e)?e:b.scriptDirectory+e:b.locateFile=t.locateFile,n.fetch?e.fetch=b.fetch_like=n.fetch:e.fetch=b.fetch_like=ws,e.noExitRuntime=u;const s=e.updateGlobalBufferAndViews;e.updateGlobalBufferAndViews=e=>{s(e),en(e)}}async function ms(){if(a){if(s.require=await b.requirePromise,globalThis.performance===gs){const{performance:e}=s.require("perf_hooks");globalThis.performance=e}if(globalThis.crypto||(globalThis.crypto={}),!globalThis.crypto.getRandomValues){let e;try{e=s.require("node:crypto")}catch(e){}e?e.webcrypto?globalThis.crypto=e.webcrypto:e.randomBytes&&(globalThis.crypto.getRandomValues=t=>{t&&t.set(e.randomBytes(t.length))}):globalThis.crypto.getRandomValues=()=>{throw new Error("Using node without crypto support. To enable current operation, either provide polyfill for 'globalThis.crypto.getRandomValues' or enable 'node:crypto' module.")}}}}const gs={now:function(){return Date.now()}};async function ws(e,t){try{if(a){if(!fs){const e=await b.requirePromise;_s=e("url"),fs=e("fs")}e.startsWith("file://")&&(e=_s.fileURLToPath(e));const t=await fs.promises.readFile(e);return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(t)}}if("function"===typeof globalThis.fetch)return globalThis.fetch(e,t||{credentials:"same-origin"});if("function"===typeof read){const t=new Uint8Array(read(e,"binary"));return{ok:true,url:e,arrayBuffer:()=>t,json:()=>JSON.parse(o.UTF8ArrayToString(t,0,t.length))}}}catch(t){return{ok:false,url:e,status:500,statusText:"ERR28: "+t,arrayBuffer:()=>{throw t},json:()=>{throw t}}}throw new Error("No fetch implementation available")}function hs(e){return e.replace(/\\/g,"/").replace(/[?#].*/,"")}function ps(e){return e.slice(0,e.lastIndexOf("/"))+"/"}function bs(e){return l&&(e.scriptUrl=self.location.href),e.scriptUrl||(e.scriptUrl="./dotnet.js"),e.scriptUrl=hs(e.scriptUrl),ps(e.scriptUrl)}const ys=/^[a-zA-Z][a-zA-Z\d+\-.]*?:\/\//,vs=/[a-zA-Z]:[\\/]/;function Es(e){return a||c?e.startsWith("/")||e.startsWith("\\")||-1!==e.indexOf("///")||vs.test(e):ys.test(e)}function As(e,t,n,r,o,s){const i=ln(e),a=ln(t),c=ln(s);try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const t=xr(i),o=xr(a);b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSImport] ${t} from ${o}`);const s=xs(t,o),u=Mn(n),l={fn:s,marshal_exception_to_cs:eo,signature:n},f="_bound_js_"+t.replace(/\./g,"_");let _=`//# sourceURL=https://dotnet.generated.invalid/${f} \n`,d="",m="",g="";for(let e=0;e{const o=await n;return r&&(Ms.set(e,o),b.diagnosticTracing&&console.debug(`MONO_WASM: imported ES6 module '${e}' from '${t}'`)),o}))}function Ds(e,t){let n="unknown exception";if(t){n=t.toString();const e=t.stack;e&&(e.startsWith(n)?n=e:n+="\n"+e),n=Oe(n)}return e&&o.setValue(e,1,"i32"),n}function Us(e,t,n){const r=undefined;kr(Ds(e,t),n)}const Cs=new Map;function Ps(e,t,n,r,s){const i=ln(e),a=ln(s),c=o;try{const e=In(n);if(!(1===e))throw new Error(`Assert failed: Signature version ${e} mismatch.`);const r=Mn(n),o=xr(i);if(!o)throw new Error("Assert failed: fully_qualified_name must be string");b.diagnosticTracing&&console.debug(`MONO_WASM: Binding [JSExport] ${o}`);const{assembly:s,namespace:u,classname:l,methodname:f}=Hs(o),_=be(s);if(!_)throw new Error("Could not find assembly: "+s);const d=M.mono_wasm_assembly_find_class(_,u,l);if(!d)throw new Error("Could not find class: "+u+":"+l+" in assembly "+s);const m=`__Wrapper_${f}_${t}`,g=M.mono_wasm_assembly_find_method(d,m,-1);if(!g)throw new Error(`Could not find method: ${m} in ${d} [${s}]`);const w={method:g,signature:n,stackSave:c.stackSave,stackRestore:c.stackRestore,alloc_stack_frame:Sn,invoke_method_and_handle_exception:Ws},h="_bound_cs_"+`${u}_${l}_${f}`.replace(/\./g,"_").replace(/\//g,"_");let p=`//# sourceURL=https://dotnet.generated.invalid/${h} \n`,y="",v="";for(let e=0;e{const o=e.stackSave();try{const s=Sn(4),i=On(s,1),a=On(s,2),c=On(s,3);Lr(a,t),n&&0==n.length&&(n=void 0),oo(c,n,wr.String),Ws(r,s);const u=So(i,void 0,go);return u||Promise.resolve(0)}finally{e.stackRestore(o)}},b.javaScriptExports.release_js_owned_object_by_gc_handle=t=>{if(!t)throw new Error("Assert failed: Must be valid gc_handle");const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Object),lr(o,t),Ws(s,r)}finally{e.stackRestore(n)}},b.javaScriptExports.create_task_callback=()=>{const t=e.stackSave();try{const n=Sn(2);Ws(i,n);const r=undefined;return ur(On(n,1))}finally{e.stackRestore(t)}},b.javaScriptExports.complete_task=(t,n,r,o)=>{const s=e.stackSave();try{const i=Sn(5),c=On(i,2);Cn(c,wr.Object),lr(c,t);const u=On(i,3);if(n)eo(u,n);else{Cn(u,wr.None);const e=On(i,4);if(!o)throw new Error("Assert failed: res_converter missing");o(e,r)}Ws(a,i)}finally{e.stackRestore(s)}},b.javaScriptExports.call_delegate=(t,n,r,o,s,i,a,u)=>{const l=e.stackSave();try{const f=Sn(6),_=On(f,2);if(Cn(_,wr.Object),lr(_,t),i){const e=undefined;i(On(f,3),n)}if(a){const e=undefined;a(On(f,4),r)}if(u){const e=undefined;u(On(f,5),o)}if(Ws(c,f),s){const e=undefined;return s(On(f,1))}}finally{e.stackRestore(l)}},b.javaScriptExports.get_managed_stack_trace=t=>{const n=e.stackSave();try{const r=Sn(3),o=On(r,2);Cn(o,wr.Exception),lr(o,t),Ws(u,r);const s=undefined;return xo(On(r,1))}finally{e.stackRestore(n)}},n&&(b.javaScriptExports.install_synchronization_context=()=>{const t=e.stackSave();try{const r=Sn(2);Ws(n,r)}finally{e.stackRestore(t)}},f||b.javaScriptExports.install_synchronization_context())}function Ls(e){const t=M.mono_wasm_assembly_find_method(b.runtime_interop_exports_class,e,-1);if(!t)throw"Can't find method "+b.runtime_interop_namespace+"."+b.runtime_interop_exports_classname+"."+e;return t}function Js(e,t,n,r,o,s,i){const a=ln(i);try{const s=undefined;Qs(qs(e,t,n,r,o),a,true)}catch(e){Us(s,String(e),a)}finally{a.release()}}function qs(e,t,n,r,o){let s=null;switch(o){case 5:s=new Int8Array(n-t);break;case 6:s=new Uint8Array(n-t);break;case 7:s=new Int16Array(n-t);break;case 8:s=new Uint16Array(n-t);break;case 9:s=new Int32Array(n-t);break;case 10:s=new Uint32Array(n-t);break;case 13:s=new Float32Array(n-t);break;case 14:s=new Float64Array(n-t);break;case 15:s=new Uint8ClampedArray(n-t);break;default:throw new Error("Unknown array type "+o)}return Gs(s,e,t,n,r),s}function Gs(e,t,n,r,s){if(Ys(e)&&e.BYTES_PER_ELEMENT){if(s!==e.BYTES_PER_ELEMENT)throw new Error("Inconsistent element sizes: TypedArray.BYTES_PER_ELEMENT '"+e.BYTES_PER_ELEMENT+"' sizeof managed element: '"+s+"'");let i=(r-n)*s;const a=e.length*e.BYTES_PER_ELEMENT;i>a&&(i=a);const c=undefined,u=n*s;return new Uint8Array(e.buffer,0,i).set(o.HEAPU8.subarray(t+u,t+u+i)),i}throw new Error("Object '"+e+"' is not a typed array")}function Ys(e){return"undefined"!==typeof SharedArrayBuffer?e.buffer instanceof ArrayBuffer||e.buffer instanceof SharedArrayBuffer:e.buffer instanceof ArrayBuffer}function Zs(e,t,n){switch(true){case null===t:case"undefined"===typeof t:return n.clear(),void 0;case"symbol"===typeof t:case"string"===typeof t:return Xi._create_uri_ref(t,n.address),void 0;default:return Ks(e,t,n),void 0}}function Xs(e){const t=fn();try{return Qs(e,t,false),t.value}finally{t.release()}}function Qs(e,t,n){if(T(t))throw new Error("Expected (value, WasmRoot, boolean)");switch(true){case null===e:case"undefined"===typeof e:return t.clear(),void 0;case"number"===typeof e:{let n;return(0|e)===e?(Rt(Uo._box_buffer,e),n=Uo._class_int32):e>>>0===e?($t(Uo._box_buffer,e),n=Uo._class_uint32):(Wt(Uo._box_buffer,e),n=Uo._class_double),M.mono_wasm_box_primitive_ref(n,Uo._box_buffer,8,t.address),void 0}case"string"===typeof e:return kr(e,t),void 0;case"symbol"===typeof e:return Nr(e,t),void 0;case"boolean"===typeof e:return Ot(Uo._box_buffer,e),M.mono_wasm_box_primitive_ref(Uo._class_boolean,Uo._box_buffer,4,t.address),void 0;case true===ft(e):return si(e,t),void 0;case"Date"===e.constructor.name:return Xi._create_date_time_ref(e.getTime(),t.address),void 0;default:return Ks(n,e,t),void 0}}function Ks(e,t,n){if(n.clear(),null!==t&&"undefined"!==typeof t){if(void 0!==t[Ge]){const e=undefined;return Ei(nt(t),n.address),void 0}if(t[Ye]&&(ai(t[Ye],e,n.address),n.value||delete t[Ye]),!n.value){const r=t[Po],o="undefined"===typeof r?0:r,s=Qe(t);Xi._create_cs_owned_proxy_ref(s,o,e?1:0,n.address)}}}function ei(e){const t=e.length*e.BYTES_PER_ELEMENT,n=o._malloc(t),r=new Uint8Array(o.HEAPU8.buffer,n,t);return r.set(new Uint8Array(e.buffer,e.byteOffset,t)),r}function ti(e,t){if(!Ys(e)||!e.BYTES_PER_ELEMENT)throw new Error("Object '"+e+"' is not a typed array");{const n=e[Po],r=ei(e);M.mono_wasm_typed_array_new_ref(r.byteOffset,e.length,e.BYTES_PER_ELEMENT,n,t.address),o._free(r.byteOffset)}}function ni(e){const t=fn();try{return ti(e,t),t.value}finally{t.release()}}function ri(e,t,n){if("number"!==typeof e)throw new Error(`Expected numeric value for enum argument, got '${e}'`);return 0|e}function oi(e,t,n){const r=fn();t?M.mono_wasm_string_array_new_ref(e.length,r.address):M.mono_wasm_obj_array_new_ref(e.length,r.address);const o=fn(0),s=r.address,i=o.address;try{for(let r=0;r{Xi._set_tcs_result_ref(r,e)}),(e=>{Xi._set_tcs_failure(r,e?e.toString():"")})).finally((()=>{Ke(n),tt(o,r)})),Xi._get_tcs_task_ref(r,t.address),{then_js_handle:n}}function ii(e,t,n){const r=ln(n);try{const n=Ze(e);if(T(n))return Us(t,"ERR06: Invalid JS object handle '"+e+"'",r),void 0;ti(n,r)}catch(e){Us(t,String(e),r)}finally{r.release()}}function ai(e,t,n){if(0===e||e===x)return Rt(n,0),void 0;Xi._get_cs_owned_object_by_js_handle_ref(e,t?1:0,n)}const ci=Symbol.for("wasm delegate_invoke");function ui(e){if(0===e)return;const t=fn(e);try{return di(t)}finally{t.release()}}function li(e){const t=undefined,n=undefined;return Ze(Xi._get_cs_owned_object_js_handle_ref(e.address,0))}function fi(e,t,n,r){switch(t){case 0:return null;case 26:case 27:throw new Error("int64 not available");case 3:case 29:return xr(e);case 4:throw new Error("no idea on how to unbox value types");case 5:return hi(e);case 6:return yi(e);case 7:return vi(e);case 10:case 11:case 12:case 13:case 14:case 15:case 16:case 17:case 18:throw new Error("Marshaling of primitive arrays are not supported.");case 20:return new Date(Xi._get_date_value_ref(e.address));case 21:return Xi._object_to_string_ref(e.address);case 22:return Xi._object_to_string_ref(e.address);case 23:return li(e);case 30:return;default:throw new Error(`no idea on how to unbox object of MarshalType ${t} at offset ${e.value} (root address is ${e.address})`)}}function _i(e,t,n){if(t>=512)throw new Error(`Got marshaling error ${t} when attempting to unbox object at address ${e.value} (root located at ${e.address})`);let r=0;if((4===t||7==t)&&(r=Ht(n),r<1024))throw new Error(`Got invalid MonoType ${r} for object at address ${e.value} (root located at ${e.address})`);return fi(e,t)}function di(e){if(0===e.value)return;const t=Uo._unbox_buffer,n=M.mono_wasm_try_unbox_primitive_and_get_type_ref(e.address,t,Uo._unbox_buffer_size);switch(n){case 1:return Jt(t);case 25:return Ht(t);case 32:return Ht(t);case 24:return Zt(t);case 2:return Xt(t);case 8:return 0!==Jt(t);case 28:return String.fromCharCode(Jt(t));case 0:return null;default:return _i(e,n,t)}}function mi(e){if(0===e)return null;const t=fn(e);try{return wi(t)}finally{t.release()}}function gi(e){return Xi._is_simple_array_ref(e.address)}function wi(e){if(0===e.value)return null;const t=e.address,n=fn(),r=n.address;try{const o=M.mono_wasm_array_length(e.value),s=new Array(o);for(let e=0;ett(n,t),{promise:o,promise_control:s}=it(r,r);n=o,Xi._setup_js_cont_ref(e.address,s),et(n,t)}return n}function vi(e){if(0===e.value)return null;const t=Xi._try_get_cs_owned_object_js_handle_ref(e.address,0);if(t){if(t===x)throw new Error("Cannot access a disposed JSObject at "+e.value);return Ze(t)}const n=Xi._get_js_owned_object_gc_handle_ref(e.address);let r=ot(n);return T(r)&&(r=new ManagedObject,et(r,n)),r}function Ei(e,t){if(!e)return Rt(t,0),void 0;Xi._get_js_owned_object_by_gc_handle_ref(e,t)}const Ai=new Map;function Si(e,t,n,r,s,i,a){Et(),o.stackRestore(a),"object"===typeof r&&(r.clear(),null!==t&&null===t.scratchResultRoot?t.scratchResultRoot=r:r.release()),"object"===typeof s&&(s.clear(),null!==t&&null===t.scratchExceptionRoot?t.scratchExceptionRoot=s:s.release()),"object"===typeof i&&(i.clear(),null!==t&&null===t.scratchThisArgRoot?t.scratchThisArgRoot=i:i.release())}function Oi(e,t){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");const n=`${e}-${t}`;let r=Ai.get(n);if(void 0===r){const o=Gi(e);"undefined"===typeof t&&(t=Yi(o,void 0)),r=Li(o,t,false,e),Ai.set(n,r)}return r}function xi(e,t){const n=Me(e);"string"!==typeof t&&(t=Yi(n,void 0));const r=Li(n,t,false,"_"+e+"__entrypoint");return async function(...e){return e.length>0&&Array.isArray(e[0])&&(e[0]=oi(e[0],true,false)),r(...e)}}function ji(e,t,n){if(!b.mono_wasm_bindings_is_ready)throw new Error("Assert failed: The runtime must be initialized.");return t||(t=[[]]),xi(e,n)(...t)}function $i(e,t,n,r,o){const s=ln(n),i=ln(t),a=ln(o);try{const t=xr(i);if(!t||"string"!==typeof t)return Us(r,"ERR12: Invalid method name object @"+i.value,a),void 0;const n=Xe(e);if(T(n))return Us(r,"ERR13: Invalid JS object handle '"+e+"' while invoking '"+t+"'",a),void 0;const o=wi(s);try{const e=n[t];if("undefined"===typeof e)throw new Error("Method: '"+t+"' not found for: '"+Object.prototype.toString.call(n)+"'");const r=undefined;Qs(e.apply(n,o),a,true)}catch(e){Us(r,e,a)}}finally{s.release(),i.release(),a.release()}}function Ni(e,t,n,r){const o=ln(t),s=ln(r);try{const t=xr(o);if(!t)return Us(n,"Invalid property name object '"+o.value+"'",s),void 0;const r=Ze(e);if(T(r))return Us(n,"ERR01: Invalid JS object handle '"+e+"' while geting '"+t+"'",s),void 0;const i=undefined;Qs(r[t],s,true)}catch(e){Us(n,e,s)}finally{s.release(),o.release()}}function ki(e,t,n,r,o,s,i){const a=ln(n),c=ln(t),u=ln(i);try{const n=xr(c);if(!n)return Us(s,"Invalid property name object '"+t+"'",u),void 0;const i=Ze(e);if(T(i))return Us(s,"ERR02: Invalid JS object handle '"+e+"' while setting '"+n+"'",u),void 0;let l=false;const f=di(a);if(r)i[n]=f,l=true;else{if(l=false,!r&&!Object.prototype.hasOwnProperty.call(i,n))return Qs(false,u,false),void 0;true===o?Object.prototype.hasOwnProperty.call(i,n)&&(i[n]=f,l=true):(i[n]=f,l=true)}Qs(l,u,false)}catch(e){Us(s,e,u)}finally{u.release(),c.release(),a.release()}}function Ti(e,t,n,r){const o=ln(r);try{const r=Ze(e);if(T(r))return Us(n,"ERR03: Invalid JS object handle '"+e+"' while getting ["+t+"]",o),void 0;const s=undefined;Qs(r[t],o,true)}catch(e){Us(n,e,o)}finally{o.release()}}function Ri(e,t,n,r,o){const s=ln(n),i=ln(o);try{const n=Ze(e);if(T(n))return Us(r,"ERR04: Invalid JS object handle '"+e+"' while setting ["+t+"]",i),void 0;const o=di(s);n[t]=o,i.clear()}catch(e){Us(r,e,i)}finally{i.release(),s.release()}}function Mi(e,t,n){const r=ln(e),i=ln(n);try{const e=xr(r);let n;if(n=e?"Module"==e?o:"INTERNAL"==e?s:globalThis[e]:globalThis,null===n||void 0===typeof n)return Us(t,"Global object '"+e+"' not found.",i),void 0;Qs(n,i,true)}catch(e){Us(t,e,i)}finally{i.release(),r.release()}}function Ii(e,t,n,r,o){try{const e=globalThis.Blazor;if(!e)throw new Error("The blazor.webassembly.js library is not loaded.");return e._internal.invokeJSFromDotNet(t,n,r,o)}catch(t){const n=t.message+"\n"+t.stack,r=fn();return kr(n,r),r.copy_to_address(e),r.release(),0}}const Di=/[^A-Za-z0-9_$]/g,Ui=new Map,Ci=new Map,Pi=new Map;function Wi(e,t,n,r){let o=null,s=null,i=null;if(r){i=Object.keys(r),s=new Array(i.length);for(let e=0,t=i.length;e{e&&"AbortError"!==e.name&&o.printErr("MONO_WASM: Error in http_wasm_abort_response: "+e)}))}function sa(e,t,n,r,o,s,i,a){const c=undefined,u=undefined;return ia(e,t,n,r,o,s,new Span(i,a,0).slice())}function ia(e,t,n,r,o,s,i){if(!(e&&"string"===typeof e))throw new Error("Assert failed: expected url string");if(!(t&&n&&Array.isArray(t)&&Array.isArray(n)&&t.length===n.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");if(!(r&&o&&Array.isArray(r)&&Array.isArray(o)&&r.length===o.length))throw new Error("Assert failed: expected headerNames and headerValues arrays");const a=new Headers;for(let e=0;e{const t=await fetch(e,c);return t.__abort_controller=s,t}))}function aa(e){if(!e.__headerNames){e.__headerNames=[],e.__headerValues=[];const t=e.headers.entries();for(const n of t)e.__headerNames.push(n[0]),e.__headerValues.push(n[1])}}function ca(e){return aa(e),e.__headerNames}function ua(e){return aa(e),e.__headerValues}function la(e){return _t((async()=>{const t=await e.arrayBuffer();return e.__buffer=t,e.__source_offset=0,t.byteLength}))}function fa(e,t){if(!e.__buffer)throw new Error("Assert failed: expected resoved arrayBuffer");if(e.__source_offset==e.__buffer.byteLength)return 0;const n=new Uint8Array(e.__buffer,e.__source_offset);t.set(n,0);const r=Math.min(t.byteLength,n.byteLength);return e.__source_offset+=r,r}function _a(e,t,n){const r=new Span(t,n,0);return _t((async()=>{if(e.__reader||(e.__reader=e.body.getReader()),e.__chunk||(e.__chunk=await e.__reader.read(),e.__source_offset=0),e.__chunk.done)return 0;const t=e.__chunk.value.byteLength-e.__source_offset;if(!(t>0))throw new Error("Assert failed: expected remaining_source to be greater than 0");const n=Math.min(t,r.byteLength),o=e.__chunk.value.subarray(e.__source_offset,e.__source_offset+n);return r.set(o,0),e.__source_offset+=n,t==n&&(e.__chunk=void 0),n}))}let da=0,ma=false,ga=0,wa;if(globalThis.navigator){const e=globalThis.navigator;e.userAgentData&&e.userAgentData.brands?ma=e.userAgentData.brands.some((e=>"Chromium"==e.brand)):e.userAgent&&(ma=e.userAgent.includes("Chrome"))}function ha(){for(;ga>0;)--ga,M.mono_background_exec()}function pa(){if(!ma)return;const e=(new Date).valueOf(),t=e+36e4,n=undefined,r=1e3;for(let n=Math.max(e+1e3,da);n{M.mono_set_timeout_exec(),ga++,ha()}),n-e)}da=t}function ba(){++ga,setTimeout(ha,0)}function ya(e){function mono_wasm_set_timeout_exec(){M.mono_set_timeout_exec()}wa&&(clearTimeout(wa),wa=void 0),wa=setTimeout(mono_wasm_set_timeout_exec,e)}class va{constructor(){this.queue=[],this.offset=0}getLength(){return this.queue.length-this.offset}isEmpty(){return 0==this.queue.length}enqueue(e){this.queue.push(e)}dequeue(){if(0===this.queue.length)return;const e=this.queue[this.offset];return this.queue[this.offset]=null,2*++this.offset>=this.queue.length&&(this.queue=this.queue.slice(this.offset),this.offset=0),e}peek(){return this.queue.length>0?this.queue[this.offset]:void 0}drain(e){for(;this.getLength();){const t=undefined;e(this.dequeue())}}}const Ea=Symbol.for("wasm ws_pending_send_buffer"),Aa=Symbol.for("wasm ws_pending_send_buffer_offset"),Sa=Symbol.for("wasm ws_pending_send_buffer_type"),Oa=Symbol.for("wasm ws_pending_receive_event_queue"),xa=Symbol.for("wasm ws_pending_receive_promise_queue"),ja=Symbol.for("wasm ws_pending_open_promise"),$a=Symbol.for("wasm ws_pending_close_promises"),Na=Symbol.for("wasm ws_pending_send_promises"),ka=Symbol.for("wasm ws_is_aborted"),Ta=Symbol.for("wasm ws_receive_status_ptr");let Ra=false,Ma,Ia;const Da=65536,Ua=new Uint8Array;function Ca(e,t,n,r){if(!(e&&"string"===typeof e))throw new Error("Assert failed: ERR12: Invalid uri "+typeof e);const o=new globalThis.WebSocket(e,t||void 0),{promise_control:s}=it();o[Oa]=new va,o[xa]=new va,o[ja]=s,o[Na]=[],o[$a]=[],o[Ta]=n,o.binaryType="arraybuffer";const i=()=>{o[ka]||(s.resolve(o),pa())},a=e=>{o[ka]||(za(o,e),pa())},c=e=>{if(o.removeEventListener("message",a),o[ka])return;r&&r(e.code,e.reason),s.reject(e.reason);for(const e of o[$a])e.resolve();const t=undefined;o[xa].drain((e=>{Mt(n,0),Mt(n+4,2),Mt(n+8,1),e.resolve()}))},u=e=>{s.reject(e.message||"WebSocket error")};return o.addEventListener("message",a),o.addEventListener("open",i,{once:true}),o.addEventListener("close",c,{once:true}),o.addEventListener("error",u,{once:true}),o}function Pa(e){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const t=undefined;return e[ja].promise}function Wa(e,t,n,r,s){if(!!!e)throw new Error("Assert failed: ERR17: expected ws instance");const i=undefined,a=Ja(e,new Uint8Array(o.HEAPU8.buffer,t,n),r,s);return s&&a?Ha(e,a):null}function Fa(e,t,n){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");const r=e[Oa],o=e[xa],s=e.readyState;if(s!=WebSocket.OPEN&&s!=WebSocket.CLOSING)throw new Error("InvalidState: The WebSocket is not connected.");if(r.getLength()){if(!(0==o.getLength()))throw new Error("Assert failed: ERR20: Invalid WS state");return La(e,r,t,n),null}const{promise:i,promise_control:a}=it(),c=a;return c.buffer_ptr=t,c.buffer_length=n,o.enqueue(c),i}function Ba(e,t,n,r){if(!!!e)throw new Error("Assert failed: ERR19: expected ws instance");if(e.readyState==WebSocket.CLOSED)return null;if(r){const{promise:r,promise_control:o}=it();return e[$a].push(o),"string"===typeof n?e.close(t,n):e.close(t),r}return Ra||(Ra=true,console.warn("WARNING: Web browsers do not support closing the output side of a WebSocket. CloseOutputAsync has closed the socket and discarded any incoming messages.")),"string"===typeof n?e.close(t,n):e.close(t),null}function Va(e){if(!!!e)throw new Error("Assert failed: ERR18: expected ws instance");e[ka]=true;const t=e[ja];t&&t.reject("OperationCanceledException");for(const t of e[$a])t.reject("OperationCanceledException");for(const t of e[Na])t.reject("OperationCanceledException");e[xa].drain((e=>{e.reject("OperationCanceledException")})),e.close(1e3,"Connection was aborted.")}function Ha(e,t){if(e.send(t),e[Ea]=null,e.bufferedAmount{if(0===e.bufferedAmount)r.resolve();else if(e.readyState!=WebSocket.OPEN)r.reject("InvalidState: The WebSocket is not connected.");else if(!r.isDone)return globalThis.setTimeout(i,s),s=Math.min(1.5*s,1e3),void 0;const t=o.indexOf(r);t>-1&&o.splice(t,1)};return globalThis.setTimeout(i,0),n}function za(e,t){const n=e[Oa],r=e[xa];if("string"===typeof t.data)void 0===Ia&&(Ia=new TextEncoder),n.enqueue({type:0,data:Ia.encode(t.data),offset:0});else{if("ArrayBuffer"!==t.data.constructor.name)throw new Error("ERR19: WebSocket receive expected ArrayBuffer");n.enqueue({type:1,data:new Uint8Array(t.data),offset:0})}if(r.getLength()&&n.getLength()>1)throw new Error("ERR21: Invalid WS state");for(;r.getLength()&&n.getLength();){const t=r.dequeue();La(e,n,t.buffer_ptr,t.buffer_length),t.resolve()}pa()}function La(e,t,n,r){const s=t.peek(),i=Math.min(r,s.data.length-s.offset);if(i>0){const e=s.data.subarray(s.offset,s.offset+i),t=undefined;new Uint8Array(o.HEAPU8.buffer,n,r).set(e,0),s.offset+=i}const a=s.data.length===s.offset?1:0;a&&t.dequeue();const c=e[Ta];Mt(c,i),Mt(c+4,s.type),Mt(c+8,a)}function Ja(e,t,n,r){let o=e[Ea],s=0;const i=t.byteLength;if(o){if(s=e[Aa],n=e[Sa],0!==i){if(s+i>o.length){const n=new Uint8Array(1.5*(s+i+50));n.set(o,0),n.subarray(s).set(t),e[Ea]=o=n}else o.subarray(s).set(t);s+=i,e[Aa]=s}}else r?0!==i&&(o=t,s=i):(0!==i&&(o=t.slice(),s=i,e[Aa]=s,e[Ea]=o),e[Sa]=n);if(r){if(0==s||null==o)return Ua;if(0===n){void 0===Ma&&(Ma=new TextDecoder("utf-8",{fatal:false}));const e="undefined"!==typeof SharedArrayBuffer&&o instanceof SharedArrayBuffer?o.slice(0,s):o.subarray(0,s);return Ma.decode(e)}return o.subarray(0,s)}return null}function qa(){return{mono_wasm_exit:e=>{o.printErr("MONO_WASM: early exit "+e)},mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression,mono_method_resolve:Gi,mono_intern_string:jr,logging:void 0,mono_wasm_stringify_as_error_with_stack:xe,mono_wasm_get_loaded_files:ls,mono_wasm_send_dbg_command_with_parms:q,mono_wasm_send_dbg_command:G,mono_wasm_get_dbg_command_info:Y,mono_wasm_get_details:ie,mono_wasm_release_object:ce,mono_wasm_call_function_on:oe,mono_wasm_debugger_resume:Z,mono_wasm_detach_debugger:X,mono_wasm_raise_debug_event:K,mono_wasm_change_debugger_log_level:Q,mono_wasm_debugger_attached:te,mono_wasm_runtime_is_ready:b.mono_wasm_runtime_is_ready,get_property:$s,set_property:js,has_property:Ns,get_typeof_property:ks,get_global_this:Ts,get_dotnet_instance:()=>_,dynamic_import:Is,mono_wasm_cancel_promise:dt,ws_wasm_create:Ca,ws_wasm_open:Pa,ws_wasm_send:Wa,ws_wasm_receive:Fa,ws_wasm_close:Ba,ws_wasm_abort:Va,http_wasm_supports_streaming_response:ta,http_wasm_create_abort_controler:na,http_wasm_abort_request:ra,http_wasm_abort_response:oa,http_wasm_fetch:ia,http_wasm_fetch_bytes:sa,http_wasm_get_response_header_names:ca,http_wasm_get_response_header_values:ua,http_wasm_get_response_bytes:fa,http_wasm_get_response_length:la,http_wasm_get_streamed_response_bytes:_a}}function Ga(e){Object.assign(e,{mono_wasm_exit:M.mono_wasm_exit,mono_wasm_enable_on_demand_gc:M.mono_wasm_enable_on_demand_gc,mono_profiler_init_aot:M.mono_profiler_init_aot,mono_wasm_exec_regression:M.mono_wasm_exec_regression})}function Ya(){return{mono_wasm_setenv:xc,mono_wasm_load_bytes_into_heap:tn,mono_wasm_load_icu_data:fe,mono_wasm_runtime_ready:mono_wasm_runtime_ready,mono_wasm_load_data_archive:cs,mono_wasm_load_config:Rc,mono_load_runtime_and_bcl_args:Dc,mono_wasm_new_root_buffer:un,mono_wasm_new_root:fn,mono_wasm_new_external_root:ln,mono_wasm_release_roots:_n,mono_run_main:Re,mono_run_main_and_exit:Te,mono_wasm_add_assembly:null,mono_wasm_load_runtime:kc,config:b.config,loaded_files:[],setB32:Ot,setI8:kt,setI16:Tt,setI32:Mt,setI52:Dt,setU52:Ut,setI64Big:Ct,setU8:xt,setU16:jt,setU32:Nt,setF32:Pt,setF64:Wt,getB32:Ft,getI8:zt,getI16:Lt,getI32:Jt,getI52:qt,getU52:Gt,getI64Big:Yt,getU8:Bt,getU16:Vt,getU32:Ht,getF32:Zt,getF64:Xt}}function Za(e){Object.assign(e,{mono_wasm_add_assembly:M.mono_wasm_add_assembly})}function Xa(){return{bind_static_method:Oi,call_assembly_entry_point:ji,mono_obj_array_new:null,mono_obj_array_set:null,js_string_to_mono_string:Mr,js_typed_array_to_array:ni,mono_array_to_js_array:mi,js_to_mono_obj:Xs,conv_string:Or,unbox_mono_obj:ui,mono_obj_array_new_ref:null,mono_obj_array_set_ref:null,js_string_to_mono_string_root:kr,js_typed_array_to_array_root:ti,js_to_mono_obj_root:Qs,conv_string_root:xr,unbox_mono_obj_root:di,mono_array_root_to_js_array:wi}}function Qa(e){Object.assign(e,{mono_obj_array_new:M.mono_wasm_obj_array_new,mono_obj_array_set:M.mono_wasm_obj_array_set,mono_obj_array_new_ref:M.mono_wasm_obj_array_new_ref,mono_obj_array_set_ref:M.mono_wasm_obj_array_set_ref})}function Ka(){}async function ec(){return console.warn("MONO_WASM: ignoring diagnostics options because this runtime does not support diagnostics"),void 0}let tc,nc=false,rc=false;const oc=it(),sc=it(),ic=it(),ac=it(),cc=it(),uc=it(),lc=it(),fc=it(),_c=it();function dc(e,t){const n=e.instantiateWasm,r=e.preInit?"function"===typeof e.preInit?[e.preInit]:e.preInit:[],o=e.preRun?"function"===typeof e.preRun?[e.preRun]:e.preRun:[],s=e.postRun?"function"===typeof e.postRun?[e.postRun]:e.postRun:[],i=e.onRuntimeInitialized?e.onRuntimeInitialized:()=>{};rc=!e.configSrc&&(!e.config||!e.config.assets||-1==e.config.assets.findIndex((e=>"assembly"===e.behavior))),e.instantiateWasm=(e,t)=>mc(e,t,n),e.preInit=[()=>gc(r)],e.preRun=[()=>wc(o)],e.onRuntimeInitialized=()=>hc(i),e.postRun=[()=>pc(s)],e.ready.then((async()=>{await _c.promise,oc.promise_control.resolve(t)})).catch((e=>{oc.promise_control.reject(e)})),e.ready=oc.promise,e.onAbort||(e.onAbort=()=>Ie)}function mc(e,t,n){if(o.configSrc||o.config||n||o.print("MONO_WASM: configSrc nor config was specified"),tc=o.config?b.config=o.config:b.config=o.config={},b.diagnosticTracing=!!tc.diagnosticTracing,n){const r=undefined;return n(e,((e,n)=>{ic.promise_control.resolve(),t(e,n)}))}return $c(e,t),[]}function gc(e){o.addRunDependency("mono_pre_init");try{yc(),b.diagnosticTracing&&console.debug("MONO_WASM: preInit"),ac.promise_control.resolve(),e.forEach((e=>e()))}catch(e){throw Oc("MONO_WASM: user preInint() failed",e),bc(e,true),e}(async()=>{try{await vc(),rc||await Ec()}catch(e){throw bc(e,true),e}cc.promise_control.resolve(),o.removeRunDependency("mono_pre_init")})()}async function wc(e){o.addRunDependency("mono_pre_run_async"),await ic.promise,await cc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: preRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback preRun() failed",e),bc(e,true),e}uc.promise_control.resolve(),o.removeRunDependency("mono_pre_run_async")}async function hc(e){await uc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: onRuntimeInitialized"),lc.promise_control.resolve();try{rc||(await us(),await Ac()),tc.runtimeOptions&&jc(tc.runtimeOptions);try{e()}catch(e){throw Oc("MONO_WASM: user callback onRuntimeInitialized() failed",e),e}await Sc()}catch(e){throw Oc("MONO_WASM: onRuntimeInitializedAsync() failed",e),bc(e,true),e}fc.promise_control.resolve()}async function pc(e){await fc.promise,b.diagnosticTracing&&console.debug("MONO_WASM: postRunAsync");try{e.map((e=>e()))}catch(e){throw Oc("MONO_WASM: user callback posRun() failed",e),bc(e,true),e}_c.promise_control.resolve()}function bc(e,t){b.diagnosticTracing&&console.trace("MONO_WASM: abort_startup"),oc.promise_control.reject(e),ic.promise_control.reject(e),ac.promise_control.reject(e),cc.promise_control.reject(e),uc.promise_control.reject(e),lc.promise_control.reject(e),fc.promise_control.reject(e),_c.promise_control.reject(e),t&&De(1,e)}function yc(){o.addRunDependency("mono_wasm_pre_init_essential"),b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential"),I(),Ga(s),Za(Io),Qa(Do),o.removeRunDependency("mono_wasm_pre_init_essential")}async function vc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_essential_async"),o.addRunDependency("mono_wasm_pre_init_essential_async"),await ms(),await Rc(o.configSrc),o.removeRunDependency("mono_wasm_pre_init_essential_async")}async function Ec(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_pre_init_full"),o.addRunDependency("mono_wasm_pre_init_full"),await es(),o.removeRunDependency("mono_wasm_pre_init_full")}async function Ac(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_before_user_runtime_initialized");try{await Nc(),de(),b.mono_wasm_load_runtime_done||kc("unused",tc.debugLevel),b.mono_wasm_runtime_is_ready||mono_wasm_runtime_ready(),b.mono_wasm_symbols_are_ready||ke("dotnet.js.symbols"),setTimeout((()=>{Ar.init_fields()}))}catch(e){throw Oc("MONO_WASM: Error in mono_wasm_before_user_runtime_initialized",e),e}}async function Sc(){b.diagnosticTracing&&console.debug("MONO_WASM: mono_wasm_after_user_runtime_initialized");try{if(!o.disableDotnet6Compatibility&&o.exports){const e=globalThis;for(let t=0;tb.config,setHeapB32:Ot,setHeapU8:xt,setHeapU16:jt,setHeapU32:Nt,setHeapI8:kt,setHeapI16:Tt,setHeapI32:Mt,setHeapI52:Dt,setHeapU52:Ut,setHeapI64Big:Ct,setHeapF32:Pt,setHeapF64:Wt,getHeapB32:Ft,getHeapU8:Bt,getHeapU16:Vt,getHeapU32:Ht,getHeapI8:zt,getHeapI16:Lt,getHeapI32:Jt,getHeapI52:qt,getHeapU52:Gt,getHeapI64Big:Yt,getHeapF32:Zt,getHeapF64:Xt}}function Hc(){const e=undefined;return{dotnet:Bc,exit:De}}const zc=Jc,Lc=Gc;function Jc(n,o,s,i){const a=o.module,c=globalThis;g(n,o),Co(o),ds(s),Object.assign(o.mono,Ya()),Object.assign(o.binding,Xa()),Object.assign(o.internal,qa()),Object.assign(o.internal,qa());const u=Vc();if(e.__linker_exports=Wc(),Object.assign(_,{MONO:o.mono,BINDING:o.binding,INTERNAL:o.internal,IMPORTS:o.marshaled_imports,Module:a,runtimeBuildInfo:{productVersion:t,buildConfiguration:r},...u}),Object.assign(i,u),o.module.__undefinedConfig&&(a.disableDotnet6Compatibility=true,a.configSrc="./mono-config.json"),a.print||(a.print=console.log.bind(console)),a.printErr||(a.printErr=console.error.bind(console)),"undefined"===typeof a.disableDotnet6Compatibility&&(a.disableDotnet6Compatibility=true),n.isGlobal||!a.disableDotnet6Compatibility){Object.assign(a,_),a.mono_bind_static_method=(e,t)=>(console.warn("MONO_WASM: Module.mono_bind_static_method is obsolete, please use [JSExportAttribute] interop instead"),Oi(e,t));const e=(e,t)=>{if("undefined"!==typeof c[e])return;let n;Object.defineProperty(globalThis,e,{get:()=>{if(T(n)){const r=(new Error).stack,o=r?r.substr(r.indexOf("\n",8)+1):"";console.warn(`MONO_WASM: global ${e} is obsolete, please use Module.${e} instead ${o}`),n=t()}return n}})};c.MONO=o.mono,c.BINDING=o.binding,c.INTERNAL=o.internal,n.isGlobal||(c.Module=a),e("cwrap",(()=>a.cwrap)),e("addRunDependency",(()=>a.addRunDependency)),e("removeRunDependency",(()=>a.removeRunDependency))}let l;return c.getDotnetRuntime?l=c.getDotnetRuntime.__list:(c.getDotnetRuntime=e=>c.getDotnetRuntime.__list.getRuntime(e),c.getDotnetRuntime.__list=l=new qc),l.registerRuntime(_),dc(a,_),_}e.__linker_exports=null;class qc{constructor(){this.list={}}registerRuntime(e){return e.runtimeId=Object.keys(this.list).length,this.list[e.runtimeId]=Be(e),e.runtimeId}getRuntime(e){const t=this.list[e];return t?t.deref():void 0}}function Gc(e,t){w(t),Object.assign(d,Hc()),h(e)}return e.__initializeImportsAndExports=zc,e.__setEmscriptenEntrypoint=Lc,e.moduleExports=d,Object.defineProperty(e,"__esModule",{value:true}),e}({}); + +var createDotnetRuntime = (() => { + var _scriptDir = import.meta.url; + + return ( +function(createDotnetRuntime) { + createDotnetRuntime = createDotnetRuntime || {}; + +"use strict";var Module=typeof createDotnetRuntime!="undefined"?createDotnetRuntime:{};var readyPromiseResolve,readyPromiseReject;Module["ready"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var require=require||undefined;var __dirname=__dirname||"";var __callbackAPI={MONO:MONO,BINDING:BINDING,INTERNAL:INTERNAL,IMPORTS:IMPORTS};if(typeof createDotnetRuntime==="function"){__callbackAPI.Module=Module={ready:Module.ready};const extension=createDotnetRuntime(__callbackAPI);if(extension.ready){throw new Error("MONO_WASM: Module.ready couldn't be redefined.")}Object.assign(Module,extension);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else if(typeof createDotnetRuntime==="object"){__callbackAPI.Module=Module={ready:Module.ready,__undefinedConfig:Object.keys(createDotnetRuntime).length===1};Object.assign(Module,createDotnetRuntime);createDotnetRuntime=Module;if(!createDotnetRuntime.locateFile)createDotnetRuntime.locateFile=createDotnetRuntime.__locateFile=path=>scriptDirectory+path}else{throw new Error("MONO_WASM: Can't use moduleFactory callback of createDotnetRuntime function.")}var moduleOverrides=Object.assign({},Module);var arguments_=[];var thisProgram="./this.program";var quit_=(status,toThrow)=>{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window=="object";var ENVIRONMENT_IS_WORKER=typeof importScripts=="function";var ENVIRONMENT_IS_NODE=typeof process=="object"&&typeof process.versions=="object"&&typeof process.versions.node=="string";var ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory="";function locateFile(path){if(Module["locateFile"]){return Module["locateFile"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;function logExceptionOnExit(e){if(e instanceof ExitStatus)return;let toLog=e;err("exiting due to exception: "+toLog)}var fs;var nodePath;var requireNodeFS;if(ENVIRONMENT_IS_NODE){if(ENVIRONMENT_IS_WORKER){scriptDirectory=require("path").dirname(scriptDirectory)+"/"}else{scriptDirectory=__dirname+"/"}requireNodeFS=()=>{if(!nodePath){fs=require("fs");nodePath=require("path")}};read_=function shell_read(filename,binary){requireNodeFS();filename=nodePath["normalize"](filename);return fs.readFileSync(filename,binary?undefined:"utf8")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror)=>{requireNodeFS();filename=nodePath["normalize"](filename);fs.readFile(filename,function(err,data){if(err)onerror(err);else onload(data.buffer)})};if(process["argv"].length>1){thisProgram=process["argv"][1].replace(/\\/g,"/")}arguments_=process["argv"].slice(2);process["on"]("uncaughtException",function(ex){if(!(ex instanceof ExitStatus)){throw ex}});process["on"]("unhandledRejection",function(reason){throw reason});quit_=(status,toThrow)=>{if(keepRuntimeAlive()){process["exitCode"]=status;throw toThrow}logExceptionOnExit(toThrow);process["exit"](status)};Module["inspect"]=function(){return"[Emscripten Module object]"}}else if(ENVIRONMENT_IS_SHELL){if(typeof read!="undefined"){read_=function shell_read(f){return read(f)}}readBinary=function readBinary(f){let data;if(typeof readbuffer=="function"){return new Uint8Array(readbuffer(f))}data=read(f,"binary");assert(typeof data=="object");return data};readAsync=function readAsync(f,onload,onerror){setTimeout(()=>onload(readBinary(f)),0)};if(typeof scriptArgs!="undefined"){arguments_=scriptArgs}else if(typeof arguments!="undefined"){arguments_=arguments}if(typeof quit=="function"){quit_=(status,toThrow)=>{logExceptionOnExit(toThrow);quit(status)}}if(typeof print!="undefined"){if(typeof console=="undefined")console={};console.log=print;console.warn=console.error=typeof printErr!="undefined"?printErr:print}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!="undefined"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf("blob:")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,"").lastIndexOf("/")+1)}else{scriptDirectory=""}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.responseType="arraybuffer";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open("GET",url,true);xhr.responseType="arraybuffer";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}var out=Module["print"]||console.log.bind(console);var err=Module["printErr"]||console.warn.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module["arguments"])arguments_=Module["arguments"];if(Module["thisProgram"])thisProgram=Module["thisProgram"];if(Module["quit"])quit_=Module["quit"];var POINTER_SIZE=4;function warnOnce(text){if(!warnOnce.shown)warnOnce.shown={};if(!warnOnce.shown[text]){warnOnce.shown[text]=1;err(text)}}function uleb128Encode(n){if(n<128){return[n]}return[n%128|128,n>>7]}function convertJsFunctionToWasm(func,sig){if(typeof WebAssembly.Function=="function"){var typeNames={"i":"i32","j":"i64","f":"f32","d":"f64","p":"i32"};var type={parameters:[],results:sig[0]=="v"?[]:[typeNames[sig[0]]]};for(var i=1;i{tempRet0=value};var getTempRet0=()=>tempRet0;var wasmBinary;if(Module["wasmBinary"])wasmBinary=Module["wasmBinary"];var noExitRuntime=Module["noExitRuntime"]||true;if(typeof WebAssembly!="object"){abort("no native wasm support detected")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}function getCFunc(ident){var func=Module["_"+ident];return func}function ccall(ident,returnType,argTypes,args,opts){var toC={"string":function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){var len=(str.length<<2)+1;ret=stackAlloc(len);stringToUTF8(str,ret,len)}return ret},"array":function(arr){var ret=stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}};function convertReturnValue(ret){if(returnType==="string"){return UTF8ToString(ret)}if(returnType==="boolean")return Boolean(ret);return ret}var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}else{var str="";while(idx>10,56320|ch&1023)}}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):""}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function lengthBytesUTF8(str){var len=0;for(var i=0;i=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127)++len;else if(u<=2047)len+=2;else if(u<=65535)len+=3;else len+=4}return len}var UTF16Decoder=typeof TextDecoder!="undefined"?new TextDecoder("utf-16le"):undefined;function allocateUTF8(str){var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8Array(str,HEAP8,ret,size);return ret}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}var buffer,HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;function updateGlobalBufferAndViews(buf){buffer=buf;Module["HEAP8"]=HEAP8=new Int8Array(buf);Module["HEAP16"]=HEAP16=new Int16Array(buf);Module["HEAP32"]=HEAP32=new Int32Array(buf);Module["HEAPU8"]=HEAPU8=new Uint8Array(buf);Module["HEAPU16"]=HEAPU16=new Uint16Array(buf);Module["HEAPU32"]=HEAPU32=new Uint32Array(buf);Module["HEAPF32"]=HEAPF32=new Float32Array(buf);Module["HEAPF64"]=HEAPF64=new Float64Array(buf)}var INITIAL_MEMORY=Module["INITIAL_MEMORY"]||16777216;var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;function keepRuntimeAlive(){return noExitRuntime}function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module["noFSInit"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();SOCKFS.root=FS.mount(SOCKFS,{},null);callRuntimeCallbacks(__ATINIT__)}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){{if(Module["onAbort"]){Module["onAbort"](what)}}what="Aborted("+what+")";err(what);ABORT=true;EXITSTATUS=1;what+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix="data:application/octet-stream;base64,";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith("file://")}var wasmBinaryFile;if(Module["locateFile"]){wasmBinaryFile="dotnet.wasm";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}}else{wasmBinaryFile=new URL("dotnet.wasm",import.meta.url).toString()}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}else{throw"both async and sync fetching of the wasm failed"}}catch(err){abort(err)}}function getBinaryPromise(){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch=="function"&&!isFileURI(wasmBinaryFile)){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){if(!response["ok"]){throw"failed to load wasm binary file at '"+wasmBinaryFile+"'"}return response["arrayBuffer"]()}).catch(function(){return getBinary(wasmBinaryFile)})}else{if(readAsync){return new Promise(function(resolve,reject){readAsync(wasmBinaryFile,function(response){resolve(new Uint8Array(response))},reject)})}}}return Promise.resolve().then(function(){return getBinary(wasmBinaryFile)})}function createWasm(){var info={"env":asmLibraryArg,"wasi_snapshot_preview1":asmLibraryArg};function receiveInstance(instance,module){var exports=instance.exports;Module["asm"]=exports;wasmMemory=Module["asm"]["memory"];updateGlobalBufferAndViews(wasmMemory.buffer);wasmTable=Module["asm"]["__indirect_function_table"];addOnInit(Module["asm"]["__wasm_call_ctors"]);removeRunDependency("wasm-instantiate")}addRunDependency("wasm-instantiate");function receiveInstantiationResult(result){receiveInstance(result["instance"])}function instantiateArrayBuffer(receiver){return getBinaryPromise().then(function(binary){return WebAssembly.instantiate(binary,info)}).then(function(instance){return instance}).then(receiver,function(reason){err("failed to asynchronously prepare wasm: "+reason);abort(reason)})}function instantiateAsync(){if(!wasmBinary&&typeof WebAssembly.instantiateStreaming=="function"&&!isDataURI(wasmBinaryFile)&&!isFileURI(wasmBinaryFile)&&typeof fetch=="function"){return fetch(wasmBinaryFile,{credentials:"same-origin"}).then(function(response){var result=WebAssembly.instantiateStreaming(response,info);return result.then(receiveInstantiationResult,function(reason){err("wasm streaming compile failed: "+reason);err("falling back to ArrayBuffer instantiation");return instantiateArrayBuffer(receiveInstantiationResult)})})}else{return instantiateArrayBuffer(receiveInstantiationResult)}}if(Module["instantiateWasm"]){try{var exports=Module["instantiateWasm"](info,receiveInstance);return exports}catch(e){err("Module.instantiateWasm callback failed with error: "+e);return false}}instantiateAsync().catch(readyPromiseReject);return{}}var tempDouble;var tempI64;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback(Module);continue}var func=callback.func;if(typeof func=="number"){if(callback.arg===undefined){getWasmTableEntry(func)()}else{getWasmTableEntry(func)(callback.arg)}}else{func(callback.arg===undefined?null:callback.arg)}}}function demangle(func){return func}function demangleAll(text){var regex=/\b_Z[\w\d_]+/g;return text.replace(regex,function(x){var y=demangle(x);return x===y?x:y+" ["+x+"]"})}function getValue(ptr,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":return HEAP8[ptr>>0];case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP32[ptr>>2];case"float":return HEAPF32[ptr>>2];case"double":return Number(HEAPF64[ptr>>3]);default:abort("invalid type for getValue: "+type)}return null}var wasmTableMirror=[];function getWasmTableEntry(funcPtr){var func=wasmTableMirror[funcPtr];if(!func){if(funcPtr>=wasmTableMirror.length)wasmTableMirror.length=funcPtr+1;wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func}function jsStackTrace(){var error=new Error;if(!error.stack){try{throw new Error}catch(e){error=e}if(!error.stack){return"(no stack trace available)"}}return error.stack.toString()}function setValue(ptr,value,type="i8"){if(type.endsWith("*"))type="i32";switch(type){case"i1":HEAP8[ptr>>0]=value;break;case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;default:abort("invalid type for setValue: "+type)}}function setWasmTableEntry(idx,func){wasmTable.set(idx,func);wasmTableMirror[idx]=wasmTable.get(idx)}function ___cxa_allocate_exception(size){return _malloc(size+24)+24}var exceptionCaught=[];function exception_addRef(info){info.add_ref()}var uncaughtExceptionCount=0;function ___cxa_begin_catch(ptr){var info=new ExceptionInfo(ptr);if(!info.get_caught()){info.set_caught(true);uncaughtExceptionCount--}info.set_rethrown(false);exceptionCaught.push(info);exception_addRef(info);return info.get_exception_ptr()}var exceptionLast=0;function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){HEAPU32[this.ptr+4>>2]=type};this.get_type=function(){return HEAPU32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAPU32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAPU32[this.ptr+8>>2]};this.set_refcount=function(refcount){HEAP32[this.ptr>>2]=refcount};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor);this.set_refcount(0);this.set_caught(false);this.set_rethrown(false)};this.add_ref=function(){var value=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=value+1};this.release_ref=function(){var prev=HEAP32[this.ptr>>2];HEAP32[this.ptr>>2]=prev-1;return prev===1};this.set_adjusted_ptr=function(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return HEAPU32[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}function ___cxa_free_exception(ptr){return _free(new ExceptionInfo(ptr).ptr)}function exception_decRef(info){if(info.release_ref()&&!info.get_rethrown()){var destructor=info.get_destructor();if(destructor){getWasmTableEntry(destructor)(info.excPtr)}___cxa_free_exception(info.excPtr)}}function ___cxa_end_catch(){_setThrew(0);var info=exceptionCaught.pop();exception_decRef(info);exceptionLast=0}function ___resumeException(ptr){if(!exceptionLast){exceptionLast=ptr}throw ptr}function ___cxa_find_matching_catch_3(){var thrown=exceptionLast;if(!thrown){setTempRet0(0);return 0}var info=new ExceptionInfo(thrown);info.set_adjusted_ptr(thrown);var thrownType=info.get_type();if(!thrownType){setTempRet0(0);return thrown}var typeArray=Array.prototype.slice.call(arguments);for(var i=0;ipath.charAt(0)==="/",splitPath:filename=>{var splitPathRe=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last==="."){parts.splice(i,1)}else if(last===".."){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift("..")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)==="/";path=PATH.normalizeArray(path.split("/").filter(p=>!!p),!isAbsolute).join("/");if(!path&&!isAbsolute){path="."}if(path&&trailingSlash){path+="/"}return(isAbsolute?"/":"")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return"."}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path==="/")return"/";path=PATH.normalize(path);path=path.replace(/\/$/,"");var lastSlash=path.lastIndexOf("/");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:function(){var paths=Array.prototype.slice.call(arguments,0);return PATH.normalize(paths.join("/"))},join2:(l,r)=>{return PATH.normalize(l+"/"+r)}};function getRandomDevice(){if(typeof crypto=="object"&&typeof crypto["getRandomValues"]=="function"){var randomBuffer=new Uint8Array(1);return function(){crypto.getRandomValues(randomBuffer);return randomBuffer[0]}}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require("crypto");return function(){return crypto_module["randomBytes"](1)[0]}}catch(e){}}return function(){abort("randomDevice")}}var PATH_FS={resolve:function(){var resolvedPath="",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!="string"){throw new TypeError("Arguments to path.resolve must be strings")}else if(!path){return""}resolvedPath=path+"/"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split("/").filter(p=>!!p),!resolvedAbsolute).join("/");return(resolvedAbsolute?"/":"")+resolvedPath||"."},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start=0;end--){if(arr[end]!=="")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split("/"));var toParts=trim(to.split("/"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i0){result=buf.slice(0,bytesRead).toString("utf-8")}else{result=null}}else if(typeof window!="undefined"&&typeof window.prompt=="function"){result=window.prompt("Input: ");if(result!==null){result+="\n"}}else if(typeof readline=="function"){result=readline();if(result!==null){result+="\n"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},flush:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function zeroMemory(address,size){HEAPU8.fill(0,address,address+size)}function alignMemory(size,alignment){return Math.ceil(size/alignment)*alignment}function mmapAlloc(size){size=alignMemory(size,65536);var ptr=_emscripten_builtin_memalign(65536,size);if(!ptr)return 0;zeroMemory(ptr,size);return ptr}var MEMFS={ops_table:null,mount:function(mount){return MEMFS.createNode(null,"/",16384|511,0)},createNode:function(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}if(!MEMFS.ops_table){MEMFS.ops_table={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}}}var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray:function(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage:function(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[".",".."];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i0||position+length{path=PATH_FS.resolve(FS.cwd(),path);if(!path)return{path:"",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=PATH.normalizeArray(path.split("/").filter(p=>!!p),false);var current=FS.root;var current_path="/";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:node=>{var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!=="/"?mount+"/"+path:mount+path}path=path?node.name+"/"+path:node.name;node=node.parent}},hashName:(parentid,name)=>{var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode:node=>{var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:node=>{var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:(parent,name)=>{var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:(parent,name,mode,rdev)=>{var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:node=>{FS.hashRemoveNode(node)},isRoot:node=>{return node===node.parent},isMountpoint:node=>{return!!node.mounted},isFile:mode=>{return(mode&61440)===32768},isDir:mode=>{return(mode&61440)===16384},isLink:mode=>{return(mode&61440)===40960},isChrdev:mode=>{return(mode&61440)===8192},isBlkdev:mode=>{return(mode&61440)===24576},isFIFO:mode=>{return(mode&61440)===4096},isSocket:mode=>{return(mode&49152)===49152},flagModes:{"r":0,"r+":2,"w":577,"w+":578,"a":1089,"a+":1090},modeStringToFlags:str=>{var flags=FS.flagModes[str];if(typeof flags=="undefined"){throw new Error("Unknown file open mode: "+str)}return flags},flagsToPermissionString:flag=>{var perms=["r","w","rw"][flag&3];if(flag&512){perms+="w"}return perms},nodePermissions:(node,perms)=>{if(FS.ignorePermissions){return 0}if(perms.includes("r")&&!(node.mode&292)){return 2}else if(perms.includes("w")&&!(node.mode&146)){return 2}else if(perms.includes("x")&&!(node.mode&73)){return 2}return 0},mayLookup:dir=>{var errCode=FS.nodePermissions(dir,"x");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:(dir,name)=>{try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,"wx")},mayDelete:(dir,name,isdir)=>{var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,"wx");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:(node,flags)=>{if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!=="r"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:(fd_start=0,fd_end=FS.MAX_OPEN_FDS)=>{for(var fd=fd_start;fd<=fd_end;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:fd=>FS.streams[fd],createStream:(stream,fd_start,fd_end)=>{if(!FS.FSStream){FS.FSStream=function(){this.shared={}};FS.FSStream.prototype={object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}},flags:{get:function(){return this.shared.flags},set:function(val){this.shared.flags=val}},position:{get function(){return this.shared.position},set:function(val){this.shared.position=val}}}}stream=Object.assign(new FS.FSStream,stream);var fd=FS.nextfd(fd_start,fd_end);stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:fd=>{FS.streams[fd]=null},chrdev_stream_ops:{open:stream=>{var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:()=>{throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice:(dev,ops)=>{FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts:mount=>{var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:(populate,callback)=>{if(typeof populate=="function"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err("warning: "+FS.syncFSRequests+" FS.syncfs operations in flight at once, probably just doing extra work")}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:(type,opts,mountpoint)=>{var root=mountpoint==="/";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:mountpoint=>{var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:(parent,name)=>{return parent.node_ops.lookup(parent,name)},mknod:(path,mode,dev)=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name==="."||name===".."){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:(path,mode)=>{mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:(path,mode)=>{mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:(path,mode)=>{var dirs=path.split("/");var d="";for(var i=0;i{if(typeof dev=="undefined"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink:(oldpath,newpath)=>{if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename:(old_path,new_path)=>{var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!=="."){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,"w");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name)}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir:path=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink:path=>{var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat:(path,dontFollow)=>{var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat:path=>{return FS.stat(path,true)},chmod:(path,mode,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod:(path,mode)=>{FS.chmod(path,mode,true)},fchmod:(fd,mode)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chmod(stream.node,mode)},chown:(path,uid,gid,dontFollow)=>{var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown:(path,uid,gid)=>{FS.chown(path,uid,gid,true)},fchown:(fd,uid,gid)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chown(stream.node,uid,gid)},truncate:(path,len)=>{if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path=="string"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,"w");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate:(fd,len)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime:(path,atime,mtime)=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open:(path,flags,mode)=>{if(path===""){throw new FS.ErrnoError(44)}flags=typeof flags=="string"?FS.modeStringToFlags(flags):flags;mode=typeof mode=="undefined"?438:mode;if(flags&64){mode=mode&4095|32768}else{mode=0}var node;if(typeof path=="object"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module["logReadFiles"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close:stream=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed:stream=>{return stream.fd===null},llseek:(stream,offset,whence)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read:(stream,buffer,offset,length,position)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write:(stream,buffer,offset,length,position,canOwn)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!="undefined";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate:(stream,offset,length)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap:(stream,length,position,prot,flags)=>{if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync:(stream,buffer,offset,length,mmapFlags)=>{if(!stream||!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},munmap:stream=>0,ioctl:(stream,cmd,arg)=>{if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile:(path,opts={})=>{opts.flags=opts.flags||0;opts.encoding=opts.encoding||"binary";if(opts.encoding!=="utf8"&&opts.encoding!=="binary"){throw new Error('Invalid encoding type "'+opts.encoding+'"')}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding==="utf8"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding==="binary"){ret=buf}FS.close(stream);return ret},writeFile:(path,data,opts={})=>{opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data=="string"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error("Unsupported data type")}FS.close(stream)},cwd:()=>FS.currentPath,chdir:path=>{var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,"x");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories:()=>{FS.mkdir("/tmp");FS.mkdir("/home");FS.mkdir("/home/web_user")},createDefaultDevices:()=>{FS.mkdir("/dev");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev("/dev/null",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev("/dev/tty",FS.makedev(5,0));FS.mkdev("/dev/tty1",FS.makedev(6,0));var random_device=getRandomDevice();FS.createDevice("/dev","random",random_device);FS.createDevice("/dev","urandom",random_device);FS.mkdir("/dev/shm");FS.mkdir("/dev/shm/tmp")},createSpecialDirectories:()=>{FS.mkdir("/proc");var proc_self=FS.mkdir("/proc/self");FS.mkdir("/proc/self/fd");FS.mount({mount:()=>{var node=FS.createNode(proc_self,"fd",16384|511,73);node.node_ops={lookup:(parent,name)=>{var fd=+name;var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);var ret={parent:null,mount:{mountpoint:"fake"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},"/proc/self/fd")},createStandardStreams:()=>{if(Module["stdin"]){FS.createDevice("/dev","stdin",Module["stdin"])}else{FS.symlink("/dev/tty","/dev/stdin")}if(Module["stdout"]){FS.createDevice("/dev","stdout",null,Module["stdout"])}else{FS.symlink("/dev/tty","/dev/stdout")}if(Module["stderr"]){FS.createDevice("/dev","stderr",null,Module["stderr"])}else{FS.symlink("/dev/tty1","/dev/stderr")}var stdin=FS.open("/dev/stdin",0);var stdout=FS.open("/dev/stdout",1);var stderr=FS.open("/dev/stderr",1)},ensureErrnoError:()=>{if(FS.ErrnoError)return;FS.ErrnoError=function ErrnoError(errno,node){this.node=node;this.setErrno=function(errno){this.errno=errno};this.setErrno(errno);this.message="FS error"};FS.ErrnoError.prototype=new Error;FS.ErrnoError.prototype.constructor=FS.ErrnoError;[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack=""})},staticInit:()=>{FS.ensureErrnoError();FS.nameTable=new Array(4096);FS.mount(MEMFS,{},"/");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={"MEMFS":MEMFS}},init:(input,output,error)=>{FS.init.initialized=true;FS.ensureErrnoError();Module["stdin"]=input||Module["stdin"];Module["stdout"]=output||Module["stdout"];Module["stderr"]=error||Module["stderr"];FS.createStandardStreams()},quit:()=>{FS.init.initialized=false;for(var i=0;i{var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode},findObject:(path,dontResolveLastLink)=>{var ret=FS.analyzePath(path,dontResolveLastLink);if(ret.exists){return ret.object}else{return null}},analyzePath:(path,dontResolveLastLink)=>{try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path==="/"}catch(e){ret.error=e.errno}return ret},createPath:(parent,path,canRead,canWrite)=>{parent=typeof parent=="string"?parent:FS.getPath(parent);var parts=path.split("/").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile:(parent,name,properties,canRead,canWrite)=>{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile:(parent,name,data,canRead,canWrite,canOwn)=>{var path=name;if(parent){parent=typeof parent=="string"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS.getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data=="string"){var arr=new Array(data.length);for(var i=0,len=data.length;i{var path=PATH.join2(typeof parent=="string"?parent:FS.getPath(parent),name);var mode=FS.getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open:stream=>{stream.seekable=false},close:stream=>{if(output&&output.buffer&&output.buffer.length){output(10)}},read:(stream,buffer,offset,length,pos)=>{var bytesRead=0;for(var i=0;i{for(var i=0;i{if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!="undefined"){throw new Error("Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.")}else if(read_){try{obj.contents=intArrayFromString(read_(obj.url),true);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}else{throw new Error("Cannot load without read() or XMLHttpRequest.")}},createLazyFile:(parent,name,url,canRead,canWrite)=>{function LazyUint8Array(){this.lengthKnown=false;this.chunks=[]}LazyUint8Array.prototype.get=function LazyUint8Array_get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open("HEAD",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);var datalength=Number(xhr.getResponseHeader("Content-length"));var header;var hasByteServing=(header=xhr.getResponseHeader("Accept-Ranges"))&&header==="bytes";var usesGzip=(header=xhr.getResponseHeader("Content-Encoding"))&&header==="gzip";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error("invalid range ("+from+", "+to+") or no bytes requested!");if(to>datalength-1)throw new Error("only "+datalength+" bytes available! programmer error!");var xhr=new XMLHttpRequest;xhr.open("GET",url,false);if(datalength!==chunkSize)xhr.setRequestHeader("Range","bytes="+from+"-"+to);xhr.responseType="arraybuffer";if(xhr.overrideMimeType){xhr.overrideMimeType("text/plain; charset=x-user-defined")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error("Couldn't load "+url+". Status: "+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}else{return intArrayFromString(xhr.responseText||"",true)}};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]=="undefined"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]=="undefined")throw new Error("doXHR failed!");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out("LazyFiles on gzip forces download of the whole file when length is accessed")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!="undefined"){if(!ENVIRONMENT_IS_WORKER)throw"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});stream_ops.read=(stream,buffer,offset,length,position)=>{FS.forceLoadFile(node);var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i{var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency("cp "+fullname);function processData(byteArray){function finish(byteArray){if(preFinish)preFinish();if(!dontCreateFile){FS.createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}if(onload)onload();removeRunDependency(dep)}if(Browser.handledByPreloadPlugin(byteArray,fullname,finish,()=>{if(onerror)onerror();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url=="string"){asyncLoad(url,byteArray=>processData(byteArray),onerror)}else{processData(url)}},indexedDB:()=>{return window.indexedDB||window.mozIndexedDB||window.webkitIndexedDB||window.msIndexedDB},DB_NAME:()=>{return"EM_FS_"+window.location.pathname},DB_VERSION:20,DB_STORE_NAME:"FILE_DATA",saveFilesToDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=()=>{out("creating db");var db=openRequest.result;db.createObjectStore(FS.DB_STORE_NAME)};openRequest.onsuccess=()=>{var db=openRequest.result;var transaction=db.transaction([FS.DB_STORE_NAME],"readwrite");var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var putRequest=files.put(FS.analyzePath(path).object.contents,path);putRequest.onsuccess=()=>{ok++;if(ok+fail==total)finish()};putRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror},loadFilesFromDB:(paths,onload,onerror)=>{onload=onload||(()=>{});onerror=onerror||(()=>{});var indexedDB=FS.indexedDB();try{var openRequest=indexedDB.open(FS.DB_NAME(),FS.DB_VERSION)}catch(e){return onerror(e)}openRequest.onupgradeneeded=onerror;openRequest.onsuccess=()=>{var db=openRequest.result;try{var transaction=db.transaction([FS.DB_STORE_NAME],"readonly")}catch(e){onerror(e);return}var files=transaction.objectStore(FS.DB_STORE_NAME);var ok=0,fail=0,total=paths.length;function finish(){if(fail==0)onload();else onerror()}paths.forEach(path=>{var getRequest=files.get(path);getRequest.onsuccess=()=>{if(FS.analyzePath(path).exists){FS.unlink(path)}FS.createDataFile(PATH.dirname(path),PATH.basename(path),getRequest.result,true,true,true);ok++;if(ok+fail==total)finish()};getRequest.onerror=()=>{fail++;if(ok+fail==total)finish()}});transaction.onerror=onerror};openRequest.onerror=onerror}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt:function(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=FS.getStream(dirfd);if(!dirstream)throw new FS.ErrnoError(8);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat:function(func,path,buf){try{var stat=func(path)}catch(e){if(e&&e.node&&PATH.normalize(path)!==PATH.normalize(FS.getPath(e.node))){return-54}throw e}HEAP32[buf>>2]=stat.dev;HEAP32[buf+4>>2]=0;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAP32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;HEAP32[buf+32>>2]=0;tempI64=[stat.size>>>0,(tempDouble=stat.size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+40>>2]=tempI64[0],HEAP32[buf+44>>2]=tempI64[1];HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;HEAP32[buf+56>>2]=stat.atime.getTime()/1e3|0;HEAP32[buf+60>>2]=0;HEAP32[buf+64>>2]=stat.mtime.getTime()/1e3|0;HEAP32[buf+68>>2]=0;HEAP32[buf+72>>2]=stat.ctime.getTime()/1e3|0;HEAP32[buf+76>>2]=0;tempI64=[stat.ino>>>0,(tempDouble=stat.ino,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[buf+80>>2]=tempI64[0],HEAP32[buf+84>>2]=tempI64[1];return 0},doMsync:function(addr,stream,len,flags,offset){var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream}};function ___syscall_chdir(path){try{path=SYSCALLS.getStr(path);FS.chdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_chmod(path,mode){try{path=SYSCALLS.getStr(path);FS.chmod(path,mode);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}var SOCKFS={mount:function(mount){Module["websocket"]=Module["websocket"]&&"object"===typeof Module["websocket"]?Module["websocket"]:{};Module["websocket"]._callbacks={};Module["websocket"]["on"]=function(event,callback){if("function"===typeof callback){this._callbacks[event]=callback}return this};Module["websocket"].emit=function(event,param){if("function"===typeof this._callbacks[event]){this._callbacks[event].call(this,param)}};return FS.createNode(null,"/",16384|511,0)},createSocket:function(family,type,protocol){type&=~526336;var streaming=type==1;if(streaming&&protocol&&protocol!=6){throw new FS.ErrnoError(66)}var sock={family:family,type:type,protocol:protocol,server:null,error:null,peers:{},pending:[],recv_queue:[],sock_ops:SOCKFS.websocket_sock_ops};var name=SOCKFS.nextname();var node=FS.createNode(SOCKFS.root,name,49152,0);node.sock=sock;var stream=FS.createStream({path:name,node:node,flags:2,seekable:false,stream_ops:SOCKFS.stream_ops});sock.stream=stream;return sock},getSocket:function(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll:function(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl:function(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read:function(stream,buffer,offset,length,position){var sock=stream.node.sock;var msg=sock.sock_ops.recvmsg(sock,length);if(!msg){return 0}buffer.set(msg.buffer,offset);return msg.buffer.length},write:function(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close:function(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname:function(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return"socket["+SOCKFS.nextname.current+++"]"},websocket_sock_ops:{createPeer:function(sock,addr,port){var ws;if(typeof addr=="object"){ws=addr;addr=null;port=null}if(ws){if(ws._socket){addr=ws._socket.remoteAddress;port=ws._socket.remotePort}else{var result=/ws[s]?:\/\/([^:]+):(\d+)/.exec(ws.url);if(!result){throw new Error("WebSocket URL must be in the format ws(s)://address:port")}addr=result[1];port=parseInt(result[2],10)}}else{try{var runtimeConfig=Module["websocket"]&&"object"===typeof Module["websocket"];var url="ws:#".replace("#","//");if(runtimeConfig){if("string"===typeof Module["websocket"]["url"]){url=Module["websocket"]["url"]}}if(url==="ws://"||url==="wss://"){var parts=addr.split("/");url=url+parts[0]+":"+port+"/"+parts.slice(1).join("/")}var subProtocols="binary";if(runtimeConfig){if("string"===typeof Module["websocket"]["subprotocol"]){subProtocols=Module["websocket"]["subprotocol"]}}var opts=undefined;if(subProtocols!=="null"){subProtocols=subProtocols.replace(/^ +| +$/g,"").split(/ *, */);opts=subProtocols}if(runtimeConfig&&null===Module["websocket"]["subprotocol"]){subProtocols="null";opts=undefined}var WebSocketConstructor;if(ENVIRONMENT_IS_NODE){WebSocketConstructor=require("ws")}else{WebSocketConstructor=WebSocket}ws=new WebSocketConstructor(url,opts);ws.binaryType="arraybuffer"}catch(e){throw new FS.ErrnoError(23)}}var peer={addr:addr,port:port,socket:ws,dgram_send_queue:[]};SOCKFS.websocket_sock_ops.addPeer(sock,peer);SOCKFS.websocket_sock_ops.handlePeerEvents(sock,peer);if(sock.type===2&&typeof sock.sport!="undefined"){peer.dgram_send_queue.push(new Uint8Array([255,255,255,255,"p".charCodeAt(0),"o".charCodeAt(0),"r".charCodeAt(0),"t".charCodeAt(0),(sock.sport&65280)>>8,sock.sport&255]))}return peer},getPeer:function(sock,addr,port){return sock.peers[addr+":"+port]},addPeer:function(sock,peer){sock.peers[peer.addr+":"+peer.port]=peer},removePeer:function(sock,peer){delete sock.peers[peer.addr+":"+peer.port]},handlePeerEvents:function(sock,peer){var first=true;var handleOpen=function(){Module["websocket"].emit("open",sock.stream.fd);try{var queued=peer.dgram_send_queue.shift();while(queued){peer.socket.send(queued);queued=peer.dgram_send_queue.shift()}}catch(e){peer.socket.close()}};function handleMessage(data){if(typeof data=="string"){var encoder=new TextEncoder;data=encoder.encode(data)}else{assert(data.byteLength!==undefined);if(data.byteLength==0){return}else{data=new Uint8Array(data)}}var wasfirst=first;first=false;if(wasfirst&&data.length===10&&data[0]===255&&data[1]===255&&data[2]===255&&data[3]===255&&data[4]==="p".charCodeAt(0)&&data[5]==="o".charCodeAt(0)&&data[6]==="r".charCodeAt(0)&&data[7]==="t".charCodeAt(0)){var newport=data[8]<<8|data[9];SOCKFS.websocket_sock_ops.removePeer(sock,peer);peer.port=newport;SOCKFS.websocket_sock_ops.addPeer(sock,peer);return}sock.recv_queue.push({addr:peer.addr,port:peer.port,data:data});Module["websocket"].emit("message",sock.stream.fd)}if(ENVIRONMENT_IS_NODE){peer.socket.on("open",handleOpen);peer.socket.on("message",function(data,isBinary){if(!isBinary){return}handleMessage(new Uint8Array(data).buffer)});peer.socket.on("close",function(){Module["websocket"].emit("close",sock.stream.fd)});peer.socket.on("error",function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])})}else{peer.socket.onopen=handleOpen;peer.socket.onclose=function(){Module["websocket"].emit("close",sock.stream.fd)};peer.socket.onmessage=function peer_socket_onmessage(event){handleMessage(event.data)};peer.socket.onerror=function(error){sock.error=14;Module["websocket"].emit("error",[sock.stream.fd,sock.error,"ECONNREFUSED: Connection refused"])}}},poll:function(sock){if(sock.type===1&&sock.server){return sock.pending.length?64|1:0}var mask=0;var dest=sock.type===1?SOCKFS.websocket_sock_ops.getPeer(sock,sock.daddr,sock.dport):null;if(sock.recv_queue.length||!dest||dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=64|1}if(!dest||dest&&dest.socket.readyState===dest.socket.OPEN){mask|=4}if(dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=16}return mask},ioctl:function(sock,request,arg){switch(request){case 21531:var bytes=0;if(sock.recv_queue.length){bytes=sock.recv_queue[0].data.length}HEAP32[arg>>2]=bytes;return 0;default:return 28}},close:function(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i>2]=value;return value}function inetNtop4(addr){return(addr&255)+"."+(addr>>8&255)+"."+(addr>>16&255)+"."+(addr>>24&255)}function inetNtop6(ints){var str="";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part="";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str="::ffff:";str+=v4part;return str}if(parts[5]===0){str="::";if(v4part==="0.0.0.0")v4part="";if(v4part==="0.0.0.1")v4part="1";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word>1];var port=_ntohs(HEAPU16[sa+2>>1]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=HEAP32[sa+4>>2];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[HEAP32[sa+8>>2],HEAP32[sa+12>>2],HEAP32[sa+16>>2],HEAP32[sa+20>>2]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family:family,addr:addr,port:port}}function inetPton4(str){var b=str.split(".");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0}function jstoi_q(str){return parseInt(str)}function inetPton6(str){var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\dA-F]{1,4}:(:|\b)|){5}|([\dA-F]{1,4}:){6})((([\dA-F]{1,4}((?!\3)::|:\b|$))|(?!\2\3)){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str==="::"){return[0,0,0,0,0,0,0,0]}if(str.startsWith("::")){str=str.replace("::","Z:")}else{str=str.replace("::",":Z:")}if(str.indexOf(".")>0){str=str.replace(new RegExp("[.]","g"),":");words=str.split(":");words[words.length-4]=jstoi_q(words[words.length-4])+jstoi_q(words[words.length-3])*256;words[words.length-3]=jstoi_q(words[words.length-2])+jstoi_q(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(":")}offset=0;z=0;for(w=0;w>1]=2;return 0}case 6:case 7:return 0;case 16:case 8:return-28;case 9:setErrNo(28);return-1;default:{return-28}}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_statfs64(path,size,buf){try{path=SYSCALLS.getStr(path);HEAP32[buf+4>>2]=4096;HEAP32[buf+40>>2]=4096;HEAP32[buf+8>>2]=1e6;HEAP32[buf+12>>2]=5e5;HEAP32[buf+16>>2]=5e5;HEAP32[buf+20>>2]=FS.nextInode;HEAP32[buf+24>>2]=1e6;HEAP32[buf+28>>2]=42;HEAP32[buf+44>>2]=2;HEAP32[buf+36>>2]=255;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_fstatfs64(fd,size,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return ___syscall_statfs64(0,size,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function convertI32PairToI53Checked(lo,hi){return hi+2097152>>>0<4194305-!!lo?(lo>>>0)+hi*4294967296:NaN}function ___syscall_ftruncate64(fd,length_low,length_high){try{var length=convertI32PairToI53Checked(length_low,length_high);if(isNaN(length))return-61;FS.ftruncate(fd,length);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_getcwd(buf,size){try{if(size===0)return-28;var cwd=FS.cwd();var cwdLengthInBytes=lengthBytesUTF8(cwd)+1;if(size>>0,(tempDouble=id,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos>>2]=tempI64[0],HEAP32[dirp+pos+4>>2]=tempI64[1];tempI64=[(idx+1)*struct_size>>>0,(tempDouble=(idx+1)*struct_size,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[dirp+pos+8>>2]=tempI64[0],HEAP32[dirp+pos+12>>2]=tempI64[1];HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18>>0]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:case 21505:{if(!stream.tty)return-59;return 0}case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:{if(!stream.tty)return-59;return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.get();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.get();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;return 0}case 21524:{if(!stream.tty)return-59;return 0}default:abort("bad ioctl syscall "+op)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]==="/")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~4352;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?SYSCALLS.get():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_readlinkat(dirfd,path,buf,bufsize){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(bufsize<=0)return-28;var ret=FS.readlink(path);var len=Math.min(bufsize,lengthBytesUTF8(ret));var endChar=HEAP8[buf+len];stringToUTF8(ret,buf,bufsize+1);HEAP8[buf+len]=endChar;return len}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function writeSockaddr(sa,family,addr,port,addrlen){switch(family){case 2:addr=inetPton4(addr);zeroMemory(sa,16);if(addrlen){HEAP32[addrlen>>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);if(addrlen){HEAP32[addrlen>>2]=28}HEAP32[sa>>2]=family;HEAP32[sa+8>>2]=addr[0];HEAP32[sa+12>>2]=addr[1];HEAP32[sa+16>>2]=addr[2];HEAP32[sa+20>>2]=addr[3];HEAP16[sa+2>>1]=_htons(port);break;default:return 5}return 0}function ___syscall_recvfrom(fd,buf,len,flags,addr,addrlen){try{var sock=getSocketFromFD(fd);var msg=sock.sock_ops.recvmsg(sock,len);if(!msg)return 0;if(addr){var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(msg.addr),msg.port,addrlen)}HEAPU8.set(msg.buffer,buf);return msg.buffer.byteLength}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_sendto(fd,message,length,flags,addr,addr_len){try{var sock=getSocketFromFD(fd);var dest=getSocketAddress(addr,addr_len,true);if(!dest){return FS.write(sock.stream,HEAP8,message,length)}else{return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_symlink(target,linkpath){try{target=SYSCALLS.getStr(target);linkpath=SYSCALLS.getStr(linkpath);FS.symlink(target,linkpath);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort("Invalid flags passed to unlinkat")}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function ___syscall_utimensat(dirfd,path,times,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path,true);if(!times){var atime=Date.now();var mtime=atime}else{var seconds=HEAP32[times>>2];var nanoseconds=HEAP32[times+4>>2];atime=seconds*1e3+nanoseconds/(1e3*1e3);times+=8;seconds=HEAP32[times>>2];nanoseconds=HEAP32[times+4>>2];mtime=seconds*1e3+nanoseconds/(1e3*1e3)}FS.utime(path,atime,mtime);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __dlinit(main_dso_handle){}var dlopenMissingError="To use dlopen, you need enable dynamic linking, see https://github.com/emscripten-core/emscripten/wiki/Linking";function __dlopen_js(filename,flag){abort(dlopenMissingError)}function __emscripten_date_now(){return Date.now()}var nowIsMonotonic=true;function __emscripten_get_now_is_monotonic(){return nowIsMonotonic}function __gmtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}function __localtime_js(time,tmPtr){var date=new Date(HEAP32[time>>2]*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var start=new Date(date.getFullYear(),0,1);var yday=(date.getTime()-start.getTime())/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}function __mmap_js(len,prot,flags,fd,off,allocated){try{var stream=FS.getStream(fd);if(!stream)return-8;var res=FS.mmap(stream,len,off,prot,flags);var ptr=res.ptr;HEAP32[allocated>>2]=res.allocated;return ptr}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __msync_js(addr,len,flags,fd){try{SYSCALLS.doMsync(addr,FS.getStream(fd),len,flags,0);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function __munmap_js(addr,len,prot,flags,fd,offset){try{var stream=FS.getStream(fd);if(stream){if(prot&2){SYSCALLS.doMsync(addr,stream,len,flags,offset)}FS.munmap(stream)}}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return-e.errno}}function _tzset_impl(timezone,daylight,tzname){var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAP32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);function extractZone(date){var match=date.toTimeString().match(/\(([A-Za-z ]+)\)$/);return match?match[1]:"GMT"}var winterName=extractZone(winter);var summerName=extractZone(summer);var winterNamePtr=allocateUTF8(winterName);var summerNamePtr=allocateUTF8(summerName);if(summerOffset>2]=winterNamePtr;HEAPU32[tzname+4>>2]=summerNamePtr}else{HEAPU32[tzname>>2]=summerNamePtr;HEAPU32[tzname+4>>2]=winterNamePtr}}function __tzset_js(timezone,daylight,tzname){if(__tzset_js.called)return;__tzset_js.called=true;_tzset_impl(timezone,daylight,tzname)}function _abort(){abort("")}var DOTNETENTROPY={batchedQuotaMax:65536,getBatchedRandomValues:function(buffer,bufferLength){const needTempBuf=typeof SharedArrayBuffer!=="undefined"&&Module.HEAPU8.buffer instanceof SharedArrayBuffer;const buf=needTempBuf?new ArrayBuffer(bufferLength):Module.HEAPU8.buffer;const offset=needTempBuf?0:buffer;for(let i=0;i{var t=process["hrtime"]();return t[0]*1e3+t[1]/1e6}}else if(typeof dateNow!="undefined"){_emscripten_get_now=dateNow}else _emscripten_get_now=()=>performance.now();function _emscripten_get_now_res(){if(ENVIRONMENT_IS_NODE){return 1}else if(typeof dateNow!="undefined"){return 1e3}else return 1e3}function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function emscripten_realloc_buffer(size){try{wasmMemory.grow(size-buffer.byteLength+65535>>>16);updateGlobalBufferAndViews(wasmMemory.buffer);return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}let alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}var ENV={};function getExecutableName(){return thisProgram||"./this.program"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8";var env={"USER":"web_user","LOGNAME":"web_user","PATH":"/","PWD":"/","HOME":"/home/web_user","LANG":lang,"_":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(x+"="+env[x])}getEnvStrings.strings=strings}return getEnvStrings.strings}function _environ_get(__environ,environ_buf){var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;writeAsciiToMemory(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAPU32[penviron_buf_size>>2]=bufSize;return 0}function _exit(status){exit(status)}function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4;HEAP8[pbuf>>0]=type;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doReadv(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function doWritev(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr}return ret}function _fd_pwrite(fd,iov,iovcnt,offset_low,offset_high,pnum){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt,offset);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_read(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doReadv(stream,iov,iovcnt);HEAP32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_seek(fd,offset_low,offset_high,whence,newOffset){try{var offset=convertI32PairToI53Checked(offset_low,offset_high);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);tempI64=[stream.position>>>0,(tempDouble=stream.position,+Math.abs(tempDouble)>=1?tempDouble>0?(Math.min(+Math.floor(tempDouble/4294967296),4294967295)|0)>>>0:~~+Math.ceil((tempDouble-+(~~tempDouble>>>0))/4294967296)>>>0:0)],HEAP32[newOffset>>2]=tempI64[0],HEAP32[newOffset+4>>2]=tempI64[1];if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_sync(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);if(stream.stream_ops&&stream.stream_ops.fsync){return-stream.stream_ops.fsync(stream)}return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS=="undefined"||!(e instanceof FS.ErrnoError))throw e;return e.errno}}function _getTempRet0(){return getTempRet0()}function _llvm_eh_typeid_for(type){return type}function _mono_set_timeout(){return __dotnet_runtime.__linker_exports.mono_set_timeout.apply(__dotnet_runtime,arguments)}function _mono_wasm_add_dbg_command_received(){return __dotnet_runtime.__linker_exports.mono_wasm_add_dbg_command_received.apply(__dotnet_runtime,arguments)}function _mono_wasm_asm_loaded(){return __dotnet_runtime.__linker_exports.mono_wasm_asm_loaded.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_cs_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_cs_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_bind_js_function(){return __dotnet_runtime.__linker_exports.mono_wasm_bind_js_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_create_cs_owned_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_create_cs_owned_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_debugger_log(){return __dotnet_runtime.__linker_exports.mono_wasm_debugger_log.apply(__dotnet_runtime,arguments)}function _mono_wasm_fire_debugger_agent_message(){return __dotnet_runtime.__linker_exports.mono_wasm_fire_debugger_agent_message.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_global_object_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_global_object_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_get_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_get_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_bound_function(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_bound_function.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_blazor(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_blazor.apply(__dotnet_runtime,arguments)}function _mono_wasm_invoke_js_with_args_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_invoke_js_with_args_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_marshal_promise(){return __dotnet_runtime.__linker_exports.mono_wasm_marshal_promise.apply(__dotnet_runtime,arguments)}function _mono_wasm_release_cs_owned_object(){return __dotnet_runtime.__linker_exports.mono_wasm_release_cs_owned_object.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_by_index_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_by_index_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_entrypoint_breakpoint(){return __dotnet_runtime.__linker_exports.mono_wasm_set_entrypoint_breakpoint.apply(__dotnet_runtime,arguments)}function _mono_wasm_set_object_property_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_set_object_property_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_trace_logger(){return __dotnet_runtime.__linker_exports.mono_wasm_trace_logger.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_from_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_from_ref.apply(__dotnet_runtime,arguments)}function _mono_wasm_typed_array_to_array_ref(){return __dotnet_runtime.__linker_exports.mono_wasm_typed_array_to_array_ref.apply(__dotnet_runtime,arguments)}function _schedule_background_exec(){return __dotnet_runtime.__linker_exports.schedule_background_exec.apply(__dotnet_runtime,arguments)}function _setTempRet0(val){setTempRet0(val)}function __isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}function __arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var __MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var __MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function __addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=__isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):""};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S","%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_1[rule])}var WEEKDAYS=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var MONTHS=["January","February","March","April","May","June","July","August","September","October","November","December"];function leadingSomething(value,digits,character){var str=typeof value=="number"?value.toString():value||"";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=__addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}else{return thisDate.getFullYear()}}else{return thisDate.getFullYear()-1}}var EXPANSION_RULES_2={"%a":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},"%A":function(date){return WEEKDAYS[date.tm_wday]},"%b":function(date){return MONTHS[date.tm_mon].substring(0,3)},"%B":function(date){return MONTHS[date.tm_mon]},"%C":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},"%d":function(date){return leadingNulls(date.tm_mday,2)},"%e":function(date){return leadingSomething(date.tm_mday,2," ")},"%g":function(date){return getWeekBasedYear(date).toString().substring(2)},"%G":function(date){return getWeekBasedYear(date)},"%H":function(date){return leadingNulls(date.tm_hour,2)},"%I":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},"%j":function(date){return leadingNulls(date.tm_mday+__arraySum(__isLeapYear(date.tm_year+1900)?__MONTH_DAYS_LEAP:__MONTH_DAYS_REGULAR,date.tm_mon-1),3)},"%m":function(date){return leadingNulls(date.tm_mon+1,2)},"%M":function(date){return leadingNulls(date.tm_min,2)},"%n":function(){return"\n"},"%p":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return"AM"}else{return"PM"}},"%S":function(date){return leadingNulls(date.tm_sec,2)},"%t":function(){return"\t"},"%u":function(date){return date.tm_wday||7},"%U":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},"%V":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&__isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!__isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},"%w":function(date){return date.tm_wday},"%W":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},"%y":function(date){return(date.tm_year+1900).toString().substring(2)},"%Y":function(date){return date.tm_year+1900},"%z":function(date){var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?"+":"-")+String("0000"+off).slice(-4)},"%Z":function(date){return date.tm_zone},"%%":function(){return"%"}};pattern=pattern.replace(/%%/g,"\0\0");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,"g"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\0\0/g,"%");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.staticInit();Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_readFile"]=FS.readFile;Module["FS_createPath"]=FS.createPath;Module["FS_createDataFile"]=FS.createDataFile;Module["FS_createPreloadedFile"]=FS.createPreloadedFile;Module["FS_unlink"]=FS.unlink;Module["FS_createLazyFile"]=FS.createLazyFile;Module["FS_createDevice"]=FS.createDevice;let __dotnet_replacement_PThread=false?{}:undefined;if(false){__dotnet_replacement_PThread.loadWasmModuleToWorker=PThread.loadWasmModuleToWorker;__dotnet_replacement_PThread.threadInitTLS=PThread.threadInitTLS;__dotnet_replacement_PThread.allocateUnusedWorker=PThread.allocateUnusedWorker}let __dotnet_replacements={scriptUrl:import.meta.url,fetch:globalThis.fetch,require:require,updateGlobalBufferAndViews:updateGlobalBufferAndViews,pthreadReplacements:__dotnet_replacement_PThread};if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise=import("module").then(mod=>mod.createRequire(import.meta.url))}let __dotnet_exportedAPI=__dotnet_runtime.__initializeImportsAndExports({isGlobal:false,isNode:ENVIRONMENT_IS_NODE,isWorker:ENVIRONMENT_IS_WORKER,isShell:ENVIRONMENT_IS_SHELL,isWeb:ENVIRONMENT_IS_WEB,isPThread:false,quit_:quit_,ExitStatus:ExitStatus,requirePromise:__dotnet_replacements.requirePromise},{mono:MONO,binding:BINDING,internal:INTERNAL,module:Module,marshaled_imports:IMPORTS},__dotnet_replacements,__callbackAPI);updateGlobalBufferAndViews=__dotnet_replacements.updateGlobalBufferAndViews;var fetch=__dotnet_replacements.fetch;_scriptDir=__dirname=scriptDirectory=__dotnet_replacements.scriptDirectory;if(ENVIRONMENT_IS_NODE){__dotnet_replacements.requirePromise.then(someRequire=>{require=someRequire})}var noExitRuntime=__dotnet_replacements.noExitRuntime;if(false){PThread.loadWasmModuleToWorker=__dotnet_replacements.pthreadReplacements.loadWasmModuleToWorker;PThread.threadInitTLS=__dotnet_replacements.pthreadReplacements.threadInitTLS;PThread.allocateUnusedWorker=__dotnet_replacements.pthreadReplacements.allocateUnusedWorker}var ASSERTIONS=false;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var decodeBase64=typeof atob=="function"?atob:function(input){var keyStr="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var output="";var chr1,chr2,chr3;var enc1,enc2,enc3,enc4;var i=0;input=input.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{enc1=keyStr.indexOf(input.charAt(i++));enc2=keyStr.indexOf(input.charAt(i++));enc3=keyStr.indexOf(input.charAt(i++));enc4=keyStr.indexOf(input.charAt(i++));chr1=enc1<<2|enc2>>4;chr2=(enc2&15)<<4|enc3>>2;chr3=(enc3&3)<<6|enc4;output=output+String.fromCharCode(chr1);if(enc3!==64){output=output+String.fromCharCode(chr2)}if(enc4!==64){output=output+String.fromCharCode(chr3)}}while(i0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module["calledRun"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module["onRuntimeInitialized"])Module["onRuntimeInitialized"]();postRun()}if(Module["setStatus"]){Module["setStatus"]("Running...");setTimeout(function(){setTimeout(function(){Module["setStatus"]("")},1);doRun()},1)}else{doRun()}}Module["run"]=run;function exit(status,implicit){EXITSTATUS=status;procExit(status)}function procExit(code){EXITSTATUS=code;if(!keepRuntimeAlive()){if(Module["onExit"])Module["onExit"](code);ABORT=true}quit_(code,new ExitStatus(code))}if(Module["preInit"]){if(typeof Module["preInit"]=="function")Module["preInit"]=[Module["preInit"]];while(Module["preInit"].length>0){Module["preInit"].pop()()}}run();createDotnetRuntime.ready=createDotnetRuntime.ready.then(()=>{return __dotnet_exportedAPI}); + + + return createDotnetRuntime.ready +} +); +})(); +export default createDotnetRuntime; +const MONO = {}, BINDING = {}, INTERNAL = {}, IMPORTS = {}; + +// TODO duplicated from emscripten, so we can use them in the __setEmscriptenEntrypoint +var ENVIRONMENT_IS_WEB = typeof window == 'object'; +var ENVIRONMENT_IS_WORKER = typeof importScripts == 'function'; +var ENVIRONMENT_IS_NODE = typeof process == 'object' && typeof process.versions == 'object' && typeof process.versions.node == 'string'; +var ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER; + +__dotnet_runtime.__setEmscriptenEntrypoint(createDotnetRuntime, { isNode: ENVIRONMENT_IS_NODE, isShell: ENVIRONMENT_IS_SHELL, isWeb: ENVIRONMENT_IS_WEB, isWorker: ENVIRONMENT_IS_WORKER }); +const dotnet = __dotnet_runtime.moduleExports.dotnet; +const exit = __dotnet_runtime.moduleExports.exit; +export { dotnet, exit, INTERNAL }; diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js.gz new file mode 100644 index 000000000..b6a7e7f38 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.7.0.5.9her4wdnhl.js.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat new file mode 100644 index 000000000..2e1c6dd61 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat.gz new file mode 100644 index 000000000..0991f8159 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.timezones.blat.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm new file mode 100644 index 000000000..b48cfb421 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm.gz new file mode 100644 index 000000000..a04516d0b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/dotnet.wasm.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat new file mode 100644 index 000000000..54093bdd3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat.gz new file mode 100644 index 000000000..32378d46b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt.dat.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat new file mode 100644 index 000000000..118a60d56 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat.gz new file mode 100644 index 000000000..97a8d5a68 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_CJK.dat.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat new file mode 100644 index 000000000..e4c1c9108 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat.gz new file mode 100644 index 000000000..2ee264219 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_EFIGS.dat.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat new file mode 100644 index 000000000..87b08e08a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat.gz new file mode 100644 index 000000000..4c6dd461f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/icudt_no_CJK.dat.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll new file mode 100644 index 000000000..b655ce1d7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz new file mode 100644 index 000000000..6f8620f3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll new file mode 100644 index 000000000..13b1f8c5c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz new file mode 100644 index 000000000..b20dbe794 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll new file mode 100644 index 000000000..ee9a10e48 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll.gz new file mode 100644 index 000000000..37e906384 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/mscorlib.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll new file mode 100644 index 000000000..b66a993aa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll.gz new file mode 100644 index 000000000..9568e2def Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/bin/Debug/net7.0/wwwroot/_framework/netstandard.dll.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 000000000..4257f4bc6 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfo.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfo.cs new file mode 100644 index 000000000..c3fb820d1 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("GraphSample")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("GraphSample")] +[assembly: System.Reflection.AssemblyTitleAttribute("GraphSample")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfoInputs.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfoInputs.cache new file mode 100644 index 000000000..b66cef083 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fd9cbe652d8aab94e20a580884b0002018eb7a73 diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GeneratedMSBuildEditorConfig.editorconfig b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 000000000..0aa379593 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,135 @@ +is_global = true +build_property.PublishFluentIconAssets = true +build_property.PublishFluentEmojiAssets = false +build_property.FluentEmojiStyles = +build_property.FluentEmojiGroups = +build_property.FluentIconSizes = 10,12,16,20,24,28,32,48 +build_property.FluentIconVariants = Filled,Regular +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = browser +build_property.RootNamespace = GraphSample +build_property.RootNamespace = GraphSample +build_property.ProjectDir = C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample +build_property._RazorSourceGeneratorDebug = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/App.razor] +build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/ApplicationTracker.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQXBwbGljYXRpb25UcmFja2VyLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Authentication.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQXV0aGVudGljYXRpb24ucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Calendar.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2FsZW5kYXIucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Chat.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2hhdC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Dashbar.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRGFzaGJhci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/EditOneNote.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdE9uZU5vdGUucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Index.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Schedulingmeeting.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2NoZWR1bGluZ21lZXRpbmcucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/SignIn.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2lnbkluLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Teams.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVGVhbXMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/TestAI.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVGVzdEFJLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/ToDo.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVG9Eby5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Transcript.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVHJhbnNjcmlwdC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/UniversalSearch.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVW5pdmVyc2FsU2VhcmNoLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Weather.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcV2VhdGhlci5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/AddCustomDescriptionPopup.razor] +build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXEFkZEN1c3RvbURlc2NyaXB0aW9uUG9wdXAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/AddTimelinePopup.razor] +build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXEFkZFRpbWVsaW5lUG9wdXAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/AssessmentInputPopup.razor] +build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXEFzc2Vzc21lbnRJbnB1dFBvcHVwLnJhem9y +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/InputPopup.razor] +build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXElucHV0UG9wdXAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/RemoveTimelinePopup.razor] +build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXFJlbW92ZVRpbWVsaW5lUG9wdXAucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/ReusableComponents/UpdateDatePopup.razor] +build_metadata.AdditionalFiles.TargetPath = UmV1c2FibGVDb21wb25lbnRzXFVwZGF0ZURhdGVQb3B1cC5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Shared/LoginDisplay.razor] +build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXExvZ2luRGlzcGxheS5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Shared/RedirectToLogin.razor] +build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFJlZGlyZWN0VG9Mb2dpbi5yYXpvcg== +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/_Imports.razor] +build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/Overview.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcT3ZlcnZpZXcucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-omvmab0aii + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Pages/SummarizeFiles.razor] +build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU3VtbWFyaXplRmlsZXMucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-8cwxo513pf + +[C:/Users/mahas/Downloads/HackathonMicrosoft/GraphSample/GraphSample/Shared/MainLayout.razor] +build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I= +build_metadata.AdditionalFiles.CssScope = b-bl0j7m4p9v diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GlobalUsings.g.cs b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GlobalUsings.g.cs new file mode 100644 index 000000000..0103b5925 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.GlobalUsings.g.cs @@ -0,0 +1,11 @@ +// +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.MvcApplicationPartsAssemblyInfo.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 000000000..e69de29bb diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.assets.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.assets.cache new file mode 100644 index 000000000..cae9a28ef Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.assets.cache differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.AssemblyReference.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.AssemblyReference.cache new file mode 100644 index 000000000..cc94fd62e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.AssemblyReference.cache differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CopyComplete b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CopyComplete new file mode 100644 index 000000000..e69de29bb diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CoreCompileInputs.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CoreCompileInputs.cache new file mode 100644 index 000000000..fcd6afa7c --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2932ca2cb29a4f0d502e17951739fc394972d1ac diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.FileListAbsolute.txt b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.FileListAbsolute.txt new file mode 100644 index 000000000..8d3cc5560 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.csproj.FileListAbsolute.txt @@ -0,0 +1,2104 @@ +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.boot.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\package-lock.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\package.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.staticwebassets.runtime.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.pdb +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.SecurityToken.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.OpenAI.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.TextAnalytics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Azure.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\AzureOpenAIClient.Http.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Blazored.Modal.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\BlazorInputFile.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ChartJSCore.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\DnsClient.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Imaging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Pdf.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Authorization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Authorization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Metadata.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.WebUtilities.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Authentication.WebAssembly.Msal.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Binder.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Physical.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileSystemGlobbing.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Hosting.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Http.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Options.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Fast.Components.FluentUI.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Beta.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.WebAssembly.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Abstractions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Authentication.Azure.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Http.HttpClientLibrary.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Form.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Text.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Net.Http.Headers.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Bson.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Newtonsoft.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\DocumentFormat.OpenXml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\BouncyCastle.Crypto.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\SharpCompress.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Snappier.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Packaging.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipelines.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.Data.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Tavis.UriTemplates.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\TimeZoneConverter.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ZstdSharp.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Imaging.resources.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Pdf.resources.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.CSharp.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Registry.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.AppContext.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Buffers.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Concurrent.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Immutable.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.NonGeneric.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Specialized.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Annotations.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.DataAnnotations.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.EventBasedAsync.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.TypeConverter.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Configuration.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Console.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Core.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.Common.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.DataSetExtensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Contracts.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Debug.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.DiagnosticSource.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.FileVersionInfo.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Process.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.StackTrace.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tools.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TraceSource.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tracing.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Dynamic.Runtime.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Asn1.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Tar.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Calendars.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.Brotli.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.FileSystem.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.ZipFile.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.AccessControl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.DriveInfo.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Watcher.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.IsolatedStorage.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.MemoryMappedFiles.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.AccessControl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.UnmanagedMemoryStream.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Expressions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Parallel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Queryable.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.HttpListener.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Mail.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NameResolution.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NetworkInformation.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Ping.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Quic.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Requests.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Security.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.ServicePoint.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Sockets.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebClient.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebHeaderCollection.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebProxy.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.Client.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.Vectors.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ObjectModel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.DataContractSerialization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Uri.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.Linq.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.DispatchProxy.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.ILGeneration.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.Lightweight.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Metadata.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.TypeExtensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Reader.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.ResourceManager.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Writer.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.VisualC.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Handles.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.JavaScript.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Intrinsics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Loader.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Numerics.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Formatters.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Xml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.AccessControl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Claims.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Algorithms.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Cng.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Csp.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Encoding.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.OpenSsl.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Primitives.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.X509Certificates.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.Windows.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.SecureString.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceModel.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceProcess.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.CodePages.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encodings.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Json.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.RegularExpressions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Channels.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Overlapped.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Dataflow.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Extensions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Parallel.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Thread.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.ThreadPool.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Timer.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.Local.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.ValueTuple.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.HttpUtility.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Windows.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Linq.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.ReaderWriter.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Serialization.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XDocument.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.XDocument.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlDocument.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlSerializer.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\WindowsBase.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\mscorlib.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\netstandard.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.CoreLib.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.js +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.timezones.blat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.wasm +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt_CJK.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt_EFIGS.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\icudt_no_CJK.dat +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.pdb +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.AssemblyReference.cache +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfoInputs.cache +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfo.cs +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CoreCompileInputs.cache +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.MvcApplicationPartsAssemblyInfo.cache +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\c+Z0g9Jd.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\phm29G91.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pghmNRvs.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7+NmSqS6.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MC7F1EXR.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ys2HsIxk.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3RGQuDHV.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hDAoPmg+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8xSaKK2f.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qtLOehkv.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dF7+Cn0+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\T02qCSL8.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nw4hF8e4.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vHFCIeEH.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GV2n5d78.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6chkLOwn.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AFZMHXnU.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8GFzTuVa.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Re+7LMz0.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Qpbt+CNX.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6bAS78QA.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OwnWA+d9.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8vyJHDuB.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4IbJOvmG.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5xWImhhp.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\SyQx+l1x.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PWM2F7l6.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PSzKFYQZ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\luQkTI9I.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\aOW5GZ36.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8m1yIPR7.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2gtVL9b2.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I1MLYecy.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Y7nD3u55.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pCfoiMIR.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ersvoADk.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jL+JS45b.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dNEnteD5.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\IzxZx+Zd.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AiS0rqlT.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\23ROlzFb.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cv8v4Gsf.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FLR8M+Ah.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iD6mhcW+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\D+1RZpX+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tDSRJfdl.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Al28oHqe.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pBXJTrNX.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8I2FPv+4.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\buLwhqjv.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AyefZHy+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UOQe8Dq0.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9OGW3CR+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gDnazL5i.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7EeleHRx.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\q+5LDeSN.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qlam8W+O.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9tAoG1Uq.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\sNCgE1gc.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\22VaScSs.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vmGJlw0k.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Tca26kuV.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Gw2xDHXY.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xwCIKg4r.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\doP+4BwJ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eoXnBbVy.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gfZzpc+E.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\bCA1HaC4.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MgddUi+V.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TBn7dkuj.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tQEbKKnv.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\56lJo9NZ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MdnBBtMp.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CLacD+ws.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CpaZ+yDJ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3r5GoTSy.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u0AXn6bb.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YTzkAgfa.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\DQMhD7xB.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3O+cKOiM.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\airhYZR7.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1i1sXsPJ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qWgUeh2N.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\77KXf+G2.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qQ8gsDqb.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I2YQl34K.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZK+fHbG.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cnKLVun6.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5JBFDoaT.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\meTe+alg.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xssRNhxe.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Uai5tZzn.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Yj5BZpbw.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PHTiPb3I.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3GS0+Xc0.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Hci14aiA.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MXG25MIc.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WUcFp4sY.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nNpXywCp.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9xCfsmCY.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kXOEfuAj.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\toKSBfJx.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ml7uO+rW.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zwebL8CJ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3o4c9yGb.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\R2PLP3Qe.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KV+7rjd+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4XMlHwCM.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AAJPMc+q.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5aZHroMB.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XNRSaCAE.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ShbALnVZ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HB8DHftC.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N5fruOuj.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\QmI3N8oM.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ww6LdwW+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N0gjLoUT.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wnjmgrOa.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6SYFWDbs.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpGGxn+A.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fY+6+YAq.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2z3fA+Xs.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\a7NX+6Gj.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vbyEHz+f.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ysVyZ++O.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nOj7PPDe.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\0F3THOoe.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C3+iefBz.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ASazdaOA.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8UzvLwf+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\62L4R0lC.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2cjWzD2X.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eXag2ZQC.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rLFEcJ3K.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\40KW1Jvc.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\r5tIrKQJ.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eMg4HloL.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dhu3kA+T.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HOJzY8yw.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1kxNreRR.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\azxx+Ymt.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YqyTTqnp.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hbtsH5K4.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\d1EIfJy5.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qf8xv0rk.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XGcG3D9f.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ryPTNASP.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jplbLOUI.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iv7rlSof.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g0EfU1lN.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yW+OvcWi.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FC9BWSVd.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UlOCwkJy.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wCf576wv.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zH8vquy4.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\lf1J5B9O.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AOvOJax+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WGIV8QF4.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f2DKowff.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s45K7klr.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\y9tSwMK5.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xhJdd8MR.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yR+Yk9oU.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5Wvbiv0t.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eglFIRt8.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RNhSgpar.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hwcDQ0wD.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\NdvF5+0U.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s0WbNtC8.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tZlcgzg+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eV8sjNpC.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kJId7wuk.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\M39mQ8FI.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\p4ttQeYL.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qGYkmnM5.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Pxx+hP2A.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XtcIMN1+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1dQeDFxx.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9AzsP+D9.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\erUA+NWw.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RP4BO9dU.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VjzG04qc.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\w4rVORDG.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kIo+3vTu.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+X0clzuq.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpOnjY3E.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zfFUKSwe.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZjUAGYF.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VLryMgNN.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIKlb2mF.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\K3Vy+8xS.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\42yeJ3X6.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Mx4rV4K6.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\znqmWMdE.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Dts75qHk.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fD3oFEeK.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nN9D7Td.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PdVsjePE.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\uFYGyXgI.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cTauOqcc.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+R2yTmhK.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gPl5Gair.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nAdAk7p.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C8UJ3g6+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ab9R18co.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UsxFDlWI.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PesF4wKM.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EYahmw6e.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EUxiBhbo.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JLqYeE98.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AWyDvF+9.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tALjiTtN.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TLqbhHzt.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3FX3z+Y3.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fyIBe1B+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JQTwC+Wp.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+iaqeheV.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8zwHBSD0.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VadgPOEj.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+2Mx6CNa.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIsU3WPu.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eD8KvJQ3.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g+MJNN4k.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ith6wL5e.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xZTvHMo7.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BvfzaxMj.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ve2DCp+Y.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KQ+CIlck.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ZqnBCdvU.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TAoxl7R3.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VAFs0L7p.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\P+OcG5X0.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u2NKCkEW.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\moXpYGUT.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2dQHx8B+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\k6c5l4Zs.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BJ8SPSAw.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1EpVnd1F.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WSd8vvJ+.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M6vSMB4.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TXBZ5Zv2.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GF4ojFS8.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\j4MZS3uC.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xKS2CAdA.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OTY+vEhj.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M7Mk+br.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pFQ6kByw.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YjoXTRDF.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f+LGd4Hi.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CXfYACeM.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1lJIHL1p.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\n5D1Bw2m.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+rFJtA3r.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zklOABeC.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+iSgVwEB.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rUmG1DOI.gz +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\blazor.boot.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.build.GraphSample.props +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.GraphSample.props +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.GraphSample.props +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.pack.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.build.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.development.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\Overview.razor.rz.scp.css +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\SummarizeFiles.razor.rz.scp.css +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Shared\MainLayout.razor.rz.scp.css +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\bundle\GraphSample.styles.css +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\projectbundle\GraphSample.bundle.scp.css +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\jsmodules\jsmodules.build.manifest.json +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CopyComplete +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\refint\GraphSample.dll +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.pdb +C:\Users\mahas\Downloads\MicrosoftGraphProject\GraphSample\GraphSample\obj\Debug\net7.0\ref\GraphSample.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Dataflow.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.timezones.blat.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.X509Certificates.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Loader.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.VisualC.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlSerializer.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.AppContext.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_no_CJK.dat.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.UnmanagedMemoryStream.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.XDocument.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Physical.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.RegularExpressions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Configuration.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.Windows.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Csp.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Process.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Pdf.resources.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Blazored.Modal.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Parallel.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tools.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Tavis.UriTemplates.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Tracing.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Annotations.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Abstractions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.WebUtilities.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Forms.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.Brotli.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.TextAnalytics.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Concurrent.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Form.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Tokens.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileProviders.Abstractions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipes.AccessControl.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Bcl.AsyncInterfaces.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ChartJSCore.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Extensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Extensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Authentication.Azure.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Net.Http.Headers.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.AccessControl.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TraceSource.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.SecureString.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Web.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Win32.Registry.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Fast.Components.FluentUI.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.MemoryMappedFiles.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.WebAssembly.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.HttpListener.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IdentityModel.Tokens.Jwt.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Xml.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Thread.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XmlDocument.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.JSInterop.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Json.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Specialized.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.Core.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.IsolatedStorage.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Principal.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ZstdSharp.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\ja\GrapeCity.Documents.Imaging.resources.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Beta.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_EFIGS.dat.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.JsonWebTokens.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NetworkInformation.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Imaging.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Options.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BouncyCastle.Crypto.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Algorithms.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.ThreadPool.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.DispatchProxy.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharpCompress.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Handles.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.CodePages.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceProcess.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt_CJK.dat.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebClient.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Cng.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Graph.Core.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.ZipFile.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Channels.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Timer.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.ServicePoint.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Http.HttpClientLibrary.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\mscorlib.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Snappier.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.Authorization.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Newtonsoft.Json.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Dynamic.Runtime.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.NameResolution.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Console.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\BlazorInputFile.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Http.Json.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.Lightweight.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.FileSystemGlobbing.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.NonGeneric.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Abstractions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Security.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\netstandard.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Logging.Abstractions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encoding.Extensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Requests.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Overlapped.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XPath.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Intrinsics.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.TypeExtensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.HttpUtility.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.TextWriterTraceListener.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Contracts.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.DependencyInjection.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.Core.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\TimeZoneConverter.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.DataAnnotations.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Packaging.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.DiagnosticSource.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.XDocument.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Compression.FileSystem.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Numerics.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.AccessControl.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Core.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Extensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Asn1.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.DataSetExtensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Watcher.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Authorization.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.7.0.5.9her4wdnhl.js.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Authentication.WebAssembly.Msal.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.ReaderWriter.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Reader.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Http.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.Encoding.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ServiceModel.Web.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\dotnet.wasm.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Azure.AI.OpenAI.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AWSSDK.SecurityToken.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Json.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.FileExtensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.Writer.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Json.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Ping.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Resources.ResourceManager.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Serialization.Text.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Formats.Tar.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Metadata.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Collections.Immutable.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DnsClient.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Buffers.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.StackTrace.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Queryable.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Linq.Expressions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Emit.ILGeneration.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.JavaScript.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Quic.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Extensions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ObjectModel.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Bson.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Configuration.Binder.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GrapeCity.Documents.Pdf.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Encodings.Web.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Windows.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.Pipelines.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Libmongocrypt.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.IdentityModel.Logging.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Text.Json.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.Debug.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Memory.Data.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\WindowsBase.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Reflection.Metadata.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.CSharp.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Serialization.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Cryptography.OpenSsl.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebHeaderCollection.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Kiota.Abstractions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Threading.Tasks.Parallel.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.Linq.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.DriveInfo.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ValueTuple.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.AspNetCore.Components.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.RuntimeInformation.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\MongoDB.Driver.Core.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.InteropServices.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebProxy.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Numerics.Vectors.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Xml.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Data.Common.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Globalization.Calendars.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Uri.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.CoreLib.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Drawing.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.EventBasedAsync.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.CompilerServices.Unsafe.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\DocumentFormat.OpenXml.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Transactions.Local.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.Extensions.Hosting.Abstractions.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.DataContractSerialization.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.ComponentModel.TypeConverter.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\icudt.dat.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Mail.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Private.Xml.Linq.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\AzureOpenAIClient.Http.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.IO.FileSystem.Primitives.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\Microsoft.VisualBasic.Core.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.Sockets.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Runtime.Serialization.Formatters.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Net.WebSockets.Client.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Security.Claims.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Web.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\System.Diagnostics.FileVersionInfo.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.boot.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\SharedModels.pdb.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.pdb.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\GraphSample.dll.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\package-lock.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\package.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.staticwebassets.runtime.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GraphSample.pdb +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\AWSSDK.SecurityToken.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.OpenAI.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Azure.AI.TextAnalytics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Azure.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\AzureOpenAIClient.Http.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Blazored.Modal.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\BlazorInputFile.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ChartJSCore.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\DnsClient.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Imaging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\GrapeCity.Documents.Pdf.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Authorization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Authorization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.Metadata.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.AspNetCore.WebUtilities.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Authentication.WebAssembly.Msal.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Binder.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Configuration.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileProviders.Physical.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.FileSystemGlobbing.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Hosting.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Http.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Options.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Extensions.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Fast.Components.FluentUI.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Beta.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Graph.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.JSInterop.WebAssembly.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Abstractions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Authentication.Azure.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Http.HttpClientLibrary.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Form.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Kiota.Serialization.Text.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Net.Http.Headers.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Bson.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Driver.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Newtonsoft.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\DocumentFormat.OpenXml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\BouncyCastle.Crypto.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\SharpCompress.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Snappier.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Packaging.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipelines.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.Data.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Tavis.UriTemplates.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\TimeZoneConverter.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ZstdSharp.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Imaging.resources.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\ja\GrapeCity.Documents.Pdf.resources.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.CSharp.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.VisualBasic.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\Microsoft.Win32.Registry.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.AppContext.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Buffers.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Concurrent.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Immutable.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.NonGeneric.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.Specialized.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Collections.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Annotations.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.DataAnnotations.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.EventBasedAsync.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.TypeConverter.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ComponentModel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Configuration.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Console.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Core.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.Common.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.DataSetExtensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Data.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Contracts.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Debug.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.DiagnosticSource.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.FileVersionInfo.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Process.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.StackTrace.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tools.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.TraceSource.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Diagnostics.Tracing.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Drawing.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Dynamic.Runtime.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Asn1.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Formats.Tar.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Calendars.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Globalization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.Brotli.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.FileSystem.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.ZipFile.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Compression.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.AccessControl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.DriveInfo.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.Watcher.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.FileSystem.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.IsolatedStorage.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.MemoryMappedFiles.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.AccessControl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.Pipes.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.UnmanagedMemoryStream.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.IO.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Expressions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Parallel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.Queryable.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Linq.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Memory.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Http.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.HttpListener.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Mail.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NameResolution.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.NetworkInformation.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Ping.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Quic.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Requests.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Security.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.ServicePoint.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.Sockets.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebClient.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebHeaderCollection.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebProxy.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.Client.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.WebSockets.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Net.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.Vectors.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Numerics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ObjectModel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.DataContractSerialization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Uri.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.Linq.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.Xml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.DispatchProxy.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.ILGeneration.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.Lightweight.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Emit.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Metadata.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.TypeExtensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Reflection.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Reader.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.ResourceManager.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Resources.Writer.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.CompilerServices.VisualC.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Handles.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.JavaScript.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.InteropServices.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Intrinsics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Loader.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Numerics.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Formatters.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.Xml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.Serialization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Runtime.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.AccessControl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Claims.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Algorithms.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Cng.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Csp.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Encoding.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.OpenSsl.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.Primitives.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.X509Certificates.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Cryptography.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.Windows.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.Principal.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.SecureString.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Security.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceModel.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ServiceProcess.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.CodePages.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encoding.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Encodings.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.Json.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Text.RegularExpressions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Channels.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Overlapped.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Dataflow.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Extensions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.Parallel.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Tasks.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Thread.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.ThreadPool.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.Timer.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Threading.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.Local.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Transactions.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.ValueTuple.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.HttpUtility.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Web.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Windows.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Linq.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.ReaderWriter.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.Serialization.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XDocument.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.XDocument.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XPath.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlDocument.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.XmlSerializer.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Xml.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\WindowsBase.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\mscorlib.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\netstandard.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\System.Private.CoreLib.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.js +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.timezones.blat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\dotnet.wasm +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt_CJK.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt_EFIGS.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\icudt_no_CJK.dat +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\SharedModels.pdb +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.AssemblyReference.cache +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfoInputs.cache +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.AssemblyInfo.cs +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CoreCompileInputs.cache +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.MvcApplicationPartsAssemblyInfo.cache +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\c+Z0g9Jd.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\phm29G91.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pghmNRvs.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7+NmSqS6.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MC7F1EXR.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ys2HsIxk.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3RGQuDHV.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hDAoPmg+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8xSaKK2f.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qtLOehkv.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dF7+Cn0+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\T02qCSL8.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nw4hF8e4.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vHFCIeEH.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GV2n5d78.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6chkLOwn.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AFZMHXnU.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8GFzTuVa.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Re+7LMz0.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Qpbt+CNX.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6bAS78QA.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OwnWA+d9.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8vyJHDuB.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4IbJOvmG.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5xWImhhp.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\SyQx+l1x.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PWM2F7l6.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PSzKFYQZ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\luQkTI9I.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\aOW5GZ36.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8m1yIPR7.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2gtVL9b2.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I1MLYecy.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Y7nD3u55.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pCfoiMIR.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ersvoADk.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jL+JS45b.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dNEnteD5.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\IzxZx+Zd.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AiS0rqlT.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\23ROlzFb.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cv8v4Gsf.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FLR8M+Ah.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iD6mhcW+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\D+1RZpX+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tDSRJfdl.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Al28oHqe.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pBXJTrNX.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8I2FPv+4.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\buLwhqjv.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AyefZHy+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UOQe8Dq0.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9OGW3CR+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gDnazL5i.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\7EeleHRx.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\q+5LDeSN.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qlam8W+O.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9tAoG1Uq.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\sNCgE1gc.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\22VaScSs.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vmGJlw0k.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Tca26kuV.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Gw2xDHXY.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xwCIKg4r.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\doP+4BwJ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eoXnBbVy.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gfZzpc+E.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\bCA1HaC4.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MgddUi+V.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TBn7dkuj.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tQEbKKnv.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\56lJo9NZ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MdnBBtMp.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CLacD+ws.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CpaZ+yDJ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3r5GoTSy.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u0AXn6bb.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YTzkAgfa.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\DQMhD7xB.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3O+cKOiM.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\airhYZR7.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1i1sXsPJ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qWgUeh2N.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\77KXf+G2.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qQ8gsDqb.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\I2YQl34K.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZK+fHbG.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cnKLVun6.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5JBFDoaT.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\meTe+alg.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xssRNhxe.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Uai5tZzn.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Yj5BZpbw.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PHTiPb3I.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3GS0+Xc0.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Hci14aiA.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\MXG25MIc.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WUcFp4sY.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nNpXywCp.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9xCfsmCY.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kXOEfuAj.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\toKSBfJx.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ml7uO+rW.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zwebL8CJ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3o4c9yGb.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\R2PLP3Qe.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KV+7rjd+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\4XMlHwCM.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AAJPMc+q.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5aZHroMB.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XNRSaCAE.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ShbALnVZ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HB8DHftC.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N5fruOuj.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\QmI3N8oM.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Ww6LdwW+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\N0gjLoUT.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wnjmgrOa.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\6SYFWDbs.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpGGxn+A.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fY+6+YAq.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2z3fA+Xs.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\a7NX+6Gj.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\vbyEHz+f.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ysVyZ++O.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\nOj7PPDe.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\0F3THOoe.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C3+iefBz.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ASazdaOA.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8UzvLwf+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\62L4R0lC.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2cjWzD2X.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eXag2ZQC.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rLFEcJ3K.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\40KW1Jvc.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\r5tIrKQJ.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eMg4HloL.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\dhu3kA+T.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\HOJzY8yw.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1kxNreRR.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\azxx+Ymt.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YqyTTqnp.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hbtsH5K4.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\d1EIfJy5.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qf8xv0rk.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XGcG3D9f.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ryPTNASP.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\jplbLOUI.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\iv7rlSof.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g0EfU1lN.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yW+OvcWi.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FC9BWSVd.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UlOCwkJy.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\wCf576wv.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zH8vquy4.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\lf1J5B9O.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AOvOJax+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WGIV8QF4.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f2DKowff.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s45K7klr.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\y9tSwMK5.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xhJdd8MR.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\yR+Yk9oU.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\5Wvbiv0t.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eglFIRt8.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RNhSgpar.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\hwcDQ0wD.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\NdvF5+0U.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\s0WbNtC8.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tZlcgzg+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eV8sjNpC.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kJId7wuk.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\M39mQ8FI.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\p4ttQeYL.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\qGYkmnM5.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Pxx+hP2A.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\XtcIMN1+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1dQeDFxx.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\9AzsP+D9.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\erUA+NWw.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\RP4BO9dU.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VjzG04qc.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\w4rVORDG.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\kIo+3vTu.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+X0clzuq.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\mpOnjY3E.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\zfFUKSwe.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BZjUAGYF.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VLryMgNN.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIKlb2mF.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\K3Vy+8xS.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\42yeJ3X6.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Mx4rV4K6.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\znqmWMdE.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Dts75qHk.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fD3oFEeK.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nN9D7Td.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PdVsjePE.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\uFYGyXgI.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\cTauOqcc.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+R2yTmhK.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\gPl5Gair.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3nAdAk7p.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\C8UJ3g6+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ab9R18co.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\UsxFDlWI.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\PesF4wKM.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EYahmw6e.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\EUxiBhbo.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JLqYeE98.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AWyDvF+9.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\tALjiTtN.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TLqbhHzt.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\3FX3z+Y3.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\fyIBe1B+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\JQTwC+Wp.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+iaqeheV.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\8zwHBSD0.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VadgPOEj.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+2Mx6CNa.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BIsU3WPu.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\eD8KvJQ3.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\g+MJNN4k.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ith6wL5e.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xZTvHMo7.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BvfzaxMj.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ve2DCp+Y.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\KQ+CIlck.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\ZqnBCdvU.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TAoxl7R3.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\VAFs0L7p.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\P+OcG5X0.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\u2NKCkEW.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\moXpYGUT.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\2dQHx8B+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\k6c5l4Zs.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\BJ8SPSAw.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1EpVnd1F.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\WSd8vvJ+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M6vSMB4.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\TXBZ5Zv2.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\GF4ojFS8.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\j4MZS3uC.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\xKS2CAdA.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\OTY+vEhj.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\+M7Mk+br.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\pFQ6kByw.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\YjoXTRDF.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\f+LGd4Hi.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\CXfYACeM.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\1lJIHL1p.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\Auic7m2e.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\AX8lKh7j.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\snRMAVo0.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\FrC55Mh+.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\build-gz\rUmG1DOI.gz +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\blazor.boot.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.build.GraphSample.props +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.GraphSample.props +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.GraphSample.props +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.pack.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.build.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\staticwebassets.development.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\Overview.razor.rz.scp.css +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Pages\SummarizeFiles.razor.rz.scp.css +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\Shared\MainLayout.razor.rz.scp.css +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\bundle\GraphSample.styles.css +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\scopedcss\projectbundle\GraphSample.bundle.scp.css +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\jsmodules\jsmodules.build.manifest.json +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.csproj.CopyComplete +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\refint\GraphSample.dll +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\GraphSample.pdb +C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\obj\Debug\net7.0\ref\GraphSample.dll diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.dll new file mode 100644 index 000000000..4087361e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.pdb b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.pdb new file mode 100644 index 000000000..758251dcf Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/GraphSample.pdb differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/blazor.boot.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/blazor.boot.json new file mode 100644 index 000000000..6d4766b49 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/blazor.boot.json @@ -0,0 +1,288 @@ +{ + "cacheBootResources": true, + "config": [ + "appsettings.json" + ], + "debugBuild": true, + "entryAssembly": "GraphSample", + "icuDataMode": 0, + "linkerEnabled": false, + "resources": { + "assembly": { + "AWSSDK.Core.dll": "sha256-+UpImU00F39wFSt+inE9WLBTUExntLG77AT9xvHPZXI=", + "AWSSDK.SecurityToken.dll": "sha256-P3TkEvrhuiq4K1HnQHdk6MNzra8x4cvSdJ1hHfOwlbw=", + "Azure.AI.OpenAI.dll": "sha256-T8n0WcKn3Ui\/r0U1+lkkDb7nNxhJe+TkZicE47fwkqg=", + "Azure.AI.TextAnalytics.dll": "sha256-zDB4xGMyIDmS4b7XvzWKlrSIk9+PjaKdkUbarRWQlbE=", + "Azure.Core.dll": "sha256-fYiFbau5RKj6IKlS+3Et3wUL+65zMsMwJA7d2o32LyI=", + "AzureOpenAIClient.Http.dll": "sha256-xEltVWIXqXiSXiC1+yabJK95YziEUJyVrpEx6Vsi6ag=", + "Blazored.Modal.dll": "sha256-Sr30UiM7JErBe8hojY6HAgaOOgfQE5zHijI0uVypmkM=", + "BlazorInputFile.dll": "sha256-C0KrMmLQQE68cd1+FNwIOW89nNGbOH48hRxQAoSBaaA=", + "ChartJSCore.dll": "sha256-gwwJ+\/kjTpw9Y\/nyF36HlnAZNnnaIkf6EcJEKPPdBPI=", + "DnsClient.dll": "sha256-pqqUK\/nxzj7PtSwp8HNcVX1ULYXRKP+ym0hhLNYpjsk=", + "GrapeCity.Documents.Imaging.dll": "sha256-80s7r7qVGZMWIYX7j1qcPcBV8+4kSrBBd9wY+6W1vUk=", + "GrapeCity.Documents.Pdf.dll": "sha256-+wBSnAizmMIfETLKWirKUjdBTc9AoLuV7Bqz3pbbroQ=", + "Microsoft.AspNetCore.Authorization.dll": "sha256-\/EkWRHMHBhfvvlx5hLVtXGPm8+Gyp4WkPiKKiiJIrqQ=", + "Microsoft.AspNetCore.Components.dll": "sha256-SvjxqyTqc68zPsYivPRkvjKRhUg5zYufzqwGNS83bwg=", + "Microsoft.AspNetCore.Components.Authorization.dll": "sha256-41dLN3Fx\/ysI0SP+sKtAMWTZamweRiufJ7JPqZlnXrA=", + "Microsoft.AspNetCore.Components.Forms.dll": "sha256-eoQ2CgfBGkvbK4QUMBgFDPIBqJem+g8247Fb3ZmnmCI=", + "Microsoft.AspNetCore.Components.Web.dll": "sha256-p3BQFPwUbOgu5j9V+1HlUGwDcVzB7iYNO4dIsDCOAgA=", + "Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-55+LOYcA1yHHPQEjl6eI0UGgteq41y+8js6DQ5PhXDk=", + "Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": "sha256-LL+Ypy6kUg17vXDvFlVs7uG4+Ip+QdaY8llF\/DVC0\/c=", + "Microsoft.AspNetCore.Metadata.dll": "sha256-eIu14RWCV9bKCAARda4hnWGsOKJfmnGfQpkmeRnSibQ=", + "Microsoft.AspNetCore.WebUtilities.dll": "sha256-D5akJeBd7NNITuzAXxlX7zl2jfsc4uTKyeEKwwNhqoo=", + "Microsoft.Authentication.WebAssembly.Msal.dll": "sha256-M6I8rpdSyz29AfvhQusE2M7HxP83C6UjlCbXXNBs8m8=", + "Microsoft.Bcl.AsyncInterfaces.dll": "sha256-EcDo\/GQZkQrOT1Xd0jMPE3NwT5lsMq5DNsPxHVidLDQ=", + "Microsoft.Extensions.Configuration.dll": "sha256-PqQvp77oZ4+uuy2ElXk8AU9I6RfZSf18UGTrd4rulOo=", + "Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-CnS3b9EMFQmETBUVEgtcron4DBsfFdcVt3zfCP6Uflg=", + "Microsoft.Extensions.Configuration.Binder.dll": "sha256-7GY9+7Cm0Z8DJ+JCFwgCx9OfFtUvXlFHaaLlBYmXfIE=", + "Microsoft.Extensions.Configuration.FileExtensions.dll": "sha256-S86mGNxJnkVJ\/qolp6cBN7xwXQ\/YVtHy7QTaPO93AIA=", + "Microsoft.Extensions.Configuration.Json.dll": "sha256-k525Vc8hbMpPjxYUYZNPuzJIuy+E1Is2XRTMFbUm1pE=", + "Microsoft.Extensions.DependencyInjection.dll": "sha256-\/+vk9BsQP4bCVt1Y6aXakSztSMAli200ER6untxHLBg=", + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-jrAm+30mcWoI54hsUTOr+RMOzHIq+zO8ZuRBVrBvCoo=", + "Microsoft.Extensions.FileProviders.Abstractions.dll": "sha256-Zt6OY6gg\/1Tzt9oFOQBkezPvUVkFK4dyM6Pfk+MTUvg=", + "Microsoft.Extensions.FileProviders.Physical.dll": "sha256-9xkIbIienaRj9Td2MyWYzL9JmVx6CKbGCPrvJ1Pxfn8=", + "Microsoft.Extensions.FileSystemGlobbing.dll": "sha256-Gm0yiS5fySh2nZXdCRKZIbASK8sSukwjogLc+a9EBZY=", + "Microsoft.Extensions.Hosting.Abstractions.dll": "sha256-2qH9T9HZYBAigHr8n86fpvuaZsvJxdPdCMu5tec6Yjk=", + "Microsoft.Extensions.Http.dll": "sha256-QqjUvBFxKOeh8XX3IrmuIesFycYZMmwrhsRakmXvrXE=", + "Microsoft.Extensions.Logging.dll": "sha256-WMsuY8rhtg+vvssGFSR7ZLKhqYPAzOi538IXMoiJ6bI=", + "Microsoft.Extensions.Logging.Abstractions.dll": "sha256-7zoKnNaWqWOrjF2eX3dFetJL+I03xqvCzORtFB4Ws08=", + "Microsoft.Extensions.Options.dll": "sha256-gcHJrSv1wTqvF9SyWTEKcbiShn4mkgfnm9+tRQr4OqY=", + "Microsoft.Extensions.Primitives.dll": "sha256-q4ruoDSCjV\/QJY9ZkzV6uxvEvZUVrDbyUjU3SSh5SlE=", + "Microsoft.Fast.Components.FluentUI.dll": "sha256-AM1swc0MWdQ008cWgP+\/qCGig6NCRCrj1UXWjhagH9k=", + "Microsoft.Graph.dll": "sha256-wHZisTU+lZHXIer25uRzCZzi1hBfV+H+31hgufwDzjg=", + "Microsoft.Graph.Beta.dll": "sha256-+22Gw67R9cVPo+yuDFgQ\/qvZP78moYdwW8th\/jg7Fww=", + "Microsoft.Graph.Core.dll": "sha256-ZgEqSt26LKpR2dQvVePfrvl\/upLdZBbiwmyI7TXFG\/Y=", + "Microsoft.IdentityModel.Abstractions.dll": "sha256-t7s0MJysE09CjR6Ug7LeooxWh6qQMvyP0BaK6owTg0A=", + "Microsoft.IdentityModel.JsonWebTokens.dll": "sha256-iOQnepr\/E4XN7m3ZPaRCHm1AkIN0fbzv9kaqAPxC0NY=", + "Microsoft.IdentityModel.Logging.dll": "sha256-R8PwspOBOtylLlhwJijr6JDM83WXCNuxcSLNOYkugEM=", + "Microsoft.IdentityModel.Protocols.dll": "sha256-Chqk48UY0+W2WrYmkz0CXA+b1jKiosBuYOrMCsPiOtQ=", + "Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": "sha256-WbnzvZq\/XQo1B5Z+1oKyjUxQ2aqNqeDyISq0xBaHxPc=", + "Microsoft.IdentityModel.Tokens.dll": "sha256-Wiph8o+JeePw4GkloTJqWzogne17szvkhrjInJkpAdQ=", + "Microsoft.JSInterop.dll": "sha256-OBt2YgODs1L5bJWrDjUFgcgGMUjDfmFTHCt9t69RxgU=", + "Microsoft.JSInterop.WebAssembly.dll": "sha256-GH0zLXwtZcak53A9656ZndP15W57wd1W0kLvKDIV+VE=", + "Microsoft.Kiota.Abstractions.dll": "sha256-XGyjS3FRRc3OQqr3wtmkCnagPvoljDLNV0Z4WxcpbkM=", + "Microsoft.Kiota.Authentication.Azure.dll": "sha256-jU5eYEFKzWgF7OWOYsJM5bEb5t8WrkBM8p7VuBv00wQ=", + "Microsoft.Kiota.Http.HttpClientLibrary.dll": "sha256-WKXOvKFrqRLnVjp\/gA0oc9l0OB8U+iN+mXdj2LeUFvM=", + "Microsoft.Kiota.Serialization.Form.dll": "sha256-6\/jk5AJnQJGNuouF52mvjJP6n6s+1opHZ0uBKONN5m8=", + "Microsoft.Kiota.Serialization.Json.dll": "sha256-CcAEXSbIJlpoe\/hF0X8VOuZSMLtEhdLf30ok3hWwBrQ=", + "Microsoft.Kiota.Serialization.Text.dll": "sha256-U9o18GdkXSXvCj1ptHww8sQL4nH8ED8iZIfX4C5iKpw=", + "Microsoft.Net.Http.Headers.dll": "sha256-P66ftDrXwc6ayND8uYzIk0CPQy1GjNZAPHx9RMhi3V4=", + "MongoDB.Bson.dll": "sha256-d3ZsdGnCH++KHoY26Z19JA1IxR9hFKWE59VDS0pGDmc=", + "MongoDB.Driver.dll": "sha256-XZXhge+o5qeM5xgV6lhHanVvNQKpth\/b0zhHSHVR\/kE=", + "MongoDB.Driver.Core.dll": "sha256-qqEfR0SnPkzUV0zmanIDmi2anLp1SyKhDFevWf2ambM=", + "MongoDB.Libmongocrypt.dll": "sha256-0IcHuoTqrHG0vWBoQq6+HxI2BSDMkAGnVwN64V5vGS8=", + "Newtonsoft.Json.dll": "sha256-IsZJ91\/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=", + "DocumentFormat.OpenXml.dll": "sha256-BDrsmnS\/9JzpRWDRRNJPdsQHMhnkIlMfqffKn0I9T4c=", + "BouncyCastle.Crypto.dll": "sha256-n7KC+76rIikEfNEJ10mSwNXh+MMbda\/f4FD9fZ8WIw4=", + "SharpCompress.dll": "sha256-g6OkB2E3tHVhjYz074TwY\/qKeHk14HgEWYjivSizy68=", + "Snappier.dll": "sha256-7+iUMbT8Ae8amaAJEgiQ8U\/p6OQqf5zp4oy2zEDxxis=", + "System.IdentityModel.Tokens.Jwt.dll": "sha256-mMRs4CYO0tK9iswmp2AS47Dfo8riHqMoxPkTdczonTw=", + "System.IO.Packaging.dll": "sha256-1NYPxd\/Znog+W3dejVSmi57hLM8eGX\/c6SIZBh\/dDRM=", + "System.IO.Pipelines.dll": "sha256-P\/MqD0fCBd5bgTM16JC1QC\/Zz7s+CwViyzmDFkBG4\/c=", + "System.Memory.Data.dll": "sha256-KTyl2GNY+yzgDaAsY+78s0Ron8DGNrYcl8PxsVqAqlE=", + "Tavis.UriTemplates.dll": "sha256-esSAQepI47ZEvrdjJKDUIkP\/+Zp\/gW65TN\/HizEItqs=", + "TimeZoneConverter.dll": "sha256-+\/jS+apdJFwJrSAk5mtpMJCNbqpKHyYTarXy\/5sfylU=", + "ZstdSharp.dll": "sha256-VKZX+de4WCoEsOirOWgSviiKvr0Z3Ujd2\/PpLOUPOaE=", + "Microsoft.CSharp.dll": "sha256-6Y1rN8knL1K5x5lsZ2tEVDND2h4LtDSuVgCg1N8ghkA=", + "Microsoft.VisualBasic.Core.dll": "sha256-LRJ4hN7opopr3bsogxcz7uyVjh4bNZOdMbVbIIQ9z+8=", + "Microsoft.VisualBasic.dll": "sha256-xkUVMleH\/xQU+9disGUzBr7fT6ckmem5\/CMscxtghD8=", + "Microsoft.Win32.Primitives.dll": "sha256-lucJz4+wGO1ZdiEthwNGGIOUtcRUsVVabMVW1gtQIMQ=", + "Microsoft.Win32.Registry.dll": "sha256-WGxv3PzEfgVp3usrYhy+MBHjJfAjodWNBQU6wbPwnis=", + "System.AppContext.dll": "sha256-7TWcUhjRPqzWr21Y2gCSBaAFyJxlc7z4owojtSWcSVI=", + "System.Buffers.dll": "sha256-D+pqpCCHBkmhRKEaV+INC98dHtA1JDcg9mWqL9Ond0Q=", + "System.Collections.Concurrent.dll": "sha256-2K\/WsDXzSv\/zr47al4KrDWT2OBs9l06gKahr5K9mwss=", + "System.Collections.Immutable.dll": "sha256-0brR0tAZlQr4KM97EMlVlNiHVDhE0EWIrE2q\/utNnY0=", + "System.Collections.NonGeneric.dll": "sha256-1PceS1QJJyR9TkHlfvUQEKGhsJ4xj5nKczaq5JM+kfs=", + "System.Collections.Specialized.dll": "sha256-fQn5UDuKsKLJLFM5oP7tV6c\/nsg4sCmcCQGD2cdOjD0=", + "System.Collections.dll": "sha256-vwimVkB+WktlZk8jST2HzG11jBQBcYI4g1uOR32VhRA=", + "System.ComponentModel.Annotations.dll": "sha256-NUD59NxxFo6ElXR4KdKYGRMeUflEmDlgpU0mZmr0JRA=", + "System.ComponentModel.DataAnnotations.dll": "sha256-LxLw+D49jEOMTd2EIBY2ah\/K9LEDEqJapMrBWvzrSWs=", + "System.ComponentModel.EventBasedAsync.dll": "sha256-2ba\/XMMymeP8SwHaOiMtpLLNw45+nA8iisGDHtzuW2s=", + "System.ComponentModel.Primitives.dll": "sha256-ra+S6YBscBNuGQRHqRBsFXMnn5Hf2LIrbJs7frsvXHA=", + "System.ComponentModel.TypeConverter.dll": "sha256-86xoWr1\/foKgp89NdwW\/sIJMnh8X6GQeQtGi2td+4OY=", + "System.ComponentModel.dll": "sha256-2u5p0jWnx5eMfQRr3n+YLoFjDFRwJf3KxghICbBP83Y=", + "System.Configuration.dll": "sha256-DxBo7aXEaQN\/RMTeWVrXeltU+jlTxKIE0MSxtgriBRY=", + "System.Console.dll": "sha256-x2R8PrlSUDcIcYa3wiFOYDo3WBJ6frGB5YdVeOu\/mh4=", + "System.Core.dll": "sha256-QU6Zi\/m0odpCw\/jmhvgflrMcgvcMjz0Qek35MPVcNCw=", + "System.Data.Common.dll": "sha256-qjkLUwub36Jnil+Mkt\/3NAy7MBFeI2YH8SLtZWKvGo0=", + "System.Data.DataSetExtensions.dll": "sha256-p+kFZC3MLQ8R42IjhsUwJakKUqkKM+a6uClvAsxwwOc=", + "System.Data.dll": "sha256-m+19eTWjPykLqlDe\/yQstXNXfewpumOqK0vaHZ0WRag=", + "System.Diagnostics.Contracts.dll": "sha256-dqfKcpJQauvOtAVBZlH9vZFg7TnQ7un3FGTjcG9hesM=", + "System.Diagnostics.Debug.dll": "sha256-1yhwgAHYEOsTk1ZE25o\/b8xrtdKZtuJnMBbHeebkfpA=", + "System.Diagnostics.DiagnosticSource.dll": "sha256-YP8hvCIj64eqULMIDKyhebV2s0TSA0lLKMmjXeJTb1I=", + "System.Diagnostics.FileVersionInfo.dll": "sha256-xLvNpGzQci45dyRBJq+FKc8WzHHrmf6VJ9kl5mvK4HI=", + "System.Diagnostics.Process.dll": "sha256-6MAKEKQinIE70XtsueWEgJ7oWQY4KKqWFsgs7DUsz5c=", + "System.Diagnostics.StackTrace.dll": "sha256-N1kt4OLEBIEt+JSmX5xQ25kxPJCsVbxvHK3xGIpzI2w=", + "System.Diagnostics.TextWriterTraceListener.dll": "sha256-hiTBz1YtFh+hXOMCVkXK1WgRZgUXbi1pesRRJ8l0A4A=", + "System.Diagnostics.Tools.dll": "sha256-Oc430NOwzVts7ZlS9ZOkLOgb5JdaXL\/qYoC3BVkrMFA=", + "System.Diagnostics.TraceSource.dll": "sha256-XA6qOo442+eAO6UnYehnVhpbs5DIrpUDeW1HlFPpXPE=", + "System.Diagnostics.Tracing.dll": "sha256-vWC30ViFKVvfA6lr4WpENnHARX4j2ur\/mHthwaKoATs=", + "System.Drawing.Primitives.dll": "sha256-BJy91Y2qFeK2inFNUFA\/5mJSMwdbm\/grKthhaO35NAI=", + "System.Drawing.dll": "sha256-Dt6ZUiquxwt73K0SwRxN9inXL9\/iBxGUSAssD2ZTsUg=", + "System.Dynamic.Runtime.dll": "sha256-A\/UdQgEr6UkQp0Zvy0ySsIVJvHuuCreyMGJi8e9NaMQ=", + "System.Formats.Asn1.dll": "sha256-P2vkee5dVn7oBeVQcsQwIXxYCQtVC5bnF3WIEh4Ex1w=", + "System.Formats.Tar.dll": "sha256-BghbZNz2l8GKkA8sbyBrvgZ\/1B0nJnS9jw1+9E5o4O8=", + "System.Globalization.Calendars.dll": "sha256-pALRgo1jB\/83My1cUtomrU4xdi34uIYdgWmJgSCR6po=", + "System.Globalization.Extensions.dll": "sha256-RffLgs1y7ZU19dsAW2hE0jwWT05QOSG4t+vwJxPOc1s=", + "System.Globalization.dll": "sha256-afrKKJTWfb1nxIBkRZi1Z560z7EHloRwO+KVyUVDzm4=", + "System.IO.Compression.Brotli.dll": "sha256-3jJVep1ZzHjUQPl6FMbiTvY4REKUCRclCCz1B3EB8Eg=", + "System.IO.Compression.FileSystem.dll": "sha256-VHqyfA\/xMKfCo714OvSrHJFJhOCTqkC3ERXm9W\/tQ7g=", + "System.IO.Compression.ZipFile.dll": "sha256-EaLFLzEig0YZOMmzwRhqdrmRsPjnura5sP+kIxrqpWc=", + "System.IO.Compression.dll": "sha256-eaSXrmsjLkjjY4kbxJWbwUloAU5j8g6PJyivblsNfww=", + "System.IO.FileSystem.AccessControl.dll": "sha256-a4HeIPUfXQvmb\/FlJsuBADEVP2ho6KQP76yENfuwxgc=", + "System.IO.FileSystem.DriveInfo.dll": "sha256-28iVzkA1XXuMlAF+voPShSwc7Dfb6RWat8w7UQrONIk=", + "System.IO.FileSystem.Primitives.dll": "sha256-+V\/Ar9S1GDkRmIEMFbydoyaonEcNtnjbcDCJk75zq8k=", + "System.IO.FileSystem.Watcher.dll": "sha256-s59BnWfcVMtsSayxP+JOhtd\/3yPT1SdkgNS8+y6htNo=", + "System.IO.FileSystem.dll": "sha256-gTTqQtC8gN0WRvXc1d2w13eDZTrbzIka0PQi3rPTTtE=", + "System.IO.IsolatedStorage.dll": "sha256-kE9wiBqkMoKnSNzZNmMkxGJrilJanBc9KfElZ1XwI3w=", + "System.IO.MemoryMappedFiles.dll": "sha256-HdDDMErSSsu+1IGXGrlpoAnVLwkRuWQQSmZPHbQKddI=", + "System.IO.Pipes.AccessControl.dll": "sha256-4uOuCBbwKHU0KekAiOQL1vlXj0LuORa+YNFf2DUKRpY=", + "System.IO.Pipes.dll": "sha256-k6JSQ9EoXOG\/Xt0ER9E4PwRa7IR\/AmJOoDcmHDQVf0g=", + "System.IO.UnmanagedMemoryStream.dll": "sha256-\/r0qrwbyFVcp09GZFLCBdnNBqGaNsg9dMqSpa52M7hE=", + "System.IO.dll": "sha256-vo7HL66JDROb6LCcXiLOInexsARgGyz701SOeGaocRc=", + "System.Linq.Expressions.dll": "sha256-AL\/cPJ36gyGw550gx1XbozxiGoAazGT2AoHXh7lxInM=", + "System.Linq.Parallel.dll": "sha256-oUO3Yz2pz9q6qrloWbxlBfCGe1AIXe1bO+8stkCZLFk=", + "System.Linq.Queryable.dll": "sha256-uLVZt+s7IYTq\/bJE8yFSthB5IsYBlPTKDk6TD3gibRA=", + "System.Linq.dll": "sha256-EXO1Eh2R1Txuipg3tHui\/Pqdl8l2gP4ZUYG3HVz5sKw=", + "System.Memory.dll": "sha256-W\/fRA8tiM6Xfvcphi6d57EdsMCcXbjTT4+UipHxZFq0=", + "System.Net.Http.Json.dll": "sha256-uPFK0nYPyNcalouETAhKv\/8l5cpJoKewEkH3SfCWjdc=", + "System.Net.Http.dll": "sha256-7pFAvBOTQxmKE\/Hx4y9CSTkXCj1NUkgaELyLPCpIw7M=", + "System.Net.HttpListener.dll": "sha256-1yh5nM+KHYQfjBIRnjw\/zm11xGCMDkW5X6xPbM4OK0M=", + "System.Net.Mail.dll": "sha256-Ees0GKEtYLtvcFaF4Mg7SrGmE6ntuARPJ3ctH7tnGyM=", + "System.Net.NameResolution.dll": "sha256-qNFVdZU8IlnT\/7Kydk2f5EeLEK43LPd5b\/3Tp8zTNjc=", + "System.Net.NetworkInformation.dll": "sha256-fnOoKrwcDOfqeRz4iups+eBqX\/CcgzYP8wSH3fs9cAw=", + "System.Net.Ping.dll": "sha256-rdnWnaqbwdek9cziz3YqU1I2HGbLitw3Yje5EnOfFZ0=", + "System.Net.Primitives.dll": "sha256-EZKPs84TovM60o7haxAMRR4PpXvQ586AoFeTUyb+e+Y=", + "System.Net.Quic.dll": "sha256-x3Fcp0ZpTn3s3A6RnexallUHcdT\/QyJRr0rwWNsB6s0=", + "System.Net.Requests.dll": "sha256-6lhVGYKf14zgrvx9spx9F65qFC7\/4dh23BHlRXWYAUM=", + "System.Net.Security.dll": "sha256-KahC\/cXzZqMT0F8cSEhY8lAoQjx218DicZ6fqjX5MyM=", + "System.Net.ServicePoint.dll": "sha256-yQi5HnnAAW3RYMxj4i0imy9EgP0ymv387JN\/i0tI98I=", + "System.Net.Sockets.dll": "sha256-8tCW4TMl1DDY1+sE99pGR0V7XOulRRd7AyhHLtT9e68=", + "System.Net.WebClient.dll": "sha256-6eW0V\/divz3WqpuQ38ivS\/EmJhjS9C9AeiM61oG+g1s=", + "System.Net.WebHeaderCollection.dll": "sha256-LAjBAyQsRUceRBXEmSd+VHWSWMhErrnMHwki\/x\/oUIQ=", + "System.Net.WebProxy.dll": "sha256-75hxZ+dw4YSJ6Odi+xmOUOK2v4KrWhTAakLdPUF4Jvg=", + "System.Net.WebSockets.Client.dll": "sha256-4A4eNfhKtqO22nPCE9gcCXBm+I16t5HodflV6JaqKfk=", + "System.Net.WebSockets.dll": "sha256-TMqLCEDpgG8LQvp6czXjbPCAHZ\/zSnxS7dmg0+Kpk4A=", + "System.Net.dll": "sha256-UmS\/aFJ1ge+t8hjDME17LrMrYKWlxzhyMXP8Do1rv9Y=", + "System.Numerics.Vectors.dll": "sha256-sfckNKDNCQrtLJC6UeN6k\/0jIM2T9BPzmmkC6xATRH8=", + "System.Numerics.dll": "sha256-+LmwPV2ZHT4i9u4WiO4BxSIec1FtrSIfxII7CVFizoA=", + "System.ObjectModel.dll": "sha256-x3o9lRJAWfBFD1WaseStgK30v3wVgiXgYR4DbL+H6s0=", + "System.Private.DataContractSerialization.dll": "sha256-QDskUjBYm03oolPQOQBFKFX4VCEbS0Bkd2DGO1bA0QU=", + "System.Private.Uri.dll": "sha256-lmmUVB4nvy09yB6IS\/A7ZdZ2C\/RyBnXf89xw2oWnDEM=", + "System.Private.Xml.Linq.dll": "sha256-Y7iQofVvArZGVmxpi2\/3D12FFW7dKxvftELb+OfMgI0=", + "System.Private.Xml.dll": "sha256-77UDSVB0hR8MCc9zzl3UJ7wxLh4kJoW2NuLrl2UhFTc=", + "System.Reflection.DispatchProxy.dll": "sha256-o54HxPqaDaOCrPXoWr3erljuUSZfS8OuRL+rsjx9PhI=", + "System.Reflection.Emit.ILGeneration.dll": "sha256-+8QK1ENgwjIIwXPFNXphrJKgGEEDhQK3WKVR3TYgS4Y=", + "System.Reflection.Emit.Lightweight.dll": "sha256-joIP68O8gIgVdQm7Fc7oWHhzXQk3t5cLgiiqop4YnNE=", + "System.Reflection.Emit.dll": "sha256-bf6mi\/QcTQVXipMxeU4z7e0dhmnzYnvp373Gac0S4xQ=", + "System.Reflection.Extensions.dll": "sha256-kJQJn9zh\/R8ad1HKxsnBf5TvyAcmDMNqCW2RqrSGhKI=", + "System.Reflection.Metadata.dll": "sha256-VmrPNFdw1UT+8IpCC7Whm\/jO8Ys75dpNHmYDwcd4tbc=", + "System.Reflection.Primitives.dll": "sha256-PUj2dTxker7Y0IrwEWRPzBVHBFfDQqP75lZ\/QcZ6XTo=", + "System.Reflection.TypeExtensions.dll": "sha256-OzuXdBaFnwmLsmtdXI\/drJv\/IIB7eABZAxDRitqqdhI=", + "System.Reflection.dll": "sha256-pljq5DnINJtH9bxdRXiDTyEBpJfwM1kj7yyEXjDQAqI=", + "System.Resources.Reader.dll": "sha256-\/pIxvJS4987MdCAuDU73oFCYj5zf4hJF90O8YBTNfHs=", + "System.Resources.ResourceManager.dll": "sha256-6yWD01YDvrUD1u47NYFvtdgKzRTQaGe37HQr8yQuuWU=", + "System.Resources.Writer.dll": "sha256-a37W4sVXcaG2gp\/GH3\/y9bbsjE4t3a\/rzemAfw09x4c=", + "System.Runtime.CompilerServices.Unsafe.dll": "sha256-Jer49wJrlVXBDylDpm4PJd3hABEhgUbjOJOUPPSFuds=", + "System.Runtime.CompilerServices.VisualC.dll": "sha256-S1ocTp356bytLRBiSYfUaP0\/rLFgL6zYoUlx42Ni+Ng=", + "System.Runtime.Extensions.dll": "sha256-cwPH9ZR05wn4zQSOpAzU6e0MRWUqlluljO\/\/KdUxFaQ=", + "System.Runtime.Handles.dll": "sha256-9gWv0Ah4Mhfc3p1OO7s1LyvkTCft+XUqkeZbGSsGP+E=", + "System.Runtime.InteropServices.JavaScript.dll": "sha256-Ika9jD1bp92C5JyRGWWAq8I30pX3+zHKfZH\/cGp0Wsk=", + "System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-a56lo8SHC7lLQOyqmwdTIAxqcilLbdbxyLzygm+HS9o=", + "System.Runtime.InteropServices.dll": "sha256-I8JRWjqH9yGKfQ\/u8fGTBGL5R+p4t\/BTwCPtaVP5NNA=", + "System.Runtime.Intrinsics.dll": "sha256-s7ED6CqU5sqiriNPCBRyGad4J3mmP5cSLNBrPkf5YLU=", + "System.Runtime.Loader.dll": "sha256-7\/VXqrJyz6w7P0XjMWQQc644qmeGLJBJ8rOtPmenAg8=", + "System.Runtime.Numerics.dll": "sha256-CIuKFDtuWc\/+pxGCKWM2iT6vBSko4Xee+fcS5lPLkxM=", + "System.Runtime.Serialization.Formatters.dll": "sha256-bOjX9cfmsSsWnVBCpfu40b9+5H1PeQookq9J4dZ1tho=", + "System.Runtime.Serialization.Json.dll": "sha256-W1LFtjaMFDPf412OPRn7FqrtKP\/ZtR6zTwxLq8BnFg4=", + "System.Runtime.Serialization.Primitives.dll": "sha256-EVnHo6YYTpM1jEhqrKouL92pk98n7aOc6TJ+zUgGoAQ=", + "System.Runtime.Serialization.Xml.dll": "sha256-Aw6KX9j+5mx6HUHtImtB7LFROCxHSpbowylTBSCO8UA=", + "System.Runtime.Serialization.dll": "sha256-ieCoS99bFo3vtWCdlz80SbUJcApHTVmuZEGdAWGrrh8=", + "System.Runtime.dll": "sha256-HAhQeNzYHs9HyyBhTO\/EX1iU7YEKwoEnGx9X2LW4Vys=", + "System.Security.AccessControl.dll": "sha256-wOcRpFZ1XG5Yu+jPfiIX+RuWbM45zPT4jdMvA0jKtS8=", + "System.Security.Claims.dll": "sha256-obeNM8MiV3pV+71JCjOfWdKz7KvqDHVwYdxsbkL4QtU=", + "System.Security.Cryptography.Algorithms.dll": "sha256-KOR32YaPNGRa1Mx5GUAJocI4d7ILc0hNsR85s\/qHnz4=", + "System.Security.Cryptography.Cng.dll": "sha256-6GIzL6b8w8nBC\/0HGW67+ZdLl14KIzyJ3xnobSRCNtA=", + "System.Security.Cryptography.Csp.dll": "sha256-I6UTSqzotpguxLa6Mky\/CVlRoXaWA\/VGUnSa+fWfooE=", + "System.Security.Cryptography.Encoding.dll": "sha256-LFkdeimY8XYu5oM8lPftNn0EXjp77SYb0P9zAZ8i7JA=", + "System.Security.Cryptography.OpenSsl.dll": "sha256-pWMejSIyXuj6utObjjdaQYXHIJjkRyGhLs6ATNHzcCo=", + "System.Security.Cryptography.Primitives.dll": "sha256-6U9tVMS2AcRCVL7OsIB\/vClW5whwaSdwEkh3fMDN3fs=", + "System.Security.Cryptography.X509Certificates.dll": "sha256-GDvp0VwTbHYenh\/m7rQPMrh9R+w8\/ErOGci9kB9eDT4=", + "System.Security.Cryptography.dll": "sha256-dfovi0zCN3b5w3JBB6TP46bY1uC1oHy9B8wJxbYGAg4=", + "System.Security.Principal.Windows.dll": "sha256-d9f5+NQ4CskBA9qzwyV2GqSBslI7bRiXpGFSyPsEtVA=", + "System.Security.Principal.dll": "sha256-tVd55g5lNCTyam9JPEK13OlS2yCEG3+T68EERM3kqdg=", + "System.Security.SecureString.dll": "sha256-FAMqTDxIU0C3qGYFWBt6ZWujHGbpxzlYyGYeTfEZV7Q=", + "System.Security.dll": "sha256-9A1V+ITVbr0NJRyCxe+LzMHMnEUIiXRvS\/xXOSTKGDk=", + "System.ServiceModel.Web.dll": "sha256-7Hga+jap642rxVSYqG0\/GkTEmThGIlCzjjOvnkmnYRk=", + "System.ServiceProcess.dll": "sha256-nkLSRcQnaVp6gmYJxHwIfE+XjP2xOtanHFtYrj\/dIKo=", + "System.Text.Encoding.CodePages.dll": "sha256-7nAeOeAzxcaxc1CV7GLjLnlx6h0UyDe20lqOzmDgxFc=", + "System.Text.Encoding.Extensions.dll": "sha256-YPIlEpZ\/zKt3dzziZZKMLJLsECFJk0t9IHTOeJ1FNOo=", + "System.Text.Encoding.dll": "sha256-owgV8aZQzl0xLGBKto5qKnkQ+Jj3F97\/ewkxwoLhMVQ=", + "System.Text.Encodings.Web.dll": "sha256-WSjAnnOLfsXb33Twp35Ctsue8egrDWoLlNbMksiD4TI=", + "System.Text.Json.dll": "sha256-TnU5Ig0\/qKHRvdSNay7ugpKPaL3ahpQIyi37OSjlicM=", + "System.Text.RegularExpressions.dll": "sha256-N18f3LMYVaBB24DGtoJ+rzMgpkgTa3QFTuaJoC8pdDY=", + "System.Threading.Channels.dll": "sha256-s9dNZ8+KoW57Lmi+fP8zWYJqeRutSSu6z+kYdDjAu\/8=", + "System.Threading.Overlapped.dll": "sha256-37EfT1YZLtLB+Ez1m3MFz3kc2Z0XjO1nORyda+XDG1Q=", + "System.Threading.Tasks.Dataflow.dll": "sha256-qAOwJdRifT1gadnHfuv\/jB1mr\/lP4JLFSmsiFovDOYA=", + "System.Threading.Tasks.Extensions.dll": "sha256-nxEfwHtQFKoMl8lp5ikMB4+lpJ8QiGBy9xzjgnsMkNQ=", + "System.Threading.Tasks.Parallel.dll": "sha256-nSJC8IgDpcjauatJbybVvkgF4sc3Syg1K5Zh4YSAVjQ=", + "System.Threading.Tasks.dll": "sha256-G1nQ5\/Red3cs0DirxW682VCJ\/a1grb37qm1BVmts\/Nw=", + "System.Threading.Thread.dll": "sha256-fpg4DXuKPwTsiP\/poP4vgWCNimPuPLklzUIj1ODu5nU=", + "System.Threading.ThreadPool.dll": "sha256-67ZcL3XG5iZ2czqpw401ix2vn\/2RJE1OPPqATV+S5ZI=", + "System.Threading.Timer.dll": "sha256-261A8pkSF3pvGIrn6H7m02T1\/JsuwBgTAu8zpvEErqc=", + "System.Threading.dll": "sha256-xjtYe\/42JgagDKF8Xv3EhJl40NTziwx\/VwPE9y4ELH0=", + "System.Transactions.Local.dll": "sha256-rU4mTr82aHMgYBL70OO6U0TcL810LJwRUHljdC\/KC5Q=", + "System.Transactions.dll": "sha256-Fl36SVhASzk\/VsI8X80DrpDdLiKprXmcNRZ9dqHXOjk=", + "System.ValueTuple.dll": "sha256-eI9Gd7DfoOKMKcUvrUyBOYX\/1X+qoGlfLWGyov7CEoE=", + "System.Web.HttpUtility.dll": "sha256-t8YxFRjw08+4q36f9nLIRFiiczlca2RkfmzGYmGLIKI=", + "System.Web.dll": "sha256-xtj5BTZeF8uInYXYVlyZoxCO+4T5WOGwk7w+e6DLbsY=", + "System.Windows.dll": "sha256-DNjkNCF7j27CNyxBcGIrMuwL0ydDOMeRtUX4CE0Xt5E=", + "System.Xml.Linq.dll": "sha256-NhHAGnAlayjfbMQPRrTCkjckaz\/69co8poQmnLYnKOA=", + "System.Xml.ReaderWriter.dll": "sha256-f6p5YWzc3e2Vg606gUu50uHyviOtOgq7PzobmDgl8Kc=", + "System.Xml.Serialization.dll": "sha256-3XE2YVQZgqUZ2eYnIoNnkMq5bGl2XlblQrpOJlxnT4w=", + "System.Xml.XDocument.dll": "sha256-NO\/P\/T+7TPRsmjK9JCul9xqWcK8Qvdaz52cnzmclBQE=", + "System.Xml.XPath.XDocument.dll": "sha256-G43aXAhY6bZCObx3e\/T4Wf\/OvC1yO14GIhbmpz38hn4=", + "System.Xml.XPath.dll": "sha256-76s7J3orfX5VlcarhdfOV\/05St84NlfvGDul\/SaHe7s=", + "System.Xml.XmlDocument.dll": "sha256-eAWu9IQu2iunp\/SsP+1Wu\/bigY2zxV9JcNtdJagthu8=", + "System.Xml.XmlSerializer.dll": "sha256-8qnJDsE4pVWkhcfAoPGMsrgty96NOfCOAs+4swI4LPY=", + "System.Xml.dll": "sha256-ZrdEXfsh4gCVWAiAq038hgrsqQibCYHMFIpRW90jTlo=", + "System.dll": "sha256-cbk1\/4P+UvDk13iCw85zs2\/lR1S+nDR3mY60kAr\/cds=", + "WindowsBase.dll": "sha256-SgDw2itoVCJKQ9AGrgAuRDPOFrMUYvGZeeDXCm6eC1M=", + "mscorlib.dll": "sha256-qqpKd+W+AFb6UxudEYEKzrz7ma81p5LrWUwPBVvHV4U=", + "netstandard.dll": "sha256-OYYuPT3JUknj4LdYIa58zF7kDB3tCnLzjCSuhEjtKXM=", + "System.Private.CoreLib.dll": "sha256-EVS7zPxPV\/41g2mzPwdXtwiigWxI\/SeAHme1IgyD6tc=", + "SharedModels.dll": "sha256-b7WnF9tfopuJPf40TdpJMnoJRH6lZznx6H3yxJ7HH2Y=", + "GraphSample.dll": "sha256-dx0LNynAwY0HDteN3GhmnbQmYBcF4HANyYX1aNlf73k=" + }, + "extensions": null, + "lazyAssembly": null, + "libraryInitializers": { + "_content\/Microsoft.Fast.Components.FluentUI\/Microsoft.Fast.Components.FluentUI.lib.module.js": "sha256-ND1vLicPyknaz63eR1\/+a5vJIKrL2EX3xYqzR4e0S70=" + }, + "pdb": { + "SharedModels.pdb": "sha256-OhgUc7L3fu2touKGcGpX\/t\/ASF0lyDUGt\/H8bpJpu1g=", + "GraphSample.pdb": "sha256-GuGgC3nqjDaa111cO1\/HaRve97yXLMSDyfsaL1PHnTg=" + }, + "runtime": { + "dotnet.7.0.5.9her4wdnhl.js": "sha256-codB25EodaFEP43MDCfMBuKXU4LqurUKnQrpoMIFnPs=", + "dotnet.timezones.blat": "sha256-rIVQOJ+gHn4DeRSq6Ac3CURS8YBJG3P4CtYPfIuZ\/kk=", + "dotnet.wasm": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o=", + "icudt.dat": "sha256-tO5O5YzMTVSaKBboxAqezOQL9ewmupzV2JrB5Rkc8a4=", + "icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=", + "icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=", + "icudt_no_CJK.dat": "sha256-L7sV7NEYP37\/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs=" + }, + "runtimeAssets": { + "dotnet.wasm": { + "behavior": "dotnetwasm", + "hash": "sha256-6u4NhRISPvoDQ8pKvno9KKJh2aKqzTavj4dpcdFCV\/o=" + } + }, + "satelliteResources": { + "ja": { + "ja\/GrapeCity.Documents.Imaging.resources.dll": "sha256-KtoftVc29pGvHmYM82mOXOpk5+CBsiAvU6Rk8Yiu42c=", + "ja\/GrapeCity.Documents.Pdf.resources.dll": "sha256-6X2vLz48j72uR53HIHdDfjwonFxDkuuVjPm\/8+Xt1a8=" + } + } + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+2Mx6CNa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+2Mx6CNa.gz new file mode 100644 index 000000000..35c00acfa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+2Mx6CNa.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M6vSMB4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M6vSMB4.gz new file mode 100644 index 000000000..d534c3db6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M6vSMB4.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M7Mk+br.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M7Mk+br.gz new file mode 100644 index 000000000..0991f8159 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+M7Mk+br.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+R2yTmhK.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+R2yTmhK.gz new file mode 100644 index 000000000..2e8b77c82 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+R2yTmhK.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+X0clzuq.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+X0clzuq.gz new file mode 100644 index 000000000..ae2301f9e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+X0clzuq.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iSgVwEB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iSgVwEB.gz new file mode 100644 index 000000000..f735865bb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iSgVwEB.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iaqeheV.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iaqeheV.gz new file mode 100644 index 000000000..a026cd934 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+iaqeheV.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+rFJtA3r.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+rFJtA3r.gz new file mode 100644 index 000000000..7f8b7d690 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/+rFJtA3r.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/0F3THOoe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/0F3THOoe.gz new file mode 100644 index 000000000..fb616327b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/0F3THOoe.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1EpVnd1F.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1EpVnd1F.gz new file mode 100644 index 000000000..aab146f67 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1EpVnd1F.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1dQeDFxx.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1dQeDFxx.gz new file mode 100644 index 000000000..bc919ac15 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1dQeDFxx.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1i1sXsPJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1i1sXsPJ.gz new file mode 100644 index 000000000..a78162d1d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1i1sXsPJ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1kxNreRR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1kxNreRR.gz new file mode 100644 index 000000000..b66c41225 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1kxNreRR.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1lJIHL1p.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1lJIHL1p.gz new file mode 100644 index 000000000..4c6dd461f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/1lJIHL1p.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/22VaScSs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/22VaScSs.gz new file mode 100644 index 000000000..298a06413 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/22VaScSs.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/23ROlzFb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/23ROlzFb.gz new file mode 100644 index 000000000..eab27ba9e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/23ROlzFb.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2cjWzD2X.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2cjWzD2X.gz new file mode 100644 index 000000000..38baf3c4a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2cjWzD2X.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2dQHx8B+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2dQHx8B+.gz new file mode 100644 index 000000000..2922cdd72 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2dQHx8B+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2gtVL9b2.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2gtVL9b2.gz new file mode 100644 index 000000000..c1f8fc751 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2gtVL9b2.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2z3fA+Xs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2z3fA+Xs.gz new file mode 100644 index 000000000..da85bfa1a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/2z3fA+Xs.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3FX3z+Y3.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3FX3z+Y3.gz new file mode 100644 index 000000000..280dfbeed Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3FX3z+Y3.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3GS0+Xc0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3GS0+Xc0.gz new file mode 100644 index 000000000..b4de63f44 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3GS0+Xc0.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3O+cKOiM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3O+cKOiM.gz new file mode 100644 index 000000000..4243b3dc9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3O+cKOiM.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3RGQuDHV.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3RGQuDHV.gz new file mode 100644 index 000000000..bca5c6366 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3RGQuDHV.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nAdAk7p.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nAdAk7p.gz new file mode 100644 index 000000000..8008eb57c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nAdAk7p.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nN9D7Td.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nN9D7Td.gz new file mode 100644 index 000000000..e5bad8b3f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3nN9D7Td.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3o4c9yGb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3o4c9yGb.gz new file mode 100644 index 000000000..c599b6b7c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3o4c9yGb.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3r5GoTSy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3r5GoTSy.gz new file mode 100644 index 000000000..b20dbe794 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/3r5GoTSy.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/40KW1Jvc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/40KW1Jvc.gz new file mode 100644 index 000000000..63bcbeb0c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/40KW1Jvc.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/42yeJ3X6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/42yeJ3X6.gz new file mode 100644 index 000000000..cc66c1823 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/42yeJ3X6.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4IbJOvmG.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4IbJOvmG.gz new file mode 100644 index 000000000..ede9a06bd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4IbJOvmG.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4XMlHwCM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4XMlHwCM.gz new file mode 100644 index 000000000..def0edbdd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/4XMlHwCM.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/56lJo9NZ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/56lJo9NZ.gz new file mode 100644 index 000000000..fd765252d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/56lJo9NZ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5JBFDoaT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5JBFDoaT.gz new file mode 100644 index 000000000..9fe38781a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5JBFDoaT.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5Wvbiv0t.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5Wvbiv0t.gz new file mode 100644 index 000000000..fc1d5cfb6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5Wvbiv0t.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5aZHroMB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5aZHroMB.gz new file mode 100644 index 000000000..543af01b9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5aZHroMB.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5xWImhhp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5xWImhhp.gz new file mode 100644 index 000000000..c6fee6cc1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/5xWImhhp.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/62L4R0lC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/62L4R0lC.gz new file mode 100644 index 000000000..06d40ba66 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/62L4R0lC.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6SYFWDbs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6SYFWDbs.gz new file mode 100644 index 000000000..0e31f24ec Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6SYFWDbs.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6bAS78QA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6bAS78QA.gz new file mode 100644 index 000000000..0dda3925b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6bAS78QA.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6chkLOwn.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6chkLOwn.gz new file mode 100644 index 000000000..382c220a0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/6chkLOwn.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7+NmSqS6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7+NmSqS6.gz new file mode 100644 index 000000000..a0c3c5a5a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7+NmSqS6.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/77KXf+G2.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/77KXf+G2.gz new file mode 100644 index 000000000..98f5cb3db Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/77KXf+G2.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7EeleHRx.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7EeleHRx.gz new file mode 100644 index 000000000..6140df868 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/7EeleHRx.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8GFzTuVa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8GFzTuVa.gz new file mode 100644 index 000000000..f35ffb4aa Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8GFzTuVa.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8I2FPv+4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8I2FPv+4.gz new file mode 100644 index 000000000..ca9a4a2b1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8I2FPv+4.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8UzvLwf+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8UzvLwf+.gz new file mode 100644 index 000000000..35d3488bd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8UzvLwf+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8m1yIPR7.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8m1yIPR7.gz new file mode 100644 index 000000000..705305507 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8m1yIPR7.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8vyJHDuB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8vyJHDuB.gz new file mode 100644 index 000000000..e5759ed4d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8vyJHDuB.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8xSaKK2f.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8xSaKK2f.gz new file mode 100644 index 000000000..ae5a8441e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8xSaKK2f.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8zwHBSD0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8zwHBSD0.gz new file mode 100644 index 000000000..81ebf17d2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/8zwHBSD0.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9AzsP+D9.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9AzsP+D9.gz new file mode 100644 index 000000000..5b53a2a53 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9AzsP+D9.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9OGW3CR+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9OGW3CR+.gz new file mode 100644 index 000000000..cf6625325 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9OGW3CR+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9tAoG1Uq.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9tAoG1Uq.gz new file mode 100644 index 000000000..8e2765edc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9tAoG1Uq.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9xCfsmCY.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9xCfsmCY.gz new file mode 100644 index 000000000..67c60062e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/9xCfsmCY.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AAJPMc+q.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AAJPMc+q.gz new file mode 100644 index 000000000..5b526d4eb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AAJPMc+q.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AFZMHXnU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AFZMHXnU.gz new file mode 100644 index 000000000..f217c5649 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AFZMHXnU.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AOvOJax+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AOvOJax+.gz new file mode 100644 index 000000000..4c44d50e9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AOvOJax+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ASazdaOA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ASazdaOA.gz new file mode 100644 index 000000000..30ed72cde Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ASazdaOA.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AWyDvF+9.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AWyDvF+9.gz new file mode 100644 index 000000000..b0e3255ba Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AWyDvF+9.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AX8lKh7j.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AX8lKh7j.gz new file mode 100644 index 000000000..14da34411 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AX8lKh7j.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AiS0rqlT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AiS0rqlT.gz new file mode 100644 index 000000000..9ea20ca6b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AiS0rqlT.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Al28oHqe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Al28oHqe.gz new file mode 100644 index 000000000..473239588 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Al28oHqe.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Auic7m2e.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Auic7m2e.gz new file mode 100644 index 000000000..d6b4fe7d6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Auic7m2e.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AyefZHy+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AyefZHy+.gz new file mode 100644 index 000000000..b2d40d5a5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/AyefZHy+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIKlb2mF.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIKlb2mF.gz new file mode 100644 index 000000000..aa6957e6c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIKlb2mF.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIsU3WPu.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIsU3WPu.gz new file mode 100644 index 000000000..540db8533 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BIsU3WPu.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BJ8SPSAw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BJ8SPSAw.gz new file mode 100644 index 000000000..e4ff9ad64 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BJ8SPSAw.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZK+fHbG.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZK+fHbG.gz new file mode 100644 index 000000000..92b034ece Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZK+fHbG.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZjUAGYF.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZjUAGYF.gz new file mode 100644 index 000000000..cfea19e43 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BZjUAGYF.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BvfzaxMj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BvfzaxMj.gz new file mode 100644 index 000000000..2d9cae734 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/BvfzaxMj.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C3+iefBz.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C3+iefBz.gz new file mode 100644 index 000000000..1ac4535d5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C3+iefBz.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C8UJ3g6+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C8UJ3g6+.gz new file mode 100644 index 000000000..a2fa082a0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/C8UJ3g6+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CLacD+ws.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CLacD+ws.gz new file mode 100644 index 000000000..15414951e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CLacD+ws.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CXfYACeM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CXfYACeM.gz new file mode 100644 index 000000000..2ee264219 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CXfYACeM.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CpaZ+yDJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CpaZ+yDJ.gz new file mode 100644 index 000000000..6f8620f3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/CpaZ+yDJ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/D+1RZpX+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/D+1RZpX+.gz new file mode 100644 index 000000000..aabe6fb8d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/D+1RZpX+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/DQMhD7xB.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/DQMhD7xB.gz new file mode 100644 index 000000000..e459afa1b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/DQMhD7xB.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Dts75qHk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Dts75qHk.gz new file mode 100644 index 000000000..165ee98e1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Dts75qHk.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EUxiBhbo.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EUxiBhbo.gz new file mode 100644 index 000000000..dec4a4c2c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EUxiBhbo.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EYahmw6e.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EYahmw6e.gz new file mode 100644 index 000000000..b2dcda1b9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/EYahmw6e.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FC9BWSVd.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FC9BWSVd.gz new file mode 100644 index 000000000..584db3961 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FC9BWSVd.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FLR8M+Ah.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FLR8M+Ah.gz new file mode 100644 index 000000000..6fd854304 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FLR8M+Ah.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FrC55Mh+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FrC55Mh+.gz new file mode 100644 index 000000000..049d1a876 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/FrC55Mh+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GF4ojFS8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GF4ojFS8.gz new file mode 100644 index 000000000..37e906384 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GF4ojFS8.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GV2n5d78.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GV2n5d78.gz new file mode 100644 index 000000000..784dd5897 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/GV2n5d78.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Gw2xDHXY.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Gw2xDHXY.gz new file mode 100644 index 000000000..fb713c0c1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Gw2xDHXY.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HB8DHftC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HB8DHftC.gz new file mode 100644 index 000000000..19711ce43 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HB8DHftC.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HOJzY8yw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HOJzY8yw.gz new file mode 100644 index 000000000..913a3c067 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/HOJzY8yw.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Hci14aiA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Hci14aiA.gz new file mode 100644 index 000000000..aedbd1e76 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Hci14aiA.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I1MLYecy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I1MLYecy.gz new file mode 100644 index 000000000..32cc02a03 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I1MLYecy.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I2YQl34K.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I2YQl34K.gz new file mode 100644 index 000000000..aec64973c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/I2YQl34K.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/IzxZx+Zd.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/IzxZx+Zd.gz new file mode 100644 index 000000000..2c0acb195 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/IzxZx+Zd.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JLqYeE98.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JLqYeE98.gz new file mode 100644 index 000000000..b6ed042e0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JLqYeE98.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JQTwC+Wp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JQTwC+Wp.gz new file mode 100644 index 000000000..ee7d4007e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/JQTwC+Wp.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/K3Vy+8xS.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/K3Vy+8xS.gz new file mode 100644 index 000000000..62e58d83a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/K3Vy+8xS.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KQ+CIlck.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KQ+CIlck.gz new file mode 100644 index 000000000..fa012d2cb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KQ+CIlck.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KV+7rjd+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KV+7rjd+.gz new file mode 100644 index 000000000..a6e199d73 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/KV+7rjd+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/M39mQ8FI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/M39mQ8FI.gz new file mode 100644 index 000000000..26b257f56 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/M39mQ8FI.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MC7F1EXR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MC7F1EXR.gz new file mode 100644 index 000000000..486efb6f3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MC7F1EXR.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MXG25MIc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MXG25MIc.gz new file mode 100644 index 000000000..130ea0354 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MXG25MIc.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MdnBBtMp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MdnBBtMp.gz new file mode 100644 index 000000000..458a44022 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MdnBBtMp.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MgddUi+V.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MgddUi+V.gz new file mode 100644 index 000000000..b905654d2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/MgddUi+V.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ml7uO+rW.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ml7uO+rW.gz new file mode 100644 index 000000000..be7c473a1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ml7uO+rW.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Mx4rV4K6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Mx4rV4K6.gz new file mode 100644 index 000000000..c115463ab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Mx4rV4K6.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N0gjLoUT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N0gjLoUT.gz new file mode 100644 index 000000000..3a52f3467 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N0gjLoUT.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N5fruOuj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N5fruOuj.gz new file mode 100644 index 000000000..16ad484a9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/N5fruOuj.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/NdvF5+0U.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/NdvF5+0U.gz new file mode 100644 index 000000000..a1513304e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/NdvF5+0U.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OTY+vEhj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OTY+vEhj.gz new file mode 100644 index 000000000..b6a7e7f38 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OTY+vEhj.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OwnWA+d9.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OwnWA+d9.gz new file mode 100644 index 000000000..e204a4197 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/OwnWA+d9.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/P+OcG5X0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/P+OcG5X0.gz new file mode 100644 index 000000000..019981999 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/P+OcG5X0.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PHTiPb3I.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PHTiPb3I.gz new file mode 100644 index 000000000..975531bab Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PHTiPb3I.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PSzKFYQZ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PSzKFYQZ.gz new file mode 100644 index 000000000..31185e513 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PSzKFYQZ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PWM2F7l6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PWM2F7l6.gz new file mode 100644 index 000000000..c4a475e16 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PWM2F7l6.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PdVsjePE.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PdVsjePE.gz new file mode 100644 index 000000000..dd7be1fdb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PdVsjePE.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PesF4wKM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PesF4wKM.gz new file mode 100644 index 000000000..032ad3fac Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/PesF4wKM.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Pxx+hP2A.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Pxx+hP2A.gz new file mode 100644 index 000000000..f78891b76 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Pxx+hP2A.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/QmI3N8oM.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/QmI3N8oM.gz new file mode 100644 index 000000000..0f83a8957 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/QmI3N8oM.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Qpbt+CNX.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Qpbt+CNX.gz new file mode 100644 index 000000000..ef935d7d9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Qpbt+CNX.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/R2PLP3Qe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/R2PLP3Qe.gz new file mode 100644 index 000000000..45825c5f7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/R2PLP3Qe.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RNhSgpar.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RNhSgpar.gz new file mode 100644 index 000000000..9d6747165 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RNhSgpar.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RP4BO9dU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RP4BO9dU.gz new file mode 100644 index 000000000..2d3e41382 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/RP4BO9dU.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Re+7LMz0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Re+7LMz0.gz new file mode 100644 index 000000000..25bc6f6b2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Re+7LMz0.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ShbALnVZ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ShbALnVZ.gz new file mode 100644 index 000000000..66220292e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ShbALnVZ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/SyQx+l1x.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/SyQx+l1x.gz new file mode 100644 index 000000000..a0ddb5b4b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/SyQx+l1x.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/T02qCSL8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/T02qCSL8.gz new file mode 100644 index 000000000..8753af853 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/T02qCSL8.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TAoxl7R3.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TAoxl7R3.gz new file mode 100644 index 000000000..5d100fbd2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TAoxl7R3.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TBn7dkuj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TBn7dkuj.gz new file mode 100644 index 000000000..631250ce0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TBn7dkuj.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TLqbhHzt.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TLqbhHzt.gz new file mode 100644 index 000000000..4c2d1858f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TLqbhHzt.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TXBZ5Zv2.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TXBZ5Zv2.gz new file mode 100644 index 000000000..a9f747107 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/TXBZ5Zv2.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Tca26kuV.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Tca26kuV.gz new file mode 100644 index 000000000..13ad4e16f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Tca26kuV.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UOQe8Dq0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UOQe8Dq0.gz new file mode 100644 index 000000000..320ecad3c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UOQe8Dq0.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Uai5tZzn.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Uai5tZzn.gz new file mode 100644 index 000000000..f252e9384 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Uai5tZzn.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UlOCwkJy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UlOCwkJy.gz new file mode 100644 index 000000000..e6162bf4a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UlOCwkJy.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UsxFDlWI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UsxFDlWI.gz new file mode 100644 index 000000000..6a53aa2a2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/UsxFDlWI.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VAFs0L7p.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VAFs0L7p.gz new file mode 100644 index 000000000..c61324393 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VAFs0L7p.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VLryMgNN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VLryMgNN.gz new file mode 100644 index 000000000..90e84afcd Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VLryMgNN.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VadgPOEj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VadgPOEj.gz new file mode 100644 index 000000000..94a6c7c21 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VadgPOEj.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VjzG04qc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VjzG04qc.gz new file mode 100644 index 000000000..b9918d904 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/VjzG04qc.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WGIV8QF4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WGIV8QF4.gz new file mode 100644 index 000000000..928cfb1e6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WGIV8QF4.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WSd8vvJ+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WSd8vvJ+.gz new file mode 100644 index 000000000..20758339b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WSd8vvJ+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WUcFp4sY.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WUcFp4sY.gz new file mode 100644 index 000000000..84a456cee Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/WUcFp4sY.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ww6LdwW+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ww6LdwW+.gz new file mode 100644 index 000000000..9ab6c980a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Ww6LdwW+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XGcG3D9f.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XGcG3D9f.gz new file mode 100644 index 000000000..00df6e964 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XGcG3D9f.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XNRSaCAE.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XNRSaCAE.gz new file mode 100644 index 000000000..3b6793008 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XNRSaCAE.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XtcIMN1+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XtcIMN1+.gz new file mode 100644 index 000000000..26dbe540c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/XtcIMN1+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Y7nD3u55.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Y7nD3u55.gz new file mode 100644 index 000000000..409841413 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Y7nD3u55.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YTzkAgfa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YTzkAgfa.gz new file mode 100644 index 000000000..a4e4c6a50 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YTzkAgfa.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Yj5BZpbw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Yj5BZpbw.gz new file mode 100644 index 000000000..a7d13ee3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/Yj5BZpbw.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YjoXTRDF.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YjoXTRDF.gz new file mode 100644 index 000000000..32378d46b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YjoXTRDF.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YqyTTqnp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YqyTTqnp.gz new file mode 100644 index 000000000..fe3aa79f7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/YqyTTqnp.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ZqnBCdvU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ZqnBCdvU.gz new file mode 100644 index 000000000..a89006027 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ZqnBCdvU.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/a7NX+6Gj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/a7NX+6Gj.gz new file mode 100644 index 000000000..eac56af92 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/a7NX+6Gj.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/aOW5GZ36.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/aOW5GZ36.gz new file mode 100644 index 000000000..8baf0ae05 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/aOW5GZ36.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ab9R18co.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ab9R18co.gz new file mode 100644 index 000000000..a5500ecd2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ab9R18co.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/airhYZR7.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/airhYZR7.gz new file mode 100644 index 000000000..0044b399a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/airhYZR7.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/azxx+Ymt.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/azxx+Ymt.gz new file mode 100644 index 000000000..a88471e1d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/azxx+Ymt.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/bCA1HaC4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/bCA1HaC4.gz new file mode 100644 index 000000000..ae8ca4647 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/bCA1HaC4.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/buLwhqjv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/buLwhqjv.gz new file mode 100644 index 000000000..738029f3d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/buLwhqjv.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/c+Z0g9Jd.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/c+Z0g9Jd.gz new file mode 100644 index 000000000..8707ba174 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/c+Z0g9Jd.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cTauOqcc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cTauOqcc.gz new file mode 100644 index 000000000..e4a506e97 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cTauOqcc.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cnKLVun6.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cnKLVun6.gz new file mode 100644 index 000000000..a591af398 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cnKLVun6.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cv8v4Gsf.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cv8v4Gsf.gz new file mode 100644 index 000000000..715a46ec7 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/cv8v4Gsf.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/d1EIfJy5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/d1EIfJy5.gz new file mode 100644 index 000000000..6fcaf4a7c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/d1EIfJy5.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dF7+Cn0+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dF7+Cn0+.gz new file mode 100644 index 000000000..62daf116f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dF7+Cn0+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dNEnteD5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dNEnteD5.gz new file mode 100644 index 000000000..d6db1e5fc Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dNEnteD5.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dhu3kA+T.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dhu3kA+T.gz new file mode 100644 index 000000000..e374e801a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/dhu3kA+T.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/doP+4BwJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/doP+4BwJ.gz new file mode 100644 index 000000000..4b76352d0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/doP+4BwJ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eD8KvJQ3.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eD8KvJQ3.gz new file mode 100644 index 000000000..1e450e10c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eD8KvJQ3.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eMg4HloL.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eMg4HloL.gz new file mode 100644 index 000000000..adb1656d1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eMg4HloL.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eV8sjNpC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eV8sjNpC.gz new file mode 100644 index 000000000..488100138 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eV8sjNpC.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eXag2ZQC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eXag2ZQC.gz new file mode 100644 index 000000000..88a1a9012 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eXag2ZQC.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eglFIRt8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eglFIRt8.gz new file mode 100644 index 000000000..7d775bba1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eglFIRt8.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eoXnBbVy.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eoXnBbVy.gz new file mode 100644 index 000000000..3123b88f9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/eoXnBbVy.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/erUA+NWw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/erUA+NWw.gz new file mode 100644 index 000000000..5ea184890 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/erUA+NWw.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ersvoADk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ersvoADk.gz new file mode 100644 index 000000000..ac85744b4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ersvoADk.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f+LGd4Hi.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f+LGd4Hi.gz new file mode 100644 index 000000000..97a8d5a68 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f+LGd4Hi.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f2DKowff.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f2DKowff.gz new file mode 100644 index 000000000..c746855bb Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/f2DKowff.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fD3oFEeK.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fD3oFEeK.gz new file mode 100644 index 000000000..518e0b994 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fD3oFEeK.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fY+6+YAq.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fY+6+YAq.gz new file mode 100644 index 000000000..ab15d34f5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fY+6+YAq.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fyIBe1B+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fyIBe1B+.gz new file mode 100644 index 000000000..0c27c81e3 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/fyIBe1B+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g+MJNN4k.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g+MJNN4k.gz new file mode 100644 index 000000000..e9d8511ba Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g+MJNN4k.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g0EfU1lN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g0EfU1lN.gz new file mode 100644 index 000000000..53be14b0e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/g0EfU1lN.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gDnazL5i.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gDnazL5i.gz new file mode 100644 index 000000000..89eee14e5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gDnazL5i.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gPl5Gair.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gPl5Gair.gz new file mode 100644 index 000000000..61bea88c0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gPl5Gair.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gfZzpc+E.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gfZzpc+E.gz new file mode 100644 index 000000000..b89fde0a2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/gfZzpc+E.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hDAoPmg+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hDAoPmg+.gz new file mode 100644 index 000000000..7a94a1d69 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hDAoPmg+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hbtsH5K4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hbtsH5K4.gz new file mode 100644 index 000000000..5a161e44d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hbtsH5K4.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hwcDQ0wD.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hwcDQ0wD.gz new file mode 100644 index 000000000..284e2f93f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/hwcDQ0wD.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iD6mhcW+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iD6mhcW+.gz new file mode 100644 index 000000000..076bd4ef2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iD6mhcW+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ith6wL5e.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ith6wL5e.gz new file mode 100644 index 000000000..f698867ed Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ith6wL5e.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iv7rlSof.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iv7rlSof.gz new file mode 100644 index 000000000..0dfb9aa92 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/iv7rlSof.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/j4MZS3uC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/j4MZS3uC.gz new file mode 100644 index 000000000..9568e2def Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/j4MZS3uC.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jL+JS45b.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jL+JS45b.gz new file mode 100644 index 000000000..e69a99c4c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jL+JS45b.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jplbLOUI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jplbLOUI.gz new file mode 100644 index 000000000..368607d17 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/jplbLOUI.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/k6c5l4Zs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/k6c5l4Zs.gz new file mode 100644 index 000000000..054492162 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/k6c5l4Zs.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kIo+3vTu.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kIo+3vTu.gz new file mode 100644 index 000000000..1eee41b39 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kIo+3vTu.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kJId7wuk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kJId7wuk.gz new file mode 100644 index 000000000..21f943c2b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kJId7wuk.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kXOEfuAj.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kXOEfuAj.gz new file mode 100644 index 000000000..dedf0dda2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/kXOEfuAj.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/lf1J5B9O.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/lf1J5B9O.gz new file mode 100644 index 000000000..86250c0c9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/lf1J5B9O.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/luQkTI9I.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/luQkTI9I.gz new file mode 100644 index 000000000..cebbb4637 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/luQkTI9I.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/meTe+alg.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/meTe+alg.gz new file mode 100644 index 000000000..54adc7112 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/meTe+alg.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/moXpYGUT.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/moXpYGUT.gz new file mode 100644 index 000000000..cbf0c2ce4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/moXpYGUT.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpGGxn+A.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpGGxn+A.gz new file mode 100644 index 000000000..25cb1d748 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpGGxn+A.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpOnjY3E.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpOnjY3E.gz new file mode 100644 index 000000000..97c6bc6f9 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/mpOnjY3E.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/n5D1Bw2m.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/n5D1Bw2m.gz new file mode 100644 index 000000000..65a37c59e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/n5D1Bw2m.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nNpXywCp.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nNpXywCp.gz new file mode 100644 index 000000000..ba0513f2e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nNpXywCp.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nOj7PPDe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nOj7PPDe.gz new file mode 100644 index 000000000..bc93ed477 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nOj7PPDe.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nw4hF8e4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nw4hF8e4.gz new file mode 100644 index 000000000..46a2f9e87 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/nw4hF8e4.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/p4ttQeYL.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/p4ttQeYL.gz new file mode 100644 index 000000000..c0ef3a932 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/p4ttQeYL.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pBXJTrNX.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pBXJTrNX.gz new file mode 100644 index 000000000..74bb09b2a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pBXJTrNX.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pCfoiMIR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pCfoiMIR.gz new file mode 100644 index 000000000..d5d520f4d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pCfoiMIR.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pFQ6kByw.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pFQ6kByw.gz new file mode 100644 index 000000000..a04516d0b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pFQ6kByw.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pghmNRvs.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pghmNRvs.gz new file mode 100644 index 000000000..13cf892df Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/pghmNRvs.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/phm29G91.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/phm29G91.gz new file mode 100644 index 000000000..22dcce5c4 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/phm29G91.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/q+5LDeSN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/q+5LDeSN.gz new file mode 100644 index 000000000..2f88b9725 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/q+5LDeSN.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qGYkmnM5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qGYkmnM5.gz new file mode 100644 index 000000000..fc92ffa50 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qGYkmnM5.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qQ8gsDqb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qQ8gsDqb.gz new file mode 100644 index 000000000..c9726119a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qQ8gsDqb.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qWgUeh2N.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qWgUeh2N.gz new file mode 100644 index 000000000..89705cb32 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qWgUeh2N.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qf8xv0rk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qf8xv0rk.gz new file mode 100644 index 000000000..666b33824 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qf8xv0rk.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qlam8W+O.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qlam8W+O.gz new file mode 100644 index 000000000..ff307ac7d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qlam8W+O.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qtLOehkv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qtLOehkv.gz new file mode 100644 index 000000000..3f46cd8c5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/qtLOehkv.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/r5tIrKQJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/r5tIrKQJ.gz new file mode 100644 index 000000000..bcb263e26 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/r5tIrKQJ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rLFEcJ3K.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rLFEcJ3K.gz new file mode 100644 index 000000000..3da0cac6c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rLFEcJ3K.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rUmG1DOI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rUmG1DOI.gz new file mode 100644 index 000000000..b11efc1e8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/rUmG1DOI.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ryPTNASP.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ryPTNASP.gz new file mode 100644 index 000000000..080684180 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ryPTNASP.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s0WbNtC8.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s0WbNtC8.gz new file mode 100644 index 000000000..8db056fd8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s0WbNtC8.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s45K7klr.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s45K7klr.gz new file mode 100644 index 000000000..d55a1041b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/s45K7klr.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/sNCgE1gc.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/sNCgE1gc.gz new file mode 100644 index 000000000..5809ced8b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/sNCgE1gc.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/snRMAVo0.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/snRMAVo0.gz new file mode 100644 index 000000000..ba7aa1c8e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/snRMAVo0.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tALjiTtN.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tALjiTtN.gz new file mode 100644 index 000000000..31bc36798 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tALjiTtN.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tDSRJfdl.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tDSRJfdl.gz new file mode 100644 index 000000000..2d3532369 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tDSRJfdl.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tQEbKKnv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tQEbKKnv.gz new file mode 100644 index 000000000..574afdeae Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tQEbKKnv.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tZlcgzg+.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tZlcgzg+.gz new file mode 100644 index 000000000..8550ce916 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/tZlcgzg+.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/toKSBfJx.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/toKSBfJx.gz new file mode 100644 index 000000000..b15049b28 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/toKSBfJx.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u0AXn6bb.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u0AXn6bb.gz new file mode 100644 index 000000000..e43da26d6 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u0AXn6bb.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u2NKCkEW.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u2NKCkEW.gz new file mode 100644 index 000000000..6e0df739d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/u2NKCkEW.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/uFYGyXgI.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/uFYGyXgI.gz new file mode 100644 index 000000000..8c1d9c111 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/uFYGyXgI.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vHFCIeEH.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vHFCIeEH.gz new file mode 100644 index 000000000..7dbc5551a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vHFCIeEH.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vbyEHz+f.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vbyEHz+f.gz new file mode 100644 index 000000000..c2a578b9b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vbyEHz+f.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ve2DCp+Y.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ve2DCp+Y.gz new file mode 100644 index 000000000..a42bfd64e Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ve2DCp+Y.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vmGJlw0k.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vmGJlw0k.gz new file mode 100644 index 000000000..a5f3bd197 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/vmGJlw0k.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/w4rVORDG.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/w4rVORDG.gz new file mode 100644 index 000000000..e9a371ad1 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/w4rVORDG.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wCf576wv.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wCf576wv.gz new file mode 100644 index 000000000..540e2d52a Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wCf576wv.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wnjmgrOa.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wnjmgrOa.gz new file mode 100644 index 000000000..4757af788 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/wnjmgrOa.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xKS2CAdA.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xKS2CAdA.gz new file mode 100644 index 000000000..762f1e641 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xKS2CAdA.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xZTvHMo7.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xZTvHMo7.gz new file mode 100644 index 000000000..af517b11c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xZTvHMo7.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xhJdd8MR.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xhJdd8MR.gz new file mode 100644 index 000000000..e81ea18e8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xhJdd8MR.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xssRNhxe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xssRNhxe.gz new file mode 100644 index 000000000..921ed3cf8 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xssRNhxe.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xwCIKg4r.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xwCIKg4r.gz new file mode 100644 index 000000000..ec0c14839 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/xwCIKg4r.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/y9tSwMK5.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/y9tSwMK5.gz new file mode 100644 index 000000000..cb7fac90b Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/y9tSwMK5.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yR+Yk9oU.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yR+Yk9oU.gz new file mode 100644 index 000000000..d9a7fa4f5 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yR+Yk9oU.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yW+OvcWi.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yW+OvcWi.gz new file mode 100644 index 000000000..5c99879ca Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/yW+OvcWi.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ys2HsIxk.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ys2HsIxk.gz new file mode 100644 index 000000000..b6e7faa73 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ys2HsIxk.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ysVyZ++O.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ysVyZ++O.gz new file mode 100644 index 000000000..085a4bc5d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/ysVyZ++O.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zH8vquy4.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zH8vquy4.gz new file mode 100644 index 000000000..6d40cec07 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zH8vquy4.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zfFUKSwe.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zfFUKSwe.gz new file mode 100644 index 000000000..3767fd88f Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zfFUKSwe.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zklOABeC.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zklOABeC.gz new file mode 100644 index 000000000..0e2785ea2 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zklOABeC.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/znqmWMdE.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/znqmWMdE.gz new file mode 100644 index 000000000..443e9080c Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/znqmWMdE.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zwebL8CJ.gz b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zwebL8CJ.gz new file mode 100644 index 000000000..b7c57202d Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/build-gz/zwebL8CJ.gz differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/ref/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/ref/GraphSample.dll new file mode 100644 index 000000000..fb17371d0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/ref/GraphSample.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/refint/GraphSample.dll b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/refint/GraphSample.dll new file mode 100644 index 000000000..fb17371d0 Binary files /dev/null and b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/refint/GraphSample.dll differ diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/Overview.razor.rz.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/Overview.razor.rz.scp.css new file mode 100644 index 000000000..d66c21707 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/Overview.razor.rz.scp.css @@ -0,0 +1,628 @@ + +.chat-bot[b-omvmab0aii] { + position: fixed; + bottom: 20px; + right: 20px; + z-index: 3; +} + +/* +*Generic +*/ +ul[b-omvmab0aii] { + list-style-type: none; +} + +.mainContent[b-omvmab0aii] { + display: flex; + z-index: 25; +} + +.emailTeamsSection[b-omvmab0aii] { + width: 85%; +} + +/* +* EMAILS +*/ +.mailPage[b-omvmab0aii] { + height: 70vh; + display: flex; +} + +.emailBar[b-omvmab0aii] { + height: 100%; + width: 25%; + overflow-y: scroll; +} + +.emailSelect[b-omvmab0aii] { +} + +.emailSelectBox[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + padding: 5px; + padding-left: 15px; + display: flex; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; +} + + .emailSelectBox:hover[b-omvmab0aii] { + border-radius: 10px; + box-shadow: 0 0 3px rgba(33,33,33,.2); + } + +.emailData[b-omvmab0aii] { + width: 70%; +} + + .emailData .sender[b-omvmab0aii] { + padding-right: 10px; + margin-bottom: 0; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .subject[b-omvmab0aii] { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .content[b-omvmab0aii] { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + +.emailRight[b-omvmab0aii] { + width: 30%; + display: flex; + flex-direction: column; +} + + .emailRight .emailRightData[b-omvmab0aii] { + display: flex; + width: 100%; + justify-content: space-between; + } + +.emailRightData .timing[b-omvmab0aii] { +} + +.emailRightData .dotOn[b-omvmab0aii] { + height: 15px; + width: 15px; + background-color: #ADD8E6; + border: 1px solid #cdd4d4; + border-radius: 50%; +} + +.emailRightData .dotOff[b-omvmab0aii] { + width: 10%; + height: 15px; + width: 15px; + border: 1px solid #cdd4d4; + background-color: white; + border-radius: 50%; +} + +.emailRight .emailInteraction[b-omvmab0aii] { + display: flex; +} + + +$delete2-red: red; + +.btn[b-omvmab0aii] { +} + +.btn-delete[b-omvmab0aii] { + +} + +.btn2[b-omvmab0aii] { + display: flex; + align-items: center; + background: none; + border: none; + height: 35px; + cursor: pointer; +} + + .btn2:focus[b-omvmab0aii] { + outline: none; + border: none; + } + + .btn2 .mdi[b-omvmab0aii] { + margin-right: 4px; + margin-left: 4px; + } + + .btn2 > .mdi-delete[b-omvmab0aii] { + color: red; + } + + .btn2 > .mdi-reply-outline[b-omvmab0aii] { + color: dodgerblue; + } + + .btn2 > .mdi-reply-all-outline[b-omvmab0aii] { + color: dodgerblue; + } + + .btn2 > .mdi-send-outline[b-omvmab0aii] { + color: blue; + } + + .btn2 > .mdi-close[b-omvmab0aii] { + color: black; + } + +.btn-delete2[b-omvmab0aii] { + font-size: 16px; +} + + .btn-delete2 > .mdi-delete-empty[b-omvmab0aii] { + display: none; + color: red; + } + + .btn-delete2 > .mdi-reply[b-omvmab0aii] { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-reply-all[b-omvmab0aii] { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-send[b-omvmab0aii] { + display: none; + color: blue; + } + + .btn-delete2 > .mdi-close-outline[b-omvmab0aii] { + display: none; + color: red; + } + + .btn-delete2:hover[b-omvmab0aii] { + background-color: lighten(red, 48%); + } + + .btn-delete2:hover > .mdi-delete-empty[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-delete[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-reply[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-reply-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-reply-all[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-reply-all-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-send[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-send-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-close-outline[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-close[b-omvmab0aii] { + display: none; + } + + .btn-delete2:focus[b-omvmab0aii] { + box-shadow: 0px 0px 0px 4px lighten(red, 40%); + } + +.emailGap[b-omvmab0aii] { + padding-bottom: 5px; + opacity: 0; +} + +.emailDisplay[b-omvmab0aii] { + width: 75%; + overflow-y: scroll; + margin-left: 25px; + margin-top: 5px; +} + +.emailDisplayContent[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + height: 100%; +} + + .emailDisplayContent .heading[b-omvmab0aii] { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + margin-bottom: 10px; + + display: flex; + justify-content: space-between; + } + .emailDisplayContent .heading .ccDetails[b-omvmab0aii] { + width: 85%; + } + + .emailDisplayContent .heading .emailInteraction[b-omvmab0aii] { + width: 15%; + display: flex; + } + + .emailDisplayContent .heading .ccDetails .subject[b-omvmab0aii] { + overflow-wrap: break-all; + font-size: large; + padding: 10px; + margin-bottom: 5px; + } + + .emailDisplayContent .heading .ccDetails .sender[b-omvmab0aii] { + padding-left: 10px; + margin-bottom: 0px; + } + + .emailDisplayContent .heading .ccDetails .recipient[b-omvmab0aii] { + padding-left: 10px; + font-size: small; + margin-bottom: 0px; + padding-bottom: 15px; + } + + .emailDisplayContent .content[b-omvmab0aii] { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + width: 100%; + } + + .emailDisplayContent .content .body[b-omvmab0aii] { + word-wrap: break-word; + padding-left: 20px; + padding-right: 20px; + padding-bottom: 15px; + } + + .emailDisplayContent .emailReply[b-omvmab0aii] { + width: 100%; + margin-top:10px; + } + + .emailReply[b-omvmab0aii] { + } + + .emailReply .heading[b-omvmab0aii] { + display:flex; + flex-direction: column; + padding: 20px; + margin-bottom: 0px; + } + .heading .subject[b-omvmab0aii] { + font-size:large; + margin-bottom: 0px; + } + .heading .recipient[b-omvmab0aii] { + margin-bottom: 5px; + } + + .emailReply .emailResponseContent[b-omvmab0aii]{ + width: 100%; + display: flex; + } + + .replyDetails[b-omvmab0aii] { + display: flex; + justify-content: space-between; + padding: 0; + border: none; + background: none; + } + + .replyDetails .replyContent[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + } + + .replyDetails .mdi-close[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + font-size: large; + } + + + .emailResponseContent .mdi-send[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + font-size: large; + } + + .emailResponseContent .responseBox[b-omvmab0aii] { + margin-top: 20px; + width:100px; + } +/* +* TEAMS +*/ + +.teamsPage[b-omvmab0aii] { + display: flex; + height: 70vh; + width: 100%; +} + +.teamsBar[b-omvmab0aii] { + height: 100%; + width: 20%; + margin-left: 0px; + padding-top: 5px; +} + +.teamsSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; +} + .teamName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.channelBar[b-omvmab0aii] { + height: 100%; + width: 15%; + margin-left: 10px; + margin-top: 0; + padding-top: 5px; +} + .channelSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + + .channelName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.teamChatBar[b-omvmab0aii] { + width: 65%; + overflow-y: scroll; + display: flex; + flex-direction: column-reverse; + + margin-left: 10px; +} + +.teamsMessageBlock[b-omvmab0aii] { + padding: 20px; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); +} + +.nestedMessages[b-omvmab0aii] { + padding: 10px; +} + +.teamMessageBlock[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + + margin-top: 20px; + padding-top:10px; + padding-bottom:10px; +} + +.teamChatInital[b-omvmab0aii] { + display:flex; + justify-content:space-between; + padding-left: 20px; + margin-bottom: 10px; + margin-top: 10px; +} + + .teamChatInital .details[b-omvmab0aii] { + width: 90%; + } + .teamChatInital .interact[b-omvmab0aii] { + width: 10%; + } + +.teamChatName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; +} + +.teamChatContent[b-omvmab0aii] { + width: 100%; + padding-bottom: 5px; + font-size:medium; +} + +.teamReplySection[b-omvmab0aii] { + width: 70%; + margin-bottom: 10px; +} + +.teamInteract[b-omvmab0aii] { + display: flex; +} + +.teamMsgInteract[b-omvmab0aii] { + display: flex; + flex-direction: column; + justify-content: space-between; +} + +/* +* Chats +*/ +.chatsPage[b-omvmab0aii] { + display: flex; + height: 70vh; + width: 100%; +} + +.mypChats[b-omvmab0aii] { + width: 20%; + height: 100%; + margin-left: 0px; + padding-top: 5px; +} + + .chatSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + .chatName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.myChatBar[b-omvmab0aii] { + width: 80%; +} + + +/* +* Calendar section +*/ +.calendarSection[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + width: 15%; + height: 70vh; + flex-direction: column; + display: flex; + overflow-y: scroll; + margin-left: 20px; + margin-top: 40px; +} + + .calendarSection .event[b-omvmab0aii] { + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + padding: 10px; + margin-top:5px; + } + .event .subject[b-omvmab0aii] { + font-size:large; + padding-bottom: 0px; + margin-bottom: 0px; + text-align: center; + } + + .event .timing[b-omvmab0aii] { + } + .event .timing .date[b-omvmab0aii] { + margin-bottom: 0px; + } + + .event .timing .time[b-omvmab0aii] { + margin-bottom: 0px; + } + + .event .organiser[b-omvmab0aii] { + margin-bottom: 0px; + } + +/* +* Group settings +*/ +.groupSec[b-omvmab0aii] { + display: flex; +} + +.groupSettings[b-omvmab0aii] { + display: flex; +} + +.addGroup[b-omvmab0aii] { + display: flex; +} + +.testing1[b-omvmab0aii] { + position: absolute; + z-index: 99; +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/SummarizeFiles.razor.rz.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/SummarizeFiles.razor.rz.scp.css new file mode 100644 index 000000000..ce4c9f99f --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Pages/SummarizeFiles.razor.rz.scp.css @@ -0,0 +1,5 @@ +[b-8cwxo513pf] > fluent-dialog::part(control) { + --dialog-width: 45%; + --dialog-height: 65%; + border: 2px ridge black; +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css new file mode 100644 index 000000000..9d5761810 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css @@ -0,0 +1,26 @@ +.page[b-bl0j7m4p9v] { + position: relative; + display: flex; + flex-direction: column; +} + + +.content[b-bl0j7m4p9v] { + width: 100%; +} + +.outerSearch[b-bl0j7m4p9v] { + /* put this search bar in line with the nav bar */ + position: fixed; + top: 20px; + left: 11rem; + z-index: 4; +} + +.seperateNavBar[b-bl0j7m4p9v] { + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 3; +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/bundle/GraphSample.styles.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/bundle/GraphSample.styles.css new file mode 100644 index 000000000..cec227251 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/bundle/GraphSample.styles.css @@ -0,0 +1,665 @@ +@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css'; +@import '_content/Microsoft.Fast.Components.FluentUI/Microsoft.Fast.Components.FluentUI.bundle.scp.css'; + +/* /Pages/Overview.razor.rz.scp.css */ + +.chat-bot[b-omvmab0aii] { + position: fixed; + bottom: 20px; + right: 20px; + z-index: 3; +} + +/* +*Generic +*/ +ul[b-omvmab0aii] { + list-style-type: none; +} + +.mainContent[b-omvmab0aii] { + display: flex; + z-index: 25; +} + +.emailTeamsSection[b-omvmab0aii] { + width: 85%; +} + +/* +* EMAILS +*/ +.mailPage[b-omvmab0aii] { + height: 70vh; + display: flex; +} + +.emailBar[b-omvmab0aii] { + height: 100%; + width: 25%; + overflow-y: scroll; +} + +.emailSelect[b-omvmab0aii] { +} + +.emailSelectBox[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + padding: 5px; + padding-left: 15px; + display: flex; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; +} + + .emailSelectBox:hover[b-omvmab0aii] { + border-radius: 10px; + box-shadow: 0 0 3px rgba(33,33,33,.2); + } + +.emailData[b-omvmab0aii] { + width: 70%; +} + + .emailData .sender[b-omvmab0aii] { + padding-right: 10px; + margin-bottom: 0; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .subject[b-omvmab0aii] { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .content[b-omvmab0aii] { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + +.emailRight[b-omvmab0aii] { + width: 30%; + display: flex; + flex-direction: column; +} + + .emailRight .emailRightData[b-omvmab0aii] { + display: flex; + width: 100%; + justify-content: space-between; + } + +.emailRightData .timing[b-omvmab0aii] { +} + +.emailRightData .dotOn[b-omvmab0aii] { + height: 15px; + width: 15px; + background-color: #ADD8E6; + border: 1px solid #cdd4d4; + border-radius: 50%; +} + +.emailRightData .dotOff[b-omvmab0aii] { + width: 10%; + height: 15px; + width: 15px; + border: 1px solid #cdd4d4; + background-color: white; + border-radius: 50%; +} + +.emailRight .emailInteraction[b-omvmab0aii] { + display: flex; +} + + +$delete2-red: red; + +.btn[b-omvmab0aii] { +} + +.btn-delete[b-omvmab0aii] { + +} + +.btn2[b-omvmab0aii] { + display: flex; + align-items: center; + background: none; + border: none; + height: 35px; + cursor: pointer; +} + + .btn2:focus[b-omvmab0aii] { + outline: none; + border: none; + } + + .btn2 .mdi[b-omvmab0aii] { + margin-right: 4px; + margin-left: 4px; + } + + .btn2 > .mdi-delete[b-omvmab0aii] { + color: red; + } + + .btn2 > .mdi-reply-outline[b-omvmab0aii] { + color: dodgerblue; + } + + .btn2 > .mdi-reply-all-outline[b-omvmab0aii] { + color: dodgerblue; + } + + .btn2 > .mdi-send-outline[b-omvmab0aii] { + color: blue; + } + + .btn2 > .mdi-close[b-omvmab0aii] { + color: black; + } + +.btn-delete2[b-omvmab0aii] { + font-size: 16px; +} + + .btn-delete2 > .mdi-delete-empty[b-omvmab0aii] { + display: none; + color: red; + } + + .btn-delete2 > .mdi-reply[b-omvmab0aii] { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-reply-all[b-omvmab0aii] { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-send[b-omvmab0aii] { + display: none; + color: blue; + } + + .btn-delete2 > .mdi-close-outline[b-omvmab0aii] { + display: none; + color: red; + } + + .btn-delete2:hover[b-omvmab0aii] { + background-color: lighten(red, 48%); + } + + .btn-delete2:hover > .mdi-delete-empty[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-delete[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-reply[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-reply-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-reply-all[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-reply-all-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-send[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-send-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-close-outline[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-close[b-omvmab0aii] { + display: none; + } + + .btn-delete2:focus[b-omvmab0aii] { + box-shadow: 0px 0px 0px 4px lighten(red, 40%); + } + +.emailGap[b-omvmab0aii] { + padding-bottom: 5px; + opacity: 0; +} + +.emailDisplay[b-omvmab0aii] { + width: 75%; + overflow-y: scroll; + margin-left: 25px; + margin-top: 5px; +} + +.emailDisplayContent[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + height: 100%; +} + + .emailDisplayContent .heading[b-omvmab0aii] { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + margin-bottom: 10px; + + display: flex; + justify-content: space-between; + } + .emailDisplayContent .heading .ccDetails[b-omvmab0aii] { + width: 85%; + } + + .emailDisplayContent .heading .emailInteraction[b-omvmab0aii] { + width: 15%; + display: flex; + } + + .emailDisplayContent .heading .ccDetails .subject[b-omvmab0aii] { + overflow-wrap: break-all; + font-size: large; + padding: 10px; + margin-bottom: 5px; + } + + .emailDisplayContent .heading .ccDetails .sender[b-omvmab0aii] { + padding-left: 10px; + margin-bottom: 0px; + } + + .emailDisplayContent .heading .ccDetails .recipient[b-omvmab0aii] { + padding-left: 10px; + font-size: small; + margin-bottom: 0px; + padding-bottom: 15px; + } + + .emailDisplayContent .content[b-omvmab0aii] { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + width: 100%; + } + + .emailDisplayContent .content .body[b-omvmab0aii] { + word-wrap: break-word; + padding-left: 20px; + padding-right: 20px; + padding-bottom: 15px; + } + + .emailDisplayContent .emailReply[b-omvmab0aii] { + width: 100%; + margin-top:10px; + } + + .emailReply[b-omvmab0aii] { + } + + .emailReply .heading[b-omvmab0aii] { + display:flex; + flex-direction: column; + padding: 20px; + margin-bottom: 0px; + } + .heading .subject[b-omvmab0aii] { + font-size:large; + margin-bottom: 0px; + } + .heading .recipient[b-omvmab0aii] { + margin-bottom: 5px; + } + + .emailReply .emailResponseContent[b-omvmab0aii]{ + width: 100%; + display: flex; + } + + .replyDetails[b-omvmab0aii] { + display: flex; + justify-content: space-between; + padding: 0; + border: none; + background: none; + } + + .replyDetails .replyContent[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + } + + .replyDetails .mdi-close[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + font-size: large; + } + + + .emailResponseContent .mdi-send[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + font-size: large; + } + + .emailResponseContent .responseBox[b-omvmab0aii] { + margin-top: 20px; + width:100px; + } +/* +* TEAMS +*/ + +.teamsPage[b-omvmab0aii] { + display: flex; + height: 70vh; + width: 100%; +} + +.teamsBar[b-omvmab0aii] { + height: 100%; + width: 20%; + margin-left: 0px; + padding-top: 5px; +} + +.teamsSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; +} + .teamName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.channelBar[b-omvmab0aii] { + height: 100%; + width: 15%; + margin-left: 10px; + margin-top: 0; + padding-top: 5px; +} + .channelSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + + .channelName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.teamChatBar[b-omvmab0aii] { + width: 65%; + overflow-y: scroll; + display: flex; + flex-direction: column-reverse; + + margin-left: 10px; +} + +.teamsMessageBlock[b-omvmab0aii] { + padding: 20px; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); +} + +.nestedMessages[b-omvmab0aii] { + padding: 10px; +} + +.teamMessageBlock[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + + margin-top: 20px; + padding-top:10px; + padding-bottom:10px; +} + +.teamChatInital[b-omvmab0aii] { + display:flex; + justify-content:space-between; + padding-left: 20px; + margin-bottom: 10px; + margin-top: 10px; +} + + .teamChatInital .details[b-omvmab0aii] { + width: 90%; + } + .teamChatInital .interact[b-omvmab0aii] { + width: 10%; + } + +.teamChatName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; +} + +.teamChatContent[b-omvmab0aii] { + width: 100%; + padding-bottom: 5px; + font-size:medium; +} + +.teamReplySection[b-omvmab0aii] { + width: 70%; + margin-bottom: 10px; +} + +.teamInteract[b-omvmab0aii] { + display: flex; +} + +.teamMsgInteract[b-omvmab0aii] { + display: flex; + flex-direction: column; + justify-content: space-between; +} + +/* +* Chats +*/ +.chatsPage[b-omvmab0aii] { + display: flex; + height: 70vh; + width: 100%; +} + +.mypChats[b-omvmab0aii] { + width: 20%; + height: 100%; + margin-left: 0px; + padding-top: 5px; +} + + .chatSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + .chatName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.myChatBar[b-omvmab0aii] { + width: 80%; +} + + +/* +* Calendar section +*/ +.calendarSection[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + width: 15%; + height: 70vh; + flex-direction: column; + display: flex; + overflow-y: scroll; + margin-left: 20px; + margin-top: 40px; +} + + .calendarSection .event[b-omvmab0aii] { + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + padding: 10px; + margin-top:5px; + } + .event .subject[b-omvmab0aii] { + font-size:large; + padding-bottom: 0px; + margin-bottom: 0px; + text-align: center; + } + + .event .timing[b-omvmab0aii] { + } + .event .timing .date[b-omvmab0aii] { + margin-bottom: 0px; + } + + .event .timing .time[b-omvmab0aii] { + margin-bottom: 0px; + } + + .event .organiser[b-omvmab0aii] { + margin-bottom: 0px; + } + +/* +* Group settings +*/ +.groupSec[b-omvmab0aii] { + display: flex; +} + +.groupSettings[b-omvmab0aii] { + display: flex; +} + +.addGroup[b-omvmab0aii] { + display: flex; +} + +.testing1[b-omvmab0aii] { + position: absolute; + z-index: 99; +} +/* /Pages/SummarizeFiles.razor.rz.scp.css */ +[b-8cwxo513pf] > fluent-dialog::part(control) { + --dialog-width: 45%; + --dialog-height: 65%; + border: 2px ridge black; +} +/* /Shared/MainLayout.razor.rz.scp.css */ +.page[b-bl0j7m4p9v] { + position: relative; + display: flex; + flex-direction: column; +} + + +.content[b-bl0j7m4p9v] { + width: 100%; +} + +.outerSearch[b-bl0j7m4p9v] { + /* put this search bar in line with the nav bar */ + position: fixed; + top: 20px; + left: 11rem; + z-index: 4; +} + +.seperateNavBar[b-bl0j7m4p9v] { + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 3; +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/projectbundle/GraphSample.bundle.scp.css b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/projectbundle/GraphSample.bundle.scp.css new file mode 100644 index 000000000..7dc3e5912 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/scopedcss/projectbundle/GraphSample.bundle.scp.css @@ -0,0 +1,662 @@ +/* /Pages/Overview.razor.rz.scp.css */ + +.chat-bot[b-omvmab0aii] { + position: fixed; + bottom: 20px; + right: 20px; + z-index: 3; +} + +/* +*Generic +*/ +ul[b-omvmab0aii] { + list-style-type: none; +} + +.mainContent[b-omvmab0aii] { + display: flex; + z-index: 25; +} + +.emailTeamsSection[b-omvmab0aii] { + width: 85%; +} + +/* +* EMAILS +*/ +.mailPage[b-omvmab0aii] { + height: 70vh; + display: flex; +} + +.emailBar[b-omvmab0aii] { + height: 100%; + width: 25%; + overflow-y: scroll; +} + +.emailSelect[b-omvmab0aii] { +} + +.emailSelectBox[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + padding: 5px; + padding-left: 15px; + display: flex; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; +} + + .emailSelectBox:hover[b-omvmab0aii] { + border-radius: 10px; + box-shadow: 0 0 3px rgba(33,33,33,.2); + } + +.emailData[b-omvmab0aii] { + width: 70%; +} + + .emailData .sender[b-omvmab0aii] { + padding-right: 10px; + margin-bottom: 0; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .subject[b-omvmab0aii] { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + .emailData .content[b-omvmab0aii] { + padding: 0; + margin-bottom: 0; + font-size: small; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + + +.emailRight[b-omvmab0aii] { + width: 30%; + display: flex; + flex-direction: column; +} + + .emailRight .emailRightData[b-omvmab0aii] { + display: flex; + width: 100%; + justify-content: space-between; + } + +.emailRightData .timing[b-omvmab0aii] { +} + +.emailRightData .dotOn[b-omvmab0aii] { + height: 15px; + width: 15px; + background-color: #ADD8E6; + border: 1px solid #cdd4d4; + border-radius: 50%; +} + +.emailRightData .dotOff[b-omvmab0aii] { + width: 10%; + height: 15px; + width: 15px; + border: 1px solid #cdd4d4; + background-color: white; + border-radius: 50%; +} + +.emailRight .emailInteraction[b-omvmab0aii] { + display: flex; +} + + +$delete2-red: red; + +.btn[b-omvmab0aii] { +} + +.btn-delete[b-omvmab0aii] { + +} + +.btn2[b-omvmab0aii] { + display: flex; + align-items: center; + background: none; + border: none; + height: 35px; + cursor: pointer; +} + + .btn2:focus[b-omvmab0aii] { + outline: none; + border: none; + } + + .btn2 .mdi[b-omvmab0aii] { + margin-right: 4px; + margin-left: 4px; + } + + .btn2 > .mdi-delete[b-omvmab0aii] { + color: red; + } + + .btn2 > .mdi-reply-outline[b-omvmab0aii] { + color: dodgerblue; + } + + .btn2 > .mdi-reply-all-outline[b-omvmab0aii] { + color: dodgerblue; + } + + .btn2 > .mdi-send-outline[b-omvmab0aii] { + color: blue; + } + + .btn2 > .mdi-close[b-omvmab0aii] { + color: black; + } + +.btn-delete2[b-omvmab0aii] { + font-size: 16px; +} + + .btn-delete2 > .mdi-delete-empty[b-omvmab0aii] { + display: none; + color: red; + } + + .btn-delete2 > .mdi-reply[b-omvmab0aii] { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-reply-all[b-omvmab0aii] { + display: none; + color: dodgerblue; + } + + .btn-delete2 > .mdi-send[b-omvmab0aii] { + display: none; + color: blue; + } + + .btn-delete2 > .mdi-close-outline[b-omvmab0aii] { + display: none; + color: red; + } + + .btn-delete2:hover[b-omvmab0aii] { + background-color: lighten(red, 48%); + } + + .btn-delete2:hover > .mdi-delete-empty[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-delete[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-reply[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-reply-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-reply-all[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-reply-all-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-send[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-send-outline[b-omvmab0aii] { + display: none; + } + + .btn-delete2:hover > .mdi-close-outline[b-omvmab0aii] { + display: block; + } + + .btn-delete2:hover > .mdi-close[b-omvmab0aii] { + display: none; + } + + .btn-delete2:focus[b-omvmab0aii] { + box-shadow: 0px 0px 0px 4px lighten(red, 40%); + } + +.emailGap[b-omvmab0aii] { + padding-bottom: 5px; + opacity: 0; +} + +.emailDisplay[b-omvmab0aii] { + width: 75%; + overflow-y: scroll; + margin-left: 25px; + margin-top: 5px; +} + +.emailDisplayContent[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + height: 100%; +} + + .emailDisplayContent .heading[b-omvmab0aii] { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + margin-bottom: 10px; + + display: flex; + justify-content: space-between; + } + .emailDisplayContent .heading .ccDetails[b-omvmab0aii] { + width: 85%; + } + + .emailDisplayContent .heading .emailInteraction[b-omvmab0aii] { + width: 15%; + display: flex; + } + + .emailDisplayContent .heading .ccDetails .subject[b-omvmab0aii] { + overflow-wrap: break-all; + font-size: large; + padding: 10px; + margin-bottom: 5px; + } + + .emailDisplayContent .heading .ccDetails .sender[b-omvmab0aii] { + padding-left: 10px; + margin-bottom: 0px; + } + + .emailDisplayContent .heading .ccDetails .recipient[b-omvmab0aii] { + padding-left: 10px; + font-size: small; + margin-bottom: 0px; + padding-bottom: 15px; + } + + .emailDisplayContent .content[b-omvmab0aii] { + background: #ffffff; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); + width: 100%; + } + + .emailDisplayContent .content .body[b-omvmab0aii] { + word-wrap: break-word; + padding-left: 20px; + padding-right: 20px; + padding-bottom: 15px; + } + + .emailDisplayContent .emailReply[b-omvmab0aii] { + width: 100%; + margin-top:10px; + } + + .emailReply[b-omvmab0aii] { + } + + .emailReply .heading[b-omvmab0aii] { + display:flex; + flex-direction: column; + padding: 20px; + margin-bottom: 0px; + } + .heading .subject[b-omvmab0aii] { + font-size:large; + margin-bottom: 0px; + } + .heading .recipient[b-omvmab0aii] { + margin-bottom: 5px; + } + + .emailReply .emailResponseContent[b-omvmab0aii]{ + width: 100%; + display: flex; + } + + .replyDetails[b-omvmab0aii] { + display: flex; + justify-content: space-between; + padding: 0; + border: none; + background: none; + } + + .replyDetails .replyContent[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + } + + .replyDetails .mdi-close[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + font-size: large; + } + + + .emailResponseContent .mdi-send[b-omvmab0aii] { + padding: 0; + border: none; + background: none; + font-size: large; + } + + .emailResponseContent .responseBox[b-omvmab0aii] { + margin-top: 20px; + width:100px; + } +/* +* TEAMS +*/ + +.teamsPage[b-omvmab0aii] { + display: flex; + height: 70vh; + width: 100%; +} + +.teamsBar[b-omvmab0aii] { + height: 100%; + width: 20%; + margin-left: 0px; + padding-top: 5px; +} + +.teamsSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; +} + .teamName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.channelBar[b-omvmab0aii] { + height: 100%; + width: 15%; + margin-left: 10px; + margin-top: 0; + padding-top: 5px; +} + .channelSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + + .channelName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.teamChatBar[b-omvmab0aii] { + width: 65%; + overflow-y: scroll; + display: flex; + flex-direction: column-reverse; + + margin-left: 10px; +} + +.teamsMessageBlock[b-omvmab0aii] { + padding: 20px; + border-radius: 10px; + border: 1px solid #cdd4d4; + box-shadow: 0 0 3px rgba(33,33,33,.2); +} + +.nestedMessages[b-omvmab0aii] { + padding: 10px; +} + +.teamMessageBlock[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + + margin-top: 20px; + padding-top:10px; + padding-bottom:10px; +} + +.teamChatInital[b-omvmab0aii] { + display:flex; + justify-content:space-between; + padding-left: 20px; + margin-bottom: 10px; + margin-top: 10px; +} + + .teamChatInital .details[b-omvmab0aii] { + width: 90%; + } + .teamChatInital .interact[b-omvmab0aii] { + width: 10%; + } + +.teamChatName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; +} + +.teamChatContent[b-omvmab0aii] { + width: 100%; + padding-bottom: 5px; + font-size:medium; +} + +.teamReplySection[b-omvmab0aii] { + width: 70%; + margin-bottom: 10px; +} + +.teamInteract[b-omvmab0aii] { + display: flex; +} + +.teamMsgInteract[b-omvmab0aii] { + display: flex; + flex-direction: column; + justify-content: space-between; +} + +/* +* Chats +*/ +.chatsPage[b-omvmab0aii] { + display: flex; + height: 70vh; + width: 100%; +} + +.mypChats[b-omvmab0aii] { + width: 20%; + height: 100%; + margin-left: 0px; + padding-top: 5px; +} + + .chatSelectBox[b-omvmab0aii] { + width: 100%; + font-family: 'Pavanam', sans-serif; + padding-left: 15px; + padding-top: 5px; + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + margin-bottom: 5px; + } + .chatName[b-omvmab0aii] { + width: 90%; + padding-bottom: 5px; + font-size: large; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + max-width: 90%; + } + +.myChatBar[b-omvmab0aii] { + width: 80%; +} + + +/* +* Calendar section +*/ +.calendarSection[b-omvmab0aii] { + font-family: 'Pavanam', sans-serif; + width: 15%; + height: 70vh; + flex-direction: column; + display: flex; + overflow-y: scroll; + margin-left: 20px; + margin-top: 40px; +} + + .calendarSection .event[b-omvmab0aii] { + border-radius: 10px; + border: 1px solid #cdd4d4; + background: #ffffff; + padding: 10px; + margin-top:5px; + } + .event .subject[b-omvmab0aii] { + font-size:large; + padding-bottom: 0px; + margin-bottom: 0px; + text-align: center; + } + + .event .timing[b-omvmab0aii] { + } + .event .timing .date[b-omvmab0aii] { + margin-bottom: 0px; + } + + .event .timing .time[b-omvmab0aii] { + margin-bottom: 0px; + } + + .event .organiser[b-omvmab0aii] { + margin-bottom: 0px; + } + +/* +* Group settings +*/ +.groupSec[b-omvmab0aii] { + display: flex; +} + +.groupSettings[b-omvmab0aii] { + display: flex; +} + +.addGroup[b-omvmab0aii] { + display: flex; +} + +.testing1[b-omvmab0aii] { + position: absolute; + z-index: 99; +} +/* /Pages/SummarizeFiles.razor.rz.scp.css */ +[b-8cwxo513pf] > fluent-dialog::part(control) { + --dialog-width: 45%; + --dialog-height: 65%; + border: 2px ridge black; +} +/* /Shared/MainLayout.razor.rz.scp.css */ +.page[b-bl0j7m4p9v] { + position: relative; + display: flex; + flex-direction: column; +} + + +.content[b-bl0j7m4p9v] { + width: 100%; +} + +.outerSearch[b-bl0j7m4p9v] { + /* put this search bar in line with the nav bar */ + position: fixed; + top: 20px; + left: 11rem; + z-index: 4; +} + +.seperateNavBar[b-bl0j7m4p9v] { + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 3; +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.build.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.build.json new file mode 100644 index 000000000..973e5b0a4 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.build.json @@ -0,0 +1,259321 @@ +{ + "Version": 1, + "Hash": "OO1WJ+mSHvosN1ADbwBdEz0MOQf7ZikaQliStbUs148=", + "Source": "GraphSample", + "BasePath": "/", + "Mode": "Root", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "GraphSample\\wwwroot", + "Source": "GraphSample", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\Blazored.Modal.bundle.scp.css", + "SourceId": "Blazored.Modal", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\", + "BasePath": "_content/Blazored.Modal", + "RelativePath": "Blazored.Modal.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\Blazored.Modal.bundle.scp.css" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\BlazoredModal.razor.js", + "SourceId": "Blazored.Modal", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\", + "BasePath": "_content/Blazored.Modal", + "RelativePath": "BlazoredModal.razor.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\BlazoredModal.razor.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\inputfile.js", + "SourceId": "BlazorInputFile", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\", + "BasePath": "_content/BlazorInputFile", + "RelativePath": "inputfile.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\inputfile.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\AuthenticationService.js", + "SourceId": "Microsoft.AspNetCore.Components.WebAssembly.Authentication", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\", + "BasePath": "_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication", + "RelativePath": "AuthenticationService.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\AuthenticationService.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\AuthenticationService.js", + "SourceId": "Microsoft.Authentication.WebAssembly.Msal", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\", + "BasePath": "_content/Microsoft.Authentication.WebAssembly.Msal", + "RelativePath": "AuthenticationService.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\AuthenticationService.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\Anchor\\FluentAnchor.razor.js", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "Components/Anchor/FluentAnchor.razor.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\Anchor\\FluentAnchor.razor.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "Components/DataGrid/FluentDataGrid.razor.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\DataGrid\\FluentDataGrid.razor.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\HorizontalScroll\\FluentHorizontalScroll.razor.js", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "Components/HorizontalScroll/FluentHorizontalScroll.razor.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Components\\HorizontalScroll\\FluentHorizontalScroll.razor.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\reboot.css", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "css/reboot.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\reboot.css" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\variables.css", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "css/variables.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\css\\variables.css" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Accessibility/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Accessibility\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessibilityCheckmark/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessibilityCheckmark\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessTime/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessTime/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessTime/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AccessTime/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AccessTime\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Add/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Add\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquareMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquareMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquareMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSquareMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSquareMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AddSubtractCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AddSubtractCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Airplane/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Airplane/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Airplane/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Airplane/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Airplane\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AirplaneTakeOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AirplaneTakeOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AirplaneTakeOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AirplaneTakeOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AirplaneTakeOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AirplaneTakeOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AirplaneTakeOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Album/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Album/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Album/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Album/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Album\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlbumAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlbumAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlbumAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlbumAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlbumAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Alert/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Alert\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertBadge/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertBadge/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertBadge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertBadge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertBadge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertBadge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertBadge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertOn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertOn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertSnooze/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertSnooze\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertUrgent/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertUrgent/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertUrgent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertUrgent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertUrgent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlertUrgent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlertUrgent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignBottom/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignBottom\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterHorizontal/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterHorizontal\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignCenterVertical/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignCenterVertical\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeBottom/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeBottom/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeBottom\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeTop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignDistributeTop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignDistributeTop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignEndHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignEndHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignEndVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignEndVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignEndVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceAroundHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceAroundHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceAroundVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceAroundVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceAroundVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceBetweenHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceBetweenHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceBetweenVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceBetweenVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceBetweenVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceEvenlyHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceEvenlyHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceEvenlyVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceEvenlyVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceEvenlyVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceFitVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignSpaceFitVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignSpaceFitVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStartHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStartHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStartVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStartVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStartVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignStretchVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignStretchVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AlignTop/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AlignTop\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalCat/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalCat\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalDog/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalDog/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalDog/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalDog/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalDog/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalDog/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalDog\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbit/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbit\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbitOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbitOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbitOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalRabbitOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalRabbitOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AnimalTurtle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AnimalTurtle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppFolder/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppFolder\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppGeneric/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppGeneric\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppRecent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppRecent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppRecent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppRecent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppRecent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ApprovalsApp/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ApprovalsApp\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Apps/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Apps\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsAddIn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsAddIn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsList/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsList/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsList\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsListDetail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsListDetail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsListDetail/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppsListDetail/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppsListDetail\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppStore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppStore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppStore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppTitle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppTitle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppTitle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AppTitle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AppTitle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Archive/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Archive\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveArrowBack/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveArrowBack\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArchiveSettings/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArchiveSettings\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitContent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitContent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitContent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitContent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitContent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightDotted/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightDotted/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightDotted/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightDotted/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightDotted\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightIn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightIn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightIn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitHeightIn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitHeightIn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidthDotted/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidthDotted/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidthDotted/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowAutofitWidthDotted/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowAutofitWidthDotted\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBetweenDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBetweenDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBetweenDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBetweenDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBetweenUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBetweenUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBetweenUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBidirectionalUpDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBidirectionalUpDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBounce/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBounce/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBounce/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBounce/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBounce/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowBounce/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowBounce\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownDouble/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownDouble/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownDouble/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownDouble/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownDouble\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleDownUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleDownUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCircleUpRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCircleUpRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwise/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwise\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwiseDashes/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwiseDashes/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwiseDashes/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowClockwiseDashes/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowClockwiseDashes\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCollapseAll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCollapseAll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCollapseAll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCollapseAll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCollapseAll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwise/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwise\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwiseDashes/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwiseDashes/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwiseDashes/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCounterclockwiseDashes/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCounterclockwiseDashes\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveDownRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveDownRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveUpLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveUpLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveUpRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowCurveUpRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowCurveUpRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowDownload/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowDownload\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEject/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEject/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEject\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowEnterUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowEnterUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExpand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExpand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExpand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExpand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExpand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowExportUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowExportUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFitIn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFitIn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFitIn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowFitIn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowFitIn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForward/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForward\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownLightning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownLightning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownLightning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowForwardDownPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowForwardDownPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookDownRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookDownRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowHookUpRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowHookUpRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowImport/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowImport/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowImport/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowImport/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowImport\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowJoin/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowJoin/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowJoin\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximize/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximize\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximizeVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximizeVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximizeVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximizeVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximizeVertical/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMaximizeVertical/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMaximizeVertical\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimize/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimize\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimizeVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimizeVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimizeVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMinimizeVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMinimizeVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMove/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMove/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMove/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMove/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMove\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMoveInward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowMoveInward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowMoveInward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowNext/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowNext\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowOutlineUpRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowOutlineUpRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowParagraph/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowParagraph/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowParagraph/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowParagraph/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowParagraph/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowParagraph/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowParagraph\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowPrevious/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowPrevious\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedo/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedo\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempLTR/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempLTR\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRedoTempRTL/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRedoTempRTL\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeat1/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeat1/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeat1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeat1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeat1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeat1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeat1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAll/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAll/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAllOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAllOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAllOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAllOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAllOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRepeatAllOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRepeatAllOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReply/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReply\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyAll/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyAll\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReplyDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReplyDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowReset/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowReset\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateClockwise/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateClockwise/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateClockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateClockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateClockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateClockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateClockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateCounterclockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateCounterclockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateCounterclockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRotateCounterclockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRotateCounterclockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRouting/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRouting/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRouting/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRouting/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRouting\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRoutingRectangleMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRoutingRectangleMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRoutingRectangleMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowRoutingRectangleMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowRoutingRectangleMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowsBidirectional/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowsBidirectional/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowsBidirectional/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowsBidirectional/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowsBidirectional\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowShuffleOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowShuffleOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSort/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSort\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDownLines/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDownLines/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDownLines/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDownLines/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDownLines/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortDownLines/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortDownLines\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSortUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSortUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSplit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSplit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSprint/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSprint/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSprint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSprint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSprint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSquareDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSquareDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSquareDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSquareDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSquareDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepIn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepIn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepInRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepInRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOut/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOut\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOver/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOver/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOver/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowStepOver/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowStepOver\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSwap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSwap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSwap/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSwap/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSwap\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncOff/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncOff/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowSyncOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowSyncOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrending/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrending\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingLines/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingLines/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingLines/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingLines/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingLines\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingWrench/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingWrench/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingWrench/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTrendingWrench/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTrendingWrench\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnBidirectionalDownRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnBidirectionalDownRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnBidirectionalDownRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnBidirectionalDownRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnBidirectionalDownRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnDownUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnDownUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnLeftUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnLeftUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnRightUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnRightUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowTurnUpLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowTurnUpLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndo/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndo\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempLTR/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempLTR\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUndoTempRTL/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUndoTempRTL\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpload/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpload/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpload/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpload/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpload/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpload/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpload\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowUpRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowUpRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowWrap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowWrap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowWrapOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ArrowWrapOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ArrowWrapOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Attach/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Attach\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AttachText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AttachText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Autocorrect/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Autocorrect/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Autocorrect/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Autocorrect/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Autocorrect\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitHeight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitHeight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitHeight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitHeight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitHeight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitWidth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitWidth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitWidth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoFitWidth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoFitWidth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoSum/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoSum/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoSum/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoSum/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoSum/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/AutoSum/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\AutoSum\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backpack/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backpack\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BackpackAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BackpackAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backspace/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backspace/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backspace/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backspace/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backspace/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Backspace/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Backspace\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Badge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Badge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Badge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Badge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Badge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Balloon/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Balloon\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BarcodeScanner/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BarcodeScanner/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BarcodeScanner/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BarcodeScanner/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BarcodeScanner\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery0/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery0/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery0/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery0/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery0\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery10/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery10/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery10/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery10/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery10\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery3/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery3/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery3\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery4/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery4/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery4/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery4/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery4\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery5/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery5/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery5/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery5/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery5\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery6/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery6/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery6/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery6/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery6\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery7/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery7/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery7/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery7/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery7\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery8/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery8/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery8/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery8/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery8\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery9/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery9/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery9/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Battery9/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Battery9\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCharge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCharge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCharge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCharge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCharge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatterySaver/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatterySaver/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatterySaver/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatterySaver/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatterySaver\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryWarning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BatteryWarning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BatteryWarning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beach/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beach\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Beaker/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Beaker\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BeakerSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BeakerSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bed/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bed/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BezierCurveSquare/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BezierCurveSquare/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BezierCurveSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BezierCurveSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BezierCurveSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinderTriangle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinderTriangle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinFull/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinFull/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinFull/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BinFull/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BinFull\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bluetooth/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bluetooth\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothConnected/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothConnected/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothConnected/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothConnected/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothConnected\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothDisabled/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothDisabled/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothDisabled/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothDisabled/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothDisabled\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothSearching/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothSearching/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothSearching/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BluetoothSearching/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BluetoothSearching\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Blur/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Blur\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Board/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Board\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardGames/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardGames/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardGames\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardHeart/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardHeart/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardHeart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardHeart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardHeart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardHeart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardHeart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoardSplit/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoardSplit\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Book/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Book/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Book/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Book/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Book\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookArrowClockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookArrowClockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookArrowClockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookArrowClockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookArrowClockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCoins/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCoins/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCoins/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCoins/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCoins\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCompass/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCompass/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCompass/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookCompass/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookCompass\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookContacts/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookContacts\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDatabase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDatabase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDatabase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDatabase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDatabase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDefault\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDefault/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDefault\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookExclamationMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookExclamationMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookExclamationMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookExclamationMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookExclamationMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookGlobe/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookGlobe/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookGlobe/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookGlobe/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookGlobe\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookInformation/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookInformation/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookInformation/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookInformation/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookInformation\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookLetter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookLetter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookLetter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookLetter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookLetter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bookmark/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bookmark\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkMultiple/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkMultiple\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookmarkSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookmarkSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookNumber/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookNumber/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookNumber/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookNumber/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookNumber/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookNumber/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookNumber\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpen/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpen\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenGlobe/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenGlobe/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenGlobe/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenGlobe/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenGlobe\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookOpenMicrophone/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookOpenMicrophone\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookPulse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookPulse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookPulse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookPulse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookPulse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMark/ar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMark/ar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMark\\ar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMarkRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMarkRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMarkRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookQuestionMarkRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookQuestionMarkRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookTemplate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookTemplate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTemplate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookTheta/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookTheta/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookTheta/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookTheta/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookTheta\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BookToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BookToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderAll/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderAll/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderAll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderAll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderAll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderAll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderAll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomDouble/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomDouble/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomDouble/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomDouble/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomDouble\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomThick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomThick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomThick/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderBottomThick/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderBottomThick\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeftRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeftRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeftRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderLeftRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderLeftRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderNone/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderNone/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderNone/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderNone/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderNone\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutside/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutside/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutside/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutside/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutside\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutsideThick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutsideThick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutsideThick/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderOutsideThick/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderOutsideThick\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomDouble/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomDouble/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomDouble/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomDouble/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomDouble\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomThick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomThick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomThick/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BorderTopBottomThick/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BorderTopBottomThick\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bot/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bot/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bot/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bot/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bot\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BotSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BotSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlChopsticks/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlChopsticks\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlSalad/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlSalad/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlSalad/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowlSalad/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowlSalad\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowTie/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowTie/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowTie/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BowTie/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BowTie\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Box/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Box/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Box/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Box/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Box/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Box/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Box\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxMultipleSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxMultipleSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxSearch/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxSearch/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BoxToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BoxToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Braces/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Braces\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesVariable/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesVariable/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesVariable/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BracesVariable/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BracesVariable\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrainCircuit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrainCircuit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrainCircuit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrainCircuit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrainCircuit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Branch/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Branch/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Branch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Branch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Branch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Branch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Branch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchCompare/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchCompare/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchCompare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchCompare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchCompare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchCompare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchCompare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchFork/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchFork\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkHint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkHint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkHint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchForkLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchForkLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchRequest/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BranchRequest/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BranchRequest\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BreakoutRoom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BreakoutRoom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BreakoutRoom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BreakoutRoom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BreakoutRoom/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BreakoutRoom/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BreakoutRoom\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Briefcase/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Briefcase\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseMedical/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseMedical\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BriefcaseOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BriefcaseOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessHigh/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessHigh\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BrightnessLow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BrightnessLow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BroadActivityFeed/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BroadActivityFeed/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BroadActivityFeed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BroadActivityFeed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BroadActivityFeed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BroadActivityFeed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BroadActivityFeed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Broom/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Broom\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BubbleMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BubbleMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BubbleMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bug/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bug/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bug/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bug/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bug/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Bug/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Bug\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BugArrowCounterclockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BugArrowCounterclockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugArrowCounterclockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BugProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BugProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BugProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Building/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Building\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBank/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBank\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankLink/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankLink\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingBankToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingBankToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingDesktop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingDesktop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingDesktop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingDesktop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingDesktop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingFactory/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingFactory\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingGovernment/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingGovernment/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingGovernment/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingGovernment/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingGovernment/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingGovernment/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingGovernment\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingHome/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingHome/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingHome/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingHome/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingHome/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingHome/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingHome\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingLighthouse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingLighthouse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingLighthouse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingMore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingMore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingPeople/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingPeople/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingPeople/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingPeople/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingPeople/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingPeople/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingPeople\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetail/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetail/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetail\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMoney/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMoney/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMoney/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMoney/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMoney\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMore/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMore/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMore/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailMore/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailMore\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailShield/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailShield/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailShield\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingRetailToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingRetailToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingShop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingShop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingShop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingShop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingShop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingShop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingShop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingSkyscraper/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingSkyscraper/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingSkyscraper/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingSkyscraper/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingSkyscraper/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingSkyscraper/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingSkyscraper\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingTownhouse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingTownhouse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingTownhouse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingTownhouse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingTownhouse/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/BuildingTownhouse/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\BuildingTownhouse\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Button/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Button/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Button/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Button/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Button\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calculator/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calculator/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calculator/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calculator/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calculator/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calculator/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calculator\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorArrowClockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorArrowClockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorArrowClockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorArrowClockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorArrowClockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalculatorMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalculatorMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Calendar3Day/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Calendar3Day\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAgenda/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAgenda/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAgenda/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAgenda/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAgenda/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAgenda/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAgenda\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowCounterclockwise/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowCounterclockwise\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAssistant/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAssistant/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAssistant/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAssistant/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAssistant/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarAssistant/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarAssistant\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCancel/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCancel/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCancel/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCancel/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCancel/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCancel/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCancel\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarChat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarChat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarChat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarChat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarChat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarClock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarClock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDataBar/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDataBar\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarDay/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarDay\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarEmpty/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarEmpty\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarInfo/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarInfo/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarInfo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarInfo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarInfo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarLTR/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarLTR\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMail/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMail/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMention/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMention/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMention\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMonth/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMonth\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPattern/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPattern/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPattern/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPattern/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPattern\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPhone/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPhone/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPhone/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPhone/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPhone\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarPlay/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarPlay\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarQuestionMark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarQuestionMark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarQuestionMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarQuestionMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarQuestionMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarReply/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarReply\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarRTL/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarRTL\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSearch/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSearch/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSettings/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSettings\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarShield/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarShield\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarStar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarStar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToday/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToday\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekNumbers/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekNumbers/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekNumbers/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekNumbers/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekNumbers\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekStart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekStart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekStart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekStart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekStart/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWeekStart/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWeekStart\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalendarWorkWeek/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalendarWorkWeek\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Call/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Call\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallConnecting/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallConnecting/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallConnecting\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallEnd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallEnd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallExclamation/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallExclamation/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallExclamation\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallForward/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallForward\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPenCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPenCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPenError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPenError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPenQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CalligraphyPenQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CalligraphyPenQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallInbound/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallInbound\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallMissed/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallMissed\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallOutbound/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallOutbound\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPark/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPark\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPause/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPause/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPause/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallPause/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallPause\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallProhibited/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallProhibited\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallTransfer/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallTransfer\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallWarning/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallWarning/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CallWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CallWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Camera/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Camera\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraDome/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraDome\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSparkles/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSparkles/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSparkles/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSparkles/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSparkles/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSparkles/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSparkles\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSwitch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSwitch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSwitch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CameraSwitch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CameraSwitch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CardUI/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CardUI/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CardUI/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CardUI/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CardUI\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretDownRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretDownRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CaretUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CaretUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cart/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cart/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cast/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cast/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cast/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cast/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cast/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cast/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cast\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CatchUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CatchUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CatchUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CatchUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CatchUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CatchUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CatchUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CD/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CD/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CD\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular3G/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular3G/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular3G/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular3G/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular3G\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular4G/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular4G/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular4G/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular4G/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular4G\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular5G/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular5G/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular5G/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cellular5G/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cellular5G\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData3/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData3/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData3\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData4/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData4/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData4/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData4/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData4\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData5/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData5/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData5/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularData5/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularData5\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularWarning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CellularWarning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CellularWarning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CenterVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CenterVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Certificate/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Certificate/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Certificate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Certificate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Certificate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Certificate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Certificate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Channel/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Channel\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelAlert/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelAlert\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelArrowLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelArrowLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelDismiss/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelDismiss\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelShare/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelShare\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChannelSubtract/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChannelSubtract\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChartPerson/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChartPerson\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chat/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chat\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowDoubleBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowDoubleBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowDoubleBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatArrowDoubleBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatArrowDoubleBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubbles/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubbles/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubbles/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubbles/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubbles\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatBubblesQuestion/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatBubblesQuestion\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatCursor/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatCursor/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatCursor/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatCursor/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatCursor/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatCursor/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatCursor\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatEmpty/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatEmpty\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatHelp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatHelp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatHelp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatHelp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatHelp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatMultipleHeart/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatMultipleHeart\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatSparkle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatSparkle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatVideo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatVideo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatVideo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatVideo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatVideo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatWarning/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatWarning/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatWarning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChatWarning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChatWarning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Check/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Check/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Check/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Check/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Check\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkbox2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkbox2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxChecked/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxChecked/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxChecked/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxChecked/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxChecked/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxChecked/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxChecked\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxCheckedSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxCheckedSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxCheckedSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxCheckedSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxCheckedSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxIndeterminate/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxIndeterminate/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxIndeterminate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxIndeterminate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxIndeterminate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxIndeterminate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxIndeterminate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxUnchecked/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxUnchecked\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxWarning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckboxWarning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckboxWarning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Checkmark/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Checkmark\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkNote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkNote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkNote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkStarburst/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkStarburst/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkStarburst/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkStarburst/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkStarburst/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkStarburst/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkStarburst\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkUnderlineCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkUnderlineCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkUnderlineCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CheckmarkUnderlineCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CheckmarkUnderlineCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chess/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Chess/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Chess\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronCircleUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronCircleUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDoubleUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDoubleUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDownUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDownUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDownUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDownUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDownUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronDownUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronDownUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUpDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUpDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUpDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUpDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUpDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ChevronUpDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ChevronUpDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Circle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Circle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleEraser/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleEraser/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleEraser\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHalfFill/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHalfFill\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHint/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHint/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleImage/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleImage\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleLine/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleLine/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleLine/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleLine/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleLine/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleLine/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleLine\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleMultipleSubtractCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleMultipleSubtractCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleMultipleSubtractCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleSmall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleSmall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleSmall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CircleSmall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CircleSmall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/City/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/City/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/City/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/City/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/City/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/City/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\City\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Class/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Class/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Class/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Class/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Class\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Classification/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Classification/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Classification/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Classification/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Classification/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Classification/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Classification\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClearFormatting/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClearFormatting/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClearFormatting/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClearFormatting/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClearFormatting/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClearFormatting/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClearFormatting\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard3Day/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard3Day/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard3Day/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard3Day/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard3Day/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clipboard3Day/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clipboard3Day\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardBulletListRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardBulletListRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCode/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCode/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCode/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCode/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCode/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardCode/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardCode\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDataBar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDataBar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDataBar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDataBar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDataBar/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDataBar/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDataBar\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDay/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDay/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardDay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardDay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardHeart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardHeart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardHeart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardHeart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardHeart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardImage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardImage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardImage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLetter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLetter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLetter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLetter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLetter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLetter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLetter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMonth/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMonth/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMonth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMonth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMonth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMonth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMonth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMore/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMore/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardNote/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardNote/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardNote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardNote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardNote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPaste/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPaste/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPaste/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPaste/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPaste/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPaste/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPaste\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPulse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPulse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPulse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardPulse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardPulse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTask/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTask/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTask/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTask/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTask/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTask/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTask\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTaskListRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTaskListRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardText/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardText/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardText\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextEdit/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextEdit/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextEdit\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextLTR/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextLTR\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClipboardTextRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClipboardTextRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockAlarm/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockAlarm\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockArrowDownload/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockArrowDownload/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockArrowDownload/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockArrowDownload/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockArrowDownload\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockPause/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockPause/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockPause/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockPause/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockPause\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClockToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClockToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaption/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaption\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ClosedCaptionOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ClosedCaptionOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cloud/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cloud\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArchive/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArchive\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudArrowUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudArrowUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudCheckmark/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudCheckmark\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDatabase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDatabase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDatabase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudDismiss/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudDismiss\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudError/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudError\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudFlow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudFlow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudFlow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudFlow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudFlow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSwap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSwap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSwap/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSwap/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSwap\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudSync/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudSync\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CloudWords/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CloudWords\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Clover/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Clover\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Code/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Code/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Code/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Code/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Code/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Code/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Code\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeBlock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeBlock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCSRectangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeCSRectangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeCSRectangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeFS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeFS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeFSRectangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeFSRectangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeFSRectangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeJS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeJS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeJSRectangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeJSRectangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeJSRectangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodePY/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodePY/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePY\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodePYRectangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodePYRectangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodePYRectangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeRB/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeRB/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRB\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeRBRectangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeRBRectangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeRBRectangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeText/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeText/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTextEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTextEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTextOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTextOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTextOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTSRectangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeTSRectangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeTSRectangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeVB/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeVB/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVB\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeVBRectangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CodeVBRectangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CodeVBRectangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Collections/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Collections/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Collections/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Collections/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Collections\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CollectionsAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CollectionsAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CollectionsAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CollectionsAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CollectionsAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Color/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Color/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Color/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Color/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Color/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Color/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Color\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorBackground/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorBackground/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorBackground/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorBackground/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackground\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorBackgroundAccent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorBackgroundAccent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorBackgroundAccent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFill/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFill\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFillAccent/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFillAccent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFillAccent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorFillAccent/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorFillAccent\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLine/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLine/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLine/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLine/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLine/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLine/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLine\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLineAccent/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLineAccent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColorLineAccent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColorLineAccent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Column/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Column/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Column\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnDoubleCompare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnDoubleCompare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnDoubleCompare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnSingle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnSingle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnSingleCompare/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnSingleCompare/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnSingleCompare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnSingleCompare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnSingleCompare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTriple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTriple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTriple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTriple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTriple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTripleEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTripleEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTripleEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ColumnTripleEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ColumnTripleEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comma/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comma/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comma/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comma/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comma\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Comment/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Comment\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempLTR/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempLTR\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowLeftTempRTL/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowLeftTempRTL\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempLTR/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempLTR\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentArrowRightTempRTL/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentArrowRightTempRTL\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentCheckmark/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentCheckmark\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLightning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLightning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLightning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentLink/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentLink\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMention/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMention/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMention/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMention/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMention/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMention/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMention\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentMultipleLink/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentMultipleLink\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/ar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/ar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\ar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/he/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentNote/he/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentNote\\he\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommentOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommentOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Communication/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Communication/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Communication/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Communication/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Communication/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Communication/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Communication\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommunicationPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommunicationPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommunicationPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CommunicationPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CommunicationPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CompassNorthwest/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CompassNorthwest\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Component2DoubleTapSwipeDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Component2DoubleTapSwipeDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Component2DoubleTapSwipeUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Component2DoubleTapSwipeUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Component2DoubleTapSwipeUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Compose/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Compose\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cone/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cone/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cone\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConferenceRoom/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConferenceRoom\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connected/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connected/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connected/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connected/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connected\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connector/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connector/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connector/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connector/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connector/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Connector/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Connector\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCard/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCard\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardGroup/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardGroup\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContactCardRibbon/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContactCardRibbon\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentSettings/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentSettings\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentView/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentView\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentViewGallery/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentViewGallery/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentViewGallery/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentViewGallery/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentViewGallery/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContentViewGallery/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContentViewGallery\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ContractDownLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ContractDownLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ControlButton/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ControlButton/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ControlButton/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ControlButton/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ControlButton\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConvertRange/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConvertRange/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConvertRange/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ConvertRange/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ConvertRange\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cookies/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cookies/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cookies/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cookies/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cookies\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Copy/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Copy\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopyArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopyArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopySelect/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopySelect/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopySelect/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CopySelect/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CopySelect\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Couch/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Couch\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardClock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardClock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CreditCardToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CreditCardToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crop/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crop\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterim/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterim/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterim/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterim/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterim\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterimOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterimOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterimOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropInterimOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropInterimOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CropSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CropSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Crown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Crown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cube/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cube\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeArrowCurveDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeArrowCurveDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeArrowCurveDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeQuick/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeQuick\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeRotate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeRotate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeRotate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeTree/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeTree/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeTree/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CubeTree/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CubeTree\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarEuro/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarEuro/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarEuro/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarEuro/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarEuro/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarEuro/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarEuro\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarRupee/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarRupee/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarRupee/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarRupee/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarRupee/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CurrencyDollarRupee/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CurrencyDollarRupee\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cursor/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cursor/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cursor/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cursor/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cursor/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cursor/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cursor\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorClick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorClick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorClick/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorClick/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorClick\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHover/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHover\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorHoverOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorHoverOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/CursorProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\CursorProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cut/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cut/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cut/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Cut/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Cut\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DarkTheme/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DarkTheme/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DarkTheme/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DarkTheme/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DarkTheme\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataArea/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataArea/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataArea/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataArea/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataArea\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarHorizontalDescending/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarHorizontalDescending/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarHorizontalDescending\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVertical/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVertical\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalAscending/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalAscending/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalAscending\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataBarVerticalStar/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataBarVerticalStar\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Database/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Database\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabasePerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabasePerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabasePerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabasePerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabasePlugConnected/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabasePlugConnected/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabasePlugConnected\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseStack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseStack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseStack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseSwitch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseSwitch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseSwitch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseWindow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DatabaseWindow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DatabaseWindow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataFunnel/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataFunnel/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataFunnel/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataFunnel/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataFunnel\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataHistogram/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataHistogram/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataHistogram/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataHistogram/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataHistogram/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataHistogram/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataHistogram\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataLine/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataLine/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataLine/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataLine/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataLine\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataPie/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataPie/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataPie/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataPie/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataPie\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataScatter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataScatter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataScatter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataScatter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataScatter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataSunburst/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataSunburst/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataSunburst/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataSunburst/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataSunburst\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTreemap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTreemap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTreemap/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTreemap/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTreemap\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataTrending/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataTrending\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataUsageToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataUsageToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWaterfall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWaterfall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWaterfall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWaterfall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWaterfall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWhisker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWhisker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWhisker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DataWhisker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DataWhisker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DecimalArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DecimalArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Delete/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Delete\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteLines/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteLines/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteLines\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeleteOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeleteOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dentist/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dentist\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesignIdeas/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesignIdeas/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesignIdeas/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesignIdeas/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesignIdeas/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesignIdeas/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesignIdeas\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Desktop/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Desktop\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopCursor/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopCursor\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopFlow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopFlow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopFlow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopFlow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopFlow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopKeyboard/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopKeyboard\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopMac/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopMac\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopPulse/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopPulse\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSignal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSignal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSignal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSignal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSignal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeaker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeaker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeaker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeaker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeaker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeakerOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeakerOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeakerOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSpeakerOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSpeakerOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopTower/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopTower/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopTower/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DesktopTower/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DesktopTower\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardLightningToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardLightningToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardLightningToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeveloperBoardSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeveloperBoardSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceEQ/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceEQ/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceEQ/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceEQ/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceEQ/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceEQ/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceEQ\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoom/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoom\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DeviceMeetingRoomRemote/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DeviceMeetingRoomRemote\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diagram/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diagram/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diagram/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diagram/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diagram\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dialpad/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dialpad\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DialpadOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DialpadOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DialpadOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DialpadOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DialpadOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diamond/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diamond\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Directions/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Directions/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Directions/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Directions/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Directions/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Directions/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Directions\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dishwasher/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dishwasher\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dismiss/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dismiss\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquareMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquareMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquareMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DismissSquareMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DismissSquareMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Diversity/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Diversity\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerShort/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerShort/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerShort/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerShort/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerShort/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerShort/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerShort\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerTall/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerTall/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerTall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerTall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerTall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DividerTall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DividerTall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DockRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DockRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DockRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DockRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DockRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Doctor/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Doctor\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document100/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document100/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document100/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document100/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document100/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Document100/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Document100\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorder/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorder/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorder/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorder/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorder/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorder/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorder\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorderPrint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorderPrint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorderPrint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorderPrint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorderPrint/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBorderPrint/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBorderPrint\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBriefcase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBriefcase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBriefcase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBriefcase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBriefcase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletList/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletList/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletList/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletList/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletList\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListCube/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListCube/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListCube/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListCube/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListCube/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListCube/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListCube\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentBulletListOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentBulletListOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCatchUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCatchUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCatchUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCatchUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCatchUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCatchUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCatchUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentChevronDouble/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentChevronDouble/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentChevronDouble/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentChevronDouble/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentChevronDouble\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentContract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentContract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentContract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCopy/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCopy\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCSS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCSS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCSS/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCSS/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCSS/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentCSS/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentCSS\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentData/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentData\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDatabase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDatabase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDatabase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDatabase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDatabase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDataLink/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDataLink\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEndnote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEndnote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEndnote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentEndnote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentEndnote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFlowchart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFlowchart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFlowchart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFlowchart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFlowchart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFolder/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFolder/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFolder/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFolder/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFolder/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFolder/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFolder\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooterDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooterDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooterDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFooterDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFooterDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentFS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentFS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeader/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeader/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeader/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeader/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeader/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeader/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeader\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderArrowDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderArrowDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderArrowDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderArrowDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderArrowDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderFooter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderFooter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderFooter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderFooter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderFooter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeaderFooter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeaderFooter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeartPulse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeartPulse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeartPulse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentHeartPulse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentHeartPulse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentImage/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentImage/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJAVA/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJAVA/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJAVA/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJAVA/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJAVA\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJavascript/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJavascript/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJavascript/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJavascript/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJavascript\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentJS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentJS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentKey/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentKey/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentKey\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscape/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscape/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscape/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscape/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscape\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeData/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeData/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeData/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeData/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeData\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplitHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplitHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplitHint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLandscapeSplitHint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLandscapeSplitHint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentLock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentLock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMargins/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMargins/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMargins/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMargins/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMargins\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMention/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMention\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiplePercent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiplePercent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiplePercent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultiplePercent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultiplePercent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultipleProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultipleProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultipleProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultipleProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultipleSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentMultipleSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentMultipleSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentNumber1/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentNumber1/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentNumber1\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePage/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePage/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageBeaker/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageBeaker/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageBeaker\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageColumns/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageColumns/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageColumns/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageColumns/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageColumns\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageSparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageSparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentOnePageSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentOnePageSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomCenter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomCenter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomCenter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomCenter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomCenter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBottomRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBottomRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBreak/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBreak/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBreak/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageBreak/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageBreak\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageNumber/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageNumber/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageNumber/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageNumber/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageNumber\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopCenter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopCenter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopCenter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopCenter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopCenter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPageTopRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPageTopRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPDF/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPDF\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPercent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPercent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPercent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPercent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPercent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPill/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPill/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPill/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPill/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPill\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPrint/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPrint\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPY/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentPY/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentPY\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQuestionMark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQuestionMark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQuestionMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQuestionMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQuestionMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueue/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueue/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueue/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueue/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueue\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentQueueMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentQueueMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRB/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRB/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRB\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentRibbon/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentRibbon\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSASS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSASS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSASS/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSASS/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSASS\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSave/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSave/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSave/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSave/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSave\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSearch/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSearch/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHint/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHint/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHintOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHintOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHintOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHintOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHintOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSplitHintOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSplitHintOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentSync/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentSync\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTable/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTable/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTable/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTable/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTable/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTable/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTable\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCube/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCube/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCube/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableCube/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableCube\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableTruck/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableTruck/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableTruck/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTableTruck/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTableTruck\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTarget/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTarget/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTarget\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentText/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentText/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextExtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextExtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextExtract/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextExtract/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextExtract\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTextToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTextToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTS/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentTS/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentTS\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentVB/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentVB/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentVB\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentWidth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentWidth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentWidth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentWidth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentWidth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentYML/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentYML/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentYML/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DocumentYML/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DocumentYML\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Door/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Door/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Door/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Door/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Door/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Door/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Door\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorArrowRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorArrowRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorTag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorTag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorTag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoorTag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoorTag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleSwipeUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleSwipeUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DoubleTapSwipeUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DoubleTapSwipeUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drafts/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drafts/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drafts/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drafts/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drafts/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drafts/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drafts\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerArrowDownload/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerArrowDownload/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerArrowDownload/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerArrowDownload/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerArrowDownload\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerPlay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerPlay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerPlay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerSubtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerSubtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerSubtract/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawerSubtract/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawerSubtract\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawImage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawImage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawImage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawShape/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawShape/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawShape/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawShape/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawShape\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrawText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrawText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBeer/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBeer/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBeer/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBeer/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBeer/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBeer/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBeer\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottleOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottleOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottleOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkBottleOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkBottleOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkCoffee/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkCoffee/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkCoffee/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkCoffee/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkCoffee/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkCoffee/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkCoffee\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkMargarita/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkMargarita/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkMargarita/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkMargarita/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkMargarita/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkMargarita/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkMargarita\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkToGo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkToGo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkToGo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkToGo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkToGo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkWine/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkWine/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkWine/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkWine/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkWine/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DrinkWine/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DrinkWine\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DriveTrain/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DriveTrain/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DriveTrain/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DriveTrain/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DriveTrain\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Drop/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Drop\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClosedAlert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClosedAlert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClosedAlert/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenClosedAlert/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenClosedAlert\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDesktop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDesktop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDesktop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenGroup/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenGroup/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenGroup/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenGroup/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenGroup\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenHeader/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenHeader/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenHeader/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenHeader/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenHeader\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenMirror/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenMirror/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenMirror/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenMirror/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenMirror\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenPagination/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenPagination/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenPagination/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenPagination/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenPagination\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpan/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpan/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpan/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpan/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpan\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpeaker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpeaker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpeaker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenSpeaker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenSpeaker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenStatusBar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenStatusBar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenStatusBar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenStatusBar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenStatusBar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenTablet/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenTablet/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenTablet/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenTablet/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenTablet\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenUpdate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenUpdate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenUpdate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenUpdate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenUpdate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVerticalScroll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVerticalScroll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVerticalScroll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVerticalScroll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVerticalScroll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVibrate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVibrate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVibrate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/DualScreenVibrate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\DualScreenVibrate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dumbbell/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dumbbell\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dust/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dust/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dust/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dust/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dust/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Dust/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Dust\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Earth/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Earth\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EarthLeaf/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EarthLeaf\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Edit/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Edit\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditArrowBack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditArrowBack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditArrowBack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditProhibited/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditProhibited\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EditSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EditSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Elevator/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Elevator\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Emoji/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Emoji\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAngry/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAngry/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAngry/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAngry/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAngry/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiAngry/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiAngry\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiEdit/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiEdit\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHand/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHand\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiHint/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiHint\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiLaugh/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiLaugh/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiLaugh/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiLaugh/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiLaugh/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiLaugh/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiLaugh\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMeh/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMeh/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMeh/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMeh/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMeh/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMeh/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMeh\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSad/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSad/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSad/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSad/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSad/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSad/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSad\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSadSlight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSadSlight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSadSlight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSadSlight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSadSlight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSmileSlight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSmileSlight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSmileSlight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSmileSlight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSmileSlight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSparkle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSparkle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSurprise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSurprise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSurprise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EmojiSurprise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EmojiSurprise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Engine/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Engine/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Engine/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Engine/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Engine\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EqualOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EqualOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eraser/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eraser/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eraser/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eraser/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eraser\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserMedium/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserMedium/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserMedium/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserMedium/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserMedium\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSegment/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSegment/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSegment/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSegment/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSegment\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSmall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSmall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSmall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserSmall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserSmall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserTool/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserTool/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserTool/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EraserTool/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EraserTool\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircleSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircleSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircleSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ErrorCircleSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ErrorCircleSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExpandUpRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExpandUpRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExtendedDock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExtendedDock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExtendedDock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ExtendedDock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ExtendedDock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eye/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eye\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eyedropper/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eyedropper/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eyedropper/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eyedropper/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eyedropper/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Eyedropper/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Eyedropper\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyedropperOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyedropperOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyedropperOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyedropperOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyedropperOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeLines/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeLines\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTracking/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTracking/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTracking/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTracking/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTracking/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTracking/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTracking\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTrackingOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTrackingOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTrackingOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTrackingOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTrackingOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/EyeTrackingOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\EyeTrackingOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastAcceleration/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastAcceleration/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastAcceleration/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastAcceleration/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastAcceleration\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FastForward/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FastForward\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fax/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fax/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fax/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fax/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fax\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Feed/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Feed\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filmstrip/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filmstrip\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripPlay/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripPlay\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilmstripSplit/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilmstripSplit\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Filter/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Filter\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FilterSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FilterSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fingerprint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fingerprint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fingerprint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fingerprint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fingerprint/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fingerprint/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fingerprint\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fire/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fire/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fire/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fire/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fire/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fire/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fire\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fireplace/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fireplace\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FixedWidth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FixedWidth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FixedWidth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FixedWidth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FixedWidth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flag/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flag\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagCheckered/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagCheckered/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagCheckered\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagClock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagClock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagPride/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagPride/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagPride/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagPride/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlagPride/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlagPride\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flash/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flash\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashAuto/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashAuto/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashAuto/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashAuto/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashAuto\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashFlow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashFlow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashFlow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashFlow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashFlow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashFlow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashFlow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flashlight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flashlight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flashlight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flashlight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flashlight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flashlight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flashlight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashlightOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashlightOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashlightOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashlightOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashlightOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlashSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlashSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipHorizontal/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipHorizontal\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlipVertical/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlipVertical\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flowchart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flowchart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flowchart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Flowchart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Flowchart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlowchartCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlowchartCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlowchartCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FlowchartCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FlowchartCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluent/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluent\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluid/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluid/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluid/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluid/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluid/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Fluid/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Fluid\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Folder/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Folder\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderArrowUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderArrowUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderBriefcase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderBriefcase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderBriefcase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderGlobe/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderGlobe/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderGlobe/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderGlobe/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderGlobe\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderLink/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderLink\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderList/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderList/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMail/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMail\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpen/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpen/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpenVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpenVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpenVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderOpenVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderOpenVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPeople/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPeople/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPeople/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPeople/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPeople\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderProhibited/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderProhibited\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSwap/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSwap/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSwap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSwap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSwap/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSwap/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSwap\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderZip/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderZip/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderZip/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderZip/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderZip/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FolderZip/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FolderZip\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontDecrease/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontDecrease/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontDecrease/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontDecrease/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontDecrease\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontIncrease/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontIncrease/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontIncrease/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontIncrease/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontIncrease\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingIn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingIn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FontSpaceTrackingOut/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FontSpaceTrackingOut\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Food/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Food/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Food/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Food/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Food/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Food/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Food\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodApple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodApple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodApple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodApple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodApple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCake/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCake\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCarrot/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCarrot/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCarrot/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodCarrot/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodCarrot\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodChickenLeg/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodChickenLeg\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodEgg/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodEgg/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodEgg/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodEgg/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodEgg/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodEgg/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodEgg\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodFish/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodFish/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodFish/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodFish/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodFish\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodGrains/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodGrains/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodGrains/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodGrains/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodGrains\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodPizza/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodPizza/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodPizza/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodPizza/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodPizza\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodToast/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodToast/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodToast/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodToast/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodToast/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FoodToast/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FoodToast\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Form/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Form\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormMultiple/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormMultiple\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FormNew/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FormNew\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS120/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS120/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS120/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS120/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS120\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS240/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS240/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS240/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS240/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS240\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS30/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS30\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS60/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS60\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS960/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS960/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS960/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FPS960/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FPS960\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Frame/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Frame/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Frame/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Frame/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Frame/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Frame/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Frame\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FStop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FStop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMaximize/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMaximize/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMaximize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMaximize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMaximize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMaximize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMaximize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMinimize/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMinimize/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMinimize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMinimize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMinimize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/FullScreenMinimize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\FullScreenMinimize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Games/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Games\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GanttChart/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GanttChart/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GanttChart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GanttChart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GanttChart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GanttChart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GanttChart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gas/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gas/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gas/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gas/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gas\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GasPump/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GasPump/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GasPump/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GasPump/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GasPump\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gather/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gather/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gather\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gauge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gauge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gauge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gauge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gauge/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gauge/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gauge\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GaugeAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GaugeAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GaugeAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gavel/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gavel\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GavelProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GavelProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GavelProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GavelProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GavelProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gesture/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gesture/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gesture/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gesture/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gesture\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GIF/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GIF/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GIF/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GIF/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GIF/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GIF/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GIF\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gift/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gift/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gift/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gift/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gift/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Gift/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Gift\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMoney/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMoney/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMoney/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMoney/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMoney\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftCardMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftCardMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftOpen/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftOpen/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftOpen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftOpen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftOpen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GiftOpen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GiftOpen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glance/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glance/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glance/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glance/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glance/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glance/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glance\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceDefault/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceDefault/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceDefault\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontalSparkles/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontalSparkles/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontalSparkles/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlanceHorizontalSparkles/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlanceHorizontalSparkles\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Glasses/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Glasses\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlassesOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlassesOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Globe/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Globe\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeClock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeClock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeDesktop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeDesktop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeDesktop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeLocation/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeLocation/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeLocation/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeLocation/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeLocation\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobePerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobePerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobePerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobePerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobePerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeShield/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeShield/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeShield\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeStar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeStar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSurface/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSurface/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSurface/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSurface/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSurface/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeSurface/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeSurface\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GlobeVideo/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GlobeVideo\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Grid/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Grid\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridCircles/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridCircles/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridCircles/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridCircles/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridCircles\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridDots/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridDots/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridDots/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridDots/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridDots/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridDots/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridDots\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridKanban/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridKanban/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridKanban/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GridKanban/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GridKanban\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Group/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Group/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Group/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Group/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Group\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupList/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupList/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupList\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupReturn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupReturn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupReturn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GroupReturn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GroupReturn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guardian/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guardian\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guest/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guest\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GuestAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GuestAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GuestAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/GuestAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\GuestAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Guitar/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Guitar\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandDraw/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandDraw\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandLeftChat/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandLeftChat\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandOpenHeart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandOpenHeart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandOpenHeart/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandOpenHeart/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandOpenHeart\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRightOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandRightOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandRightOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Handshake/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Handshake\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandWave/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandWave/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandWave/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandWave/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandWave/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HandWave/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HandWave\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HardDrive/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HardDrive/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HardDrive/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HardDrive/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HardDrive\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HatGraduation/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HatGraduation\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HD/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HD/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HD/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HD/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HD/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HD/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HD\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDROff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDROff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDROff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HDROff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HDROff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headphones/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headphones\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadphonesSoundWave/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadphonesSoundWave\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Headset/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Headset\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetVR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetVR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetVR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeadsetVR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeadsetVR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Heart/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Heart\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartBroken/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartBroken/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartBroken/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartBroken/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartBroken/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartBroken/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartBroken\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartCircleHint/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartCircleHint\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartPulse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartPulse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartPulse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartPulse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartPulse/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HeartPulse/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HeartPulse\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Highlight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Highlight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Highlight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Highlight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Highlight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Highlight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Highlight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HighlightAccent/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HighlightAccent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HighlightAccent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightAccent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HighlightLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HighlightLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HighlightLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/History/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\History\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HistoryDismiss/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HistoryDismiss\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Home/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Home\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeDatabase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeDatabase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeDatabase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeDatabase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeDatabase/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeDatabase/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeDatabase\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeMore/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeMore\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomePerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomePerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomePerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomePerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomePerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HomeSplit/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HomeSplit\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Hourglass/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Hourglass/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Hourglass/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Hourglass/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Hourglass/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Hourglass/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Hourglass\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassHalf/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassHalf/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassHalf/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassHalf/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassHalf/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassHalf/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassHalf\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassOneQuarter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassOneQuarter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassOneQuarter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassOneQuarter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassOneQuarter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassOneQuarter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassOneQuarter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassThreeQuarter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassThreeQuarter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassThreeQuarter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassThreeQuarter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassThreeQuarter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/HourglassThreeQuarter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\HourglassThreeQuarter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Icons/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Icons/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Icons/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Icons/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Icons\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Image/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Image\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAltText/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAltText/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAltText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAltText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAltText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageAltText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageAltText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/ar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/ar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\ar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/he/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowBack/he/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowBack\\he\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowCounterclockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowCounterclockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowCounterclockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowCounterclockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowCounterclockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/ar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/ar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\ar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/he/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageArrowForward/he/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageArrowForward\\he\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageBorder/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageBorder\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCopy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCopy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCopy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCopy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCopy/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageCopy/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageCopy\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageGlobe/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageGlobe/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageGlobe/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageGlobe/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageGlobe\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultiple/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultiple\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultipleOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultipleOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultipleOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageMultipleOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageMultipleOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageReflection/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageReflection/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageReflection/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageReflection/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageReflection\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageShadow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageShadow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageShadow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageShadow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageShadow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageStack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageStack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageStack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageStack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageStack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImageTable/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImageTable\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ImmersiveReader/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ImmersiveReader\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Important/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Important\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Incognito/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Incognito/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Incognito/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Incognito/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Incognito\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Info/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Info\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InfoShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InfoShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InfoShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingTool/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingTool\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingToolAccent/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingToolAccent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingToolAccent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkingToolAccent/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkingToolAccent\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStroke/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStroke/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStroke/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStroke/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStroke\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowUpDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowUpDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowUpDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InkStrokeArrowUpDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InkStrokeArrowUpDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/InPrivateAccount/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\InPrivateAccount\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Insert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Insert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Insert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/iOSArrowLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/iOSArrowLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/iOSArrowRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/iOSArrowRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSArrowRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/iOSChevronRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/iOSChevronRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\iOSChevronRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoT/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoT/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoT/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoT/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoT/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoT/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoT\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoTAlert/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoTAlert/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoTAlert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoTAlert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoTAlert/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/IoTAlert/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\IoTAlert\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/JavaScript/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/JavaScript/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/JavaScript/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/JavaScript/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/JavaScript/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/JavaScript/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\JavaScript\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Joystick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Joystick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Joystick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Key/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Key\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard123/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard123/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard123/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Keyboard123/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Keyboard123\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardDock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardDock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardDock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardDock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardDock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutFloat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutFloat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutFloat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutFloat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutFloat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutOneHandedLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutOneHandedLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutOneHandedLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutOneHandedLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutOneHandedLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutResize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutResize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutResize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutResize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutResize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardLayoutSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardLayoutSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardMouse/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardMouse/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardMouse\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShift/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShift/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShift/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShift/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShift/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShift/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShift\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShiftUppercase/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShiftUppercase/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShiftUppercase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShiftUppercase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShiftUppercase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardShiftUppercase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardShiftUppercase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardTab/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardTab/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardTab/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyboardTab/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyboardTab\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyCommand/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyCommand/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyCommand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyCommand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyCommand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyCommand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyCommand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyReset/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyReset/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyReset/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/KeyReset/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\KeyReset\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Laptop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Laptop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopShield/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopShield/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaptopShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaptopShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaserTool/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LaserTool/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LaserTool\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lasso/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lasso/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lasso/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lasso/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lasso/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lasso/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lasso\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LauncherSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LauncherSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LauncherSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LauncherSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LauncherSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Layer/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Layer/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Layer/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Layer/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Layer\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LayerDiagonal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LayerDiagonal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LayerDiagonalPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LayerDiagonalPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LayerDiagonalPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafOne/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafOne\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafThree/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafThree/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafThree/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafThree/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafThree/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafThree/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafThree\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LeafTwo/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LeafTwo\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LearningApp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LearningApp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LearningApp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LearningApp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LearningApp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Library/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Library\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lightbulb/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lightbulb\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbFilament/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbFilament\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LightbulbPerson/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LightbulbPerson\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Likert/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Likert/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Likert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Likert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Likert/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Likert/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Likert\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Line/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Line\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineDashes/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineDashes\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4Search/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4Search/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4Search/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal4Search/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal4Search\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal5/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal5/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal5Error/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineHorizontal5Error/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineHorizontal5Error\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineStyle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineStyle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineStyle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineStyle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineStyle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineThickness/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineThickness/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineThickness/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LineThickness/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LineThickness\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Link/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Link\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LinkToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LinkToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/List/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\List\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTree/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTree/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTree/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTree/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTree\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTreeOffset/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTreeOffset/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTreeOffset/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListBarTreeOffset/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListBarTreeOffset\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ListRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ListRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Live/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Live/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Live/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Live/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Live\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LiveOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LiveOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LiveOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LiveOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LiveOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/en/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\en\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ja/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ja/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ja/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ja/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ja\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/ko/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\ko\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/zh/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/zh/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/zh/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocalLanguage/zh/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocalLanguage\\zh\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Location/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Location\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAddLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAddLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAddRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAddRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAddUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationAddUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationAddUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationArrowUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationArrowUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationLive/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationLive/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationLive/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationLive/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationLive\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LocationOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LocationOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosed/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosed\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosedKey/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosedKey/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosedKey/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosedKey/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosedKey/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockClosedKey/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockClosedKey\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockOpen/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockOpen\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockShield/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockShield/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockShield/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/LockShield/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\LockShield\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lottery/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lottery/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lottery/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Lottery/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Lottery\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Luggage/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Luggage\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mail/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mail\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAlert/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAlert\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllRead/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllRead\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllUnread/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAllUnread/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAllUnread\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDoubleBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDoubleBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDoubleBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDoubleBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDoubleBack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDoubleBack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDoubleBack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailAttach/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailAttach\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailClock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailClock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCopy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCopy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCopy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailCopy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailCopy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInbox/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInbox\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxAll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxAll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailInboxDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailInboxDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailList/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailList\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOpenPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOpenPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOpenPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOpenPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOpenPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailOpenPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailOpenPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailPause/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailPause/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailPause/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailPause/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailPause\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailRead/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailRead\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailReadMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailReadMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailShield/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailShield/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailTemplate/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailTemplate/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailTemplate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailTemplate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailTemplate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailTemplate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailTemplate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailUnread/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailUnread\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailWarning/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailWarning/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailWarning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MailWarning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MailWarning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Map/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Map/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Map/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Map/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Map/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Map/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Map\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MapDrive/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MapDrive/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MapDrive/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MapDrive/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MapDrive/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MapDrive/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MapDrive\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Markdown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Markdown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Markdown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MatchAppLayout/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MatchAppLayout/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MatchAppLayout/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MatchAppLayout/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MatchAppLayout\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatLinear/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatLinear/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatLinear/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatLinear/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatLinear\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatProfessional/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatProfessional/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatProfessional/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatProfessional/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatProfessional/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormatProfessional/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormatProfessional\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathFormula/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathFormula\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MathSymbols/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MathSymbols\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Maximize/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Maximize\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MeetNow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MeetNow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Megaphone/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Megaphone\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneLoud/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneLoud\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MegaphoneOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MegaphoneOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Memory/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Memory/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Memory\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mention/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mention\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MentionArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MentionArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MentionBrackets/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MentionBrackets/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MentionBrackets\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Merge/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Merge/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Merge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Merge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Merge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Merge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Merge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mic/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mic\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicProhibited/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicProhibited\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulse/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulse\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicPulseOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicPulseOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Microscope/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Microscope/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Microscope/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Microscope/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Microscope\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MicSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MicSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Midi/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Midi/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Midi/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Midi/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Midi\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MobileOptimized/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MobileOptimized/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MobileOptimized/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MobileOptimized/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MobileOptimized\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mold/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mold/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mold/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mold/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mold/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Mold/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Mold\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Molecule/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Molecule\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Money/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Money/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Money/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Money/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Money/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Money/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Money\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyCalculator/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyCalculator/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyCalculator/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyCalculator/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyCalculator\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyHand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyHand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyHand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyHand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyHand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneyOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneyOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneySettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoneySettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoneySettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreHorizontal/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreHorizontal\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoreVertical/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoreVertical\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationBottom/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationBottom/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationBottom\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationTop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationTop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationTop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationTop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationTop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainLocationTop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainLocationTop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainTrail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainTrail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainTrail/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainTrail/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainTrail/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MountainTrail/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MountainTrail\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoviesandTV/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoviesandTV/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoviesandTV/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoviesandTV/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoviesandTV/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MoviesandTV/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MoviesandTV\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier_5x/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier_5x\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_2x/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_2x\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_5x/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_5x\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1_8x/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1_8x\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier1x/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier1x\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Multiplier2x/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Multiplier2x\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MultiselectRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MultiselectRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2Play/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNote2Play/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNote2Play\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff2/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff2/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MusicNoteOff2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MusicNoteOff2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/MyLocation/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\MyLocation\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Navigation/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Navigation/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Navigation/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Navigation/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Navigation/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Navigation/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Navigation\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationLocationTarget/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationLocationTarget/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationLocationTarget\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationUnread/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationUnread/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationUnread/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NavigationUnread/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NavigationUnread\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NetworkAdapter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NetworkAdapter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkAdapter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NetworkCheck/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NetworkCheck/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NetworkCheck/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NetworkCheck/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NetworkCheck\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/New/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/New/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/New/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/New/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/New/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/New/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\New\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/News/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\News\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Next/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Next\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Note/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Note\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notebook/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notebook\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookArrowCurveDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookArrowCurveDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookArrowCurveDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookEye/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookEye/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookEye\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookLightning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookLightning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookLightning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookQuestionMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookQuestionMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookQuestionMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSection/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSection/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSection/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSection/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSection\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSectionArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSectionArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSectionArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSectionArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSectionArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSubsection/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSubsection/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSubsection/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSubsection/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSubsection\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotebookSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotebookSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NoteEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NoteEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Notepad/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Notepad\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotepadPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotepadPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotePin/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotePin/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotePin/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NotePin/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NotePin\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle1/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle1\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle2/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle2\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle3/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle3\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle4/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle4\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberCircle5/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberCircle5\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberRow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberRow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbol/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbol\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/NumberSymbolSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\NumberSymbolSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Open/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Open\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenFolder/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenFolder\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OpenOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OpenOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Options/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Options\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Organization/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Organization\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OrganizationHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/OrganizationHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\OrganizationHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Orientation/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Orientation/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Orientation/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Orientation/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Orientation\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oval/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oval\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Oven/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Oven\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingTop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingTop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingTop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaddingTop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaddingTop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PageFit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PageFit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PageFit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PageFit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PageFit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PageFit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PageFit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrush/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrush/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrush/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrush/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrush/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrush/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrush\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBrushArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBrushArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBucket/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBucket/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBucket/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBucket/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBucket/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PaintBucket/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PaintBucket\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pair/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pair/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pair/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pair/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pair\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelBottomContract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelBottomContract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomContract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelBottomExpand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelBottomExpand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelBottomExpand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftContract/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftContract\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftExpand/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftExpand\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftFocusRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftFocusRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftFocusRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftFocusRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftFocusRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeader/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeader\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderKey/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderKey/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderKey/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderKey/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderKey/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftHeaderKey/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftHeaderKey\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftKey/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftKey/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftKey/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftKey/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftKey/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftKey/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftKey\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftText/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftText\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelLeftTextDismiss/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelLeftTextDismiss\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightContract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightContract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightContract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightContract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightContract/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightContract/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightContract\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightCursor/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightCursor/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightCursor/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightCursor/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightCursor\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightExpand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelRightExpand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelRightExpand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelSeparateWindow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelSeparateWindow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelSeparateWindow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelTopContract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelTopContract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopContract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelTopExpand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PanelTopExpand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PanelTopExpand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Password/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Password/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Password/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Password/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Password/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Password/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Password\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patient/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patient/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patient/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patient/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patient/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Patient/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Patient\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pause/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pause\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PauseSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PauseSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Payment/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Payment\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pen/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pen\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenDismiss/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenDismiss\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PenProhibited/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PenProhibited\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pentagon/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pentagon/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pentagon/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pentagon/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pentagon/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pentagon/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pentagon\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/People/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\People\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAudience/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAudience/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAudience/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleAudience/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleAudience\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCall/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCall/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunity/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunity\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunityAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunityAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunityAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunityAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunityAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleCommunityAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleCommunityAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleList/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleList\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleMoney/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleMoney/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleMoney/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleMoney/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleMoney\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleQueue/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleQueue/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleQueue/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleQueue/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleQueue\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSettings/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSettings/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSettings\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleStar/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleStar\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSwap/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSwap\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSync/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleSync/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleSync\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeam/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeam\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamDelete/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamDelete\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamToolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleTeamToolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleTeamToolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleToolbox/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleToolbox/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PeopleToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PeopleToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person5/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person5/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person5/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person5/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person5\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person6/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person6/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person6/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Person6/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Person6\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAccounts/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAccounts/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAccounts/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAccounts/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAccounts\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAlert/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAlert/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAlert/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAlert/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAlert/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAlert/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAlert\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowBack/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowBack\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAvailable/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAvailable/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAvailable/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAvailable/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAvailable/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonAvailable/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonAvailable\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonBoard/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonBoard\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCall/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCall/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonChat/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonChat/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonChat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonChat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonChat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonChat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonChat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonClock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonClock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDelete/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDelete/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDelete/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDelete/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDelete/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDelete/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDelete\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonFeedback/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonFeedback\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonHeart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonHeart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonHeart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonHeart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonHeart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonInfo/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonInfo/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonInfo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonInfo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonInfo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonKey/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonKey/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonKey\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightbulb/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightbulb/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightbulb/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightbulb/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightbulb\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightning/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightning/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLink/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLink\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMail/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMail\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMoney/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMoney/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMoney/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonMoney/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonMoney\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonNote/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonNote/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonNote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonNote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonNote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonNote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonNote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonPill/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonPill/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonPill/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonPill/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonPill\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonQuestionMark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonQuestionMark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonQuestionMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonQuestionMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonQuestionMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonRibbon/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonRibbon/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonRibbon/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonRibbon/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRibbon\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonRunning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonRunning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonRunning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSearch/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSearch\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStanding/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStanding/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStanding\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStar/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStar\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStarburst/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStarburst/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStarburst/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonStarburst/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonStarburst\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSubtract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSubtract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSubtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSubtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSubtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSupport/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSupport/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSupport/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSupport/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSupport/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSupport/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSupport\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSwap/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSwap/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSwap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSwap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSwap/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSwap/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSwap\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonSync/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonSync\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonTag/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonTag\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonVoice/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonVoice/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonVoice/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonVoice/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonVoice\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWalking/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWalking/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWalking/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWalking/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWalking/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWalking/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWalking\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWrench/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PersonWrench/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PersonWrench\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Phone/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Phone\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneChat/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneChat\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktop/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktop\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktopAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDesktopAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDesktopAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEraser/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEraser/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEraser/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneEraser/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneEraser\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneKey/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneKey/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneKey/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneKey/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneKey\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLaptop/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLaptop\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLinkSetup/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLinkSetup/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLinkSetup/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLinkSetup/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLinkSetup\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePageHeader/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePageHeader/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePageHeader/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePageHeader/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePageHeader\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePagination/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePagination/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePagination/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhonePagination/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhonePagination\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneScreenTime/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneScreenTime/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneScreenTime/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneScreenTime/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneScreenTime\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneShake/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneShake/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneShake/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneShake/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneShake\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanIn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanIn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpanOut/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpanOut\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpeaker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpeaker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpeaker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneSpeaker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneSpeaker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneStatusBar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneStatusBar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneStatusBar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneStatusBar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneStatusBar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneTablet/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneTablet/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneTablet/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneTablet/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneTablet\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdateCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdateCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdateCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneUpdateCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneUpdateCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVerticalScroll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVerticalScroll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVerticalScroll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVerticalScroll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVerticalScroll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVibrate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVibrate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVibrate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhoneVibrate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhoneVibrate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhotoFilter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhotoFilter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhotoFilter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PhotoFilter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PhotoFilter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pi/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pi/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pi/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pi/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pi\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPicture/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPicture/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPicture/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPicture/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPicture/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPicture/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPicture\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureEnter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureEnter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureEnter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureEnter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureEnter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureEnter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureEnter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureExit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureExit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureExit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureExit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureExit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PictureInPictureExit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PictureInPictureExit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pill/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pill\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pin/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pin\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PinOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PinOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pipeline/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pipeline/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pipeline/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pipeline/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pipeline/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pipeline/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pipeline\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelineAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelineAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelineAdd/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelineAdd/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineAdd\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelineArrowCurveDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelineArrowCurveDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelineArrowCurveDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelinePlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PipelinePlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PipelinePlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pivot/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pivot/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pivot/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pivot/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pivot\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantGrass/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantGrass/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantGrass/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantGrass/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantGrass/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantGrass/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantGrass\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantRagweed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantRagweed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantRagweed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantRagweed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantRagweed/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlantRagweed/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlantRagweed\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Play/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Play\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircleHint/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircleHint/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircleHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircleHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircleHint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayCircleHint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayCircleHint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayingCards/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayingCards/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayingCards\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlayMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlayMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlaySettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlaySettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlaySettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnected/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnected/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnected/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnected/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnected\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnectedAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnectedAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnectedCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugConnectedCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugConnectedCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugDisconnected/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugDisconnected/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugDisconnected/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugDisconnected/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugDisconnected/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PlugDisconnected/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PlugDisconnected\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PointScan/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PointScan/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PointScan/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PointScan/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PointScan\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Poll/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Poll/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Poll/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Poll/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Poll/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Poll/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Poll\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PollHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PollHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PollHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PollHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PollHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PollHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PollHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortHDMI/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortHDMI/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortHDMI/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortHDMI/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortHDMI\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortMicroUSB/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortMicroUSB/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortMicroUSB/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortMicroUSB/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortMicroUSB\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBA/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBA/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBA/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBA/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBA\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBC/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBC/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBC/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PortUSBC/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PortUSBC\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionBackward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionBackward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionBackward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionBackward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionBackward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToBack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToBack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToBack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToFront/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToFront/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToFront/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PositionToFront/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PositionToFront\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Power/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Power/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Power/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Power/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Power/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Power/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Power\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Predictions/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Predictions/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Predictions/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Predictions/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Predictions\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Premium/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Premium\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PremiumPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PremiumPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PremiumPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PremiumPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PremiumPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PremiumPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PremiumPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/10_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/10_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\10_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAvailable/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAvailable\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/10_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/10_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\10_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceAway/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceAway\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\10_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBlocked/10_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\10_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBlocked/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBlocked/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBlocked/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBlocked/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBlocked\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\10_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBusy/10_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\10_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBusy/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBusy/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBusy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceBusy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceBusy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/10_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/10_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\10_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceDND/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceDND\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\10_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOffline/10_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\10_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOffline/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOffline/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOffline/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOffline/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOffline\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\10_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOOF/10_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\10_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOOF/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOOF/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOOF/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceOOF/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceOOF\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\10_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceUnknown/10_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\10_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceUnknown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceUnknown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceUnknown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenceUnknown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenceUnknown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Presenter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Presenter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Presenter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Presenter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Presenter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenterOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenterOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenterOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PresenterOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PresenterOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PreviewLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PreviewLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PreviewLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PreviewLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PreviewLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PreviewLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PreviewLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Previous/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Previous\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Print/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Print\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PrintAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PrintAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PrintAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PrintAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PrintAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Production/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Production/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Production/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Production/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Production\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProductionCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProductionCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProductionCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProductionCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProductionCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Prohibited/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Prohibited\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedNote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProhibitedNote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProhibitedNote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreen/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreen\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProjectionScreenText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProjectionScreenText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProtocolHandler/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProtocolHandler/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProtocolHandler/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProtocolHandler/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProtocolHandler/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ProtocolHandler/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ProtocolHandler\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Pulse/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Pulse\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PulseSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PulseSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PulseSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PulseSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PulseSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCube/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCube\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCubePiece/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzleCubePiece/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzleCubePiece\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Puzzlepiece/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Puzzlepiece/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Puzzlepiece/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Puzzlepiece/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Puzzlepiece/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Puzzlepiece/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Puzzlepiece\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzlePieceShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/PuzzlePieceShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\PuzzlePieceShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QRCode/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QRCode/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QRCode/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QRCode/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QRCode/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QRCode/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QRCode\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Question/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Question\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuestionCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuestionCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/QuizNew/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\QuizNew\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Radar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Radar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Radar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadarCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadarCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadarRectangleMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadarRectangleMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadarRectangleMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButton/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButton/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButton/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButton/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButton/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButton/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButton\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButtonOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RadioButtonOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RadioButtonOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RAM/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RAM/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RAM/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RAM/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RAM\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatingMature/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatingMature/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatingMature/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatingMature/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatingMature/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatingMature/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatingMature\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatioOneToOne/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatioOneToOne/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatioOneToOne/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RatioOneToOne/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RatioOneToOne\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadAloud/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadAloud\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingList/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingList\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingListAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingListAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingModeMobile/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingModeMobile/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingModeMobile/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReadingModeMobile/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReadingModeMobile\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RealEstate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RealEstate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RealEstate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RealEstate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RealEstate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Receipt/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Receipt\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptBag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptBag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptBag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptBag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptBag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptCube/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptCube/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptCube/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptCube/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptCube\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptMoney/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptMoney/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptMoney/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptMoney/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptMoney/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptMoney/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptMoney\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptPlay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptPlay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptPlay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSparkles/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSparkles/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSparkles/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSparkles/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSparkles/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReceiptSparkles/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReceiptSparkles\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Record/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Record\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RecordStop/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RecordStop\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectangleLandscape/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectangleLandscape\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectanglePortraitLocationTarget/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RectanglePortraitLocationTarget/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RectanglePortraitLocationTarget\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Recycle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Recycle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Recycle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Recycle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Recycle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Remote/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Remote/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Remote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Remote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Remote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rename/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rename\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrder/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrder/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrder/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrder/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrder/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrder/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrder\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ReOrderDotsVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ReOrderDotsVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Replay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Replay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Replay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Resize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Resize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Resize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Resize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Resize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeImage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeImage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeImage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeLarge/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeLarge/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeLarge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeLarge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeLarge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeLarge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeLarge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeSmall/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeSmall/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeSmall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeSmall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeSmall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeSmall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeSmall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeTable/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeTable/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeTable/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeTable/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeTable\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeVideo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeVideo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeVideo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ResizeVideo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ResizeVideo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Reward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Reward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rewind/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rewind\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rhombus/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rhombus\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ribbon/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ribbon\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RibbonStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RibbonStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RoadCone/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RoadCone\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rocket/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rocket/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rocket/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rocket/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rocket/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Rocket/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Rocket\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RotateRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RotateRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Router/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Router/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Router/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Router/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Router\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RowTriple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RowTriple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RowTriple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RowTriple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RowTriple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RSS/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RSS/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RSS/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/RSS/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\RSS\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Ruler/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Ruler\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Run/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Run/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Run/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Run/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Run/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Run/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Run\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sanitize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sanitize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sanitize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sanitize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sanitize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Save/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Save\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveCopy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveCopy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveCopy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveCopy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveCopy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SaveSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SaveSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Savings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Savings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Savings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Savings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Savings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Savings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Savings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFill/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFill/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFill/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFill/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFill\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScaleFit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScaleFit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scales/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scales/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scales/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scales/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scales/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scales/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scales\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scan/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scan/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scan/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scan/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scan/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scan/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scan\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanCamera/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanCamera\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanDash/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanDash\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanObject/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanObject/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanObject/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanObject/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanObject\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanQRCode/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanQRCode/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanQRCode\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTable/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTable/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTable/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTable/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTable\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanText/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanText\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanThumbUpOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanThumbUpOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanType/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanType/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanType/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanType/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanType\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTypeCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTypeCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTypeCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTypeCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTypeOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScanTypeOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScanTypeOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scratchpad/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scratchpad/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scratchpad/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Scratchpad/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Scratchpad\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenCut/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenCut/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenCut\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ScreenSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ScreenSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Screenshot/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Screenshot/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Screenshot/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Screenshot/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Screenshot\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Script/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Script/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Script\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Search/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Search\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchInfo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchInfo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchInfo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchInfo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchInfo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchVisual/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchVisual/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchVisual/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchVisual/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchVisual/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SearchVisual/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SearchVisual\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectAllOn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectAllOn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObject/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObject/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObject/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObject/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObject\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkew/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkew/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkew/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkew/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkew\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SelectObjectSkewEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SelectObjectSkewEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Send/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Send\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendBeaker/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendBeaker\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendCopy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendCopy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendCopy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SendCopy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SendCopy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SerialPort/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SerialPort/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SerialPort/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SerialPort/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SerialPort/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SerialPort/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SerialPort\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Server/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Server/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Server/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Server/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Server/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Server/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Server\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerSurface/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerSurface/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurface\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerSurfaceMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServerSurfaceMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServerSurfaceMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServiceBell/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServiceBell/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServiceBell/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServiceBell/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServiceBell/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ServiceBell/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ServiceBell\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Settings/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Settings\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsChat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsChat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsChat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsChat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsChat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsCogMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsCogMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsCogMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SettingsCogMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SettingsCogMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeExclude/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeExclude/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeExclude/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeExclude/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeExclude/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeExclude/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeExclude\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeIntersect/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeIntersect/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeIntersect/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeIntersect/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeIntersect/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeIntersect/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeIntersect\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shapes/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shapes\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeSubtract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeSubtract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeSubtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeSubtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeSubtract/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeSubtract/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeSubtract\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeUnion/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeUnion/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeUnion/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeUnion/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeUnion/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShapeUnion/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShapeUnion\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Share/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Share\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareAndroid/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareAndroid/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareAndroid/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareAndroid/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareAndroid\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareCloseTray/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareCloseTray/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareCloseTray/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareCloseTray/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareCloseTray\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareiOS/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareiOS\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPerson/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPerson\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlay/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlay\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonOverlayInside/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonOverlayInside\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenPersonP/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenPersonP\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStart/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStart\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShareScreenStop/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShareScreenStop\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shield/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shield\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldBadge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldBadge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldBadge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldBadge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldBadge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldCheckmark/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldCheckmark\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismissShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismissShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismissShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismissShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldDismissShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldDismissShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldGlobe/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldGlobe/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldGlobe/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldGlobe/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldGlobe/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldGlobe/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldGlobe\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldKeyhole/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldKeyhole/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldKeyhole/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldKeyhole/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldKeyhole/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldKeyhole/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldKeyhole\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldLock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldLock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPersonAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldPersonAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPersonAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPersonAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldPersonAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldPersonAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldQuestion/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldQuestion\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShieldTask/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShieldTask\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts30Minutes/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts30Minutes/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts30Minutes/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shifts30Minutes/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shifts30Minutes\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsActivity/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsActivity/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsActivity/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsActivity/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsActivity/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsActivity/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsActivity\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAvailability/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAvailability/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAvailability/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsAvailability/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsAvailability\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsDay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsDay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsDay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsDay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsDay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsOpen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsOpen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsOpen/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsOpen/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsOpen\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsQuestionMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsQuestionMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsQuestionMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsTeam/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsTeam/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsTeam/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShiftsTeam/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShiftsTeam\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBag/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBag/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPause/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPause/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPause/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPause/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPause\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPercent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPercent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPercent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPercent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPercent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPlay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagPlay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagPlay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagTag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagTag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagTag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ShoppingBagTag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ShoppingBagTag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shortpick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shortpick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shortpick/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Shortpick/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Shortpick\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Showerhead/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Showerhead/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Showerhead/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Showerhead/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Showerhead/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Showerhead/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Showerhead\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SidebarSearchLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SidebarSearchLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SidebarSearchRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SidebarSearchRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SidebarSearchRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Signature/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Signature\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SignOut/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SignOut/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SignOut/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SignOut/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SignOut\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SIM/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SIM/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SIM/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SIM/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SIM/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SIM/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SIM\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipBack10/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipBack10\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward10/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward10\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForward30/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForward30\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForwardTab/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForwardTab/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForwardTab/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SkipForwardTab/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SkipForwardTab\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlashForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlashForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sleep/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sleep/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sleep/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sleep/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sleep\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideAdd/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideAdd\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideContent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideContent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideContent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideContent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideContent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideContent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideEraser/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideEraser/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideEraser/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideEraser/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideEraser/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideEraser/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideEraser\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideGrid/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideGrid/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideGrid/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideGrid/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideGrid\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideHide/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideHide/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideHide/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideHide/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideHide\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLayout/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLayout/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLayout/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLayout/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLayout\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMicrophone/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMicrophone/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMicrophone/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMicrophone/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMicrophone/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMicrophone/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMicrophone\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideMultipleSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideMultipleSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideRecord/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideRecord\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSearch/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSearch/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSearch\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideSize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideSize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideText/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideText\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextPerson/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextPerson\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTextSparkle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTextSparkle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTransition/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTransition/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTransition/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SlideTransition/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SlideTransition\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Smartwatch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Smartwatch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Smartwatch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Smartwatch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Smartwatch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SmartwatchDot/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SmartwatchDot/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SmartwatchDot/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SmartwatchDot/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SmartwatchDot\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Snooze/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Snooze/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Snooze/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Snooze/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Snooze/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Snooze/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Snooze\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundSource/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundSource/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundSource/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundSource/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundSource/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundSource/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundSource\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundWaveCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundWaveCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundWaveCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SoundWaveCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SoundWaveCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Space3D/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Space3D\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Spacebar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Spacebar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Spacebar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Spacebar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Spacebar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sparkle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sparkle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SparkleCircle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SparkleCircle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker0/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker0\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker1/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker1\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Speaker2/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Speaker2\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerBluetooth/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerBluetooth/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerBluetooth/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerBluetooth/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerBluetooth/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerBluetooth/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerBluetooth\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerMute/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerMute\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerSettings/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerSettings/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerSettings\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerUSB/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerUSB/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerUSB/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerUSB/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerUSB/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpeakerUSB/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpeakerUSB\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpinneriOS\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpinneriOS/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpinneriOS\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpinneriOS\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SpinneriOS/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SpinneriOS\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitHorizontal/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitHorizontal\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SplitVertical/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SplitVertical\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sport/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sport/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sport/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sport/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sport/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sport/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sport\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportAmericanFootball/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportAmericanFootball/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportAmericanFootball/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportAmericanFootball/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportAmericanFootball\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBaseball/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBaseball/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBaseball/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBaseball/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBaseball\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBasketball/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBasketball/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBasketball/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportBasketball/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportBasketball\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportHockey/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportHockey/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportHockey/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportHockey/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportHockey\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportSoccer/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportSoccer/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportSoccer/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportSoccer/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportSoccer/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SportSoccer/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SportSoccer\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SprayCan\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SprayCan/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SprayCan\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SprayCan\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SprayCan/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SprayCan\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Square/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Square\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareArrowForward/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareArrowForward\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareEraser\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareEraser/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareEraser\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareEraser\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareEraser/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareEraser\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHint/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHint\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintApps/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintApps/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintApps/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintApps/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintApps\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareHintSparkles/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareHintSparkles\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareMultiple/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareMultiple\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareShadow/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareShadow/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareShadow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquareShadow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquareShadow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquaresNested\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquaresNested/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquaresNested\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquaresNested\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SquaresNested/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SquaresNested\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stack/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stack\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackArrowForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackArrowForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackArrowForward/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackArrowForward/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackArrowForward\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackStar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackStar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StackVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StackVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Star/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Star\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowBack/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowBack/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowBack\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightEnd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightEnd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightEnd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightEnd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightEnd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightStart/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightStart/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightStart/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarArrowRightStart/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarArrowRightStart\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEmphasis/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEmphasis/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEmphasis/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEmphasis/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEmphasis/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarEmphasis/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarEmphasis\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarHalf/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarHalf\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarLineHorizontal3/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarLineHorizontal3/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarLineHorizontal3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarLineHorizontal3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarLineHorizontal3/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarLineHorizontal3/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarLineHorizontal3\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarOneQuarter/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarOneQuarter\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StarThreeQuarter/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StarThreeQuarter\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Status/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Status\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Step\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Step/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Step\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Step\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Step/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Step\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Steps/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Steps/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Steps/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Steps/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Steps/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Steps/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Steps\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stethoscope/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stethoscope/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stethoscope/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stethoscope/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stethoscope\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sticker/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sticker/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sticker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sticker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sticker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Sticker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Sticker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StickerAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StickerAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StickerAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StickerAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StickerAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Storage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Storage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Storage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Storage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Storage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StoreMicrosoft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StoreMicrosoft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StoreMicrosoft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StoreMicrosoft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StoreMicrosoft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StoreMicrosoft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StoreMicrosoft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stream/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stream/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stream/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stream/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stream/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Stream/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Stream\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInput\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StreamInput/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInput\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInput\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StreamInput/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInput\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInputOutput\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StreamInputOutput/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInputOutput\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInputOutput\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StreamInputOutput/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamInputOutput\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamOutput\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StreamOutput/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamOutput\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamOutput\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StreamOutput/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StreamOutput\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StyleGuide/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StyleGuide/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StyleGuide/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/StyleGuide/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\StyleGuide\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubGrid/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubGrid/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubGrid/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubGrid/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubGrid\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtitles/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtitles/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtitles/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtitles/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtitles/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtitles/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtitles\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Subtract/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Subtract\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractCircleArrowForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractCircleArrowForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquare/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquare/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquareMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquareMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquareMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SubtractSquareMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SubtractSquareMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceEarbuds/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceEarbuds/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceEarbuds/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceEarbuds/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceEarbuds\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceHub/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceHub/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceHub/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SurfaceHub/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SurfaceHub\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwimmingPool/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwimmingPool\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeDown/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeDown/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeDown\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SwipeUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SwipeUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Symbols/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Symbols/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Symbols/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Symbols/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Symbols/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Symbols/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Symbols\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SyncOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SyncOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SyncOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/SyncOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\SyncOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Syringe/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Syringe/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Syringe/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Syringe/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Syringe\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/System/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/System/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/System/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/System/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\System\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tab/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tab\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktop/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktop/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowClockwise/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowClockwise/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowClockwise/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowClockwise/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowClockwise/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowClockwise/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowClockwise\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopCopy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopCopy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopCopy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopCopy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopCopy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopCopy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopImage/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopImage/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopImage/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopImage/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopImage\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopMultipleBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopMultipleBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopMultipleBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopMultipleBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopMultipleBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopNewPage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopNewPage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopNewPage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopNewPage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabDesktopNewPage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabDesktopNewPage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivate/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivate\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivateAccount/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivateAccount/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivateAccount/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabInPrivateAccount/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabInPrivateAccount\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Table/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Table\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableAdd/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableAdd\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableBottomRow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableBottomRow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCalculator/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCalculator/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCalculator/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCalculator/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCalculator\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellEdit/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellEdit\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsMerge/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsMerge\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCellsSplit/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCellsSplit\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableChecker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableChecker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableChecker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableChecker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableChecker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableChecker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableColumnTopBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableColumnTopBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableColumnTopBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableColumnTopBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableColumnTopBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCopy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCopy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCopy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCopy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableCopy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableCopy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDefault\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDefault/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDefault\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDefault\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDefault/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDefault\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteColumn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteColumn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDeleteRow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDeleteRow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableDismiss/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableDismiss\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableEdit/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableEdit\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempLTR/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempLTR\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnAndRowTempRTL/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnAndRowTempRTL\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempLTR/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempLTR\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeColumnTempRTL/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeColumnTempRTL\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableFreezeRow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableFreezeRow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableImage\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableImage/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableImage\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableImage\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableImage/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableImage\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertColumn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertColumn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableInsertRow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableInsertRow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLightning/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLightning\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLink/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLink\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableLock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableLock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveAbove/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveAbove\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveBelow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveBelow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMoveRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMoveRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffset/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffset/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffset/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffset/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffset\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetLessThanOrEqualTo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetLessThanOrEqualTo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetLessThanOrEqualTo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetLessThanOrEqualTo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetLessThanOrEqualTo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableOffsetSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableOffsetSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeColumn/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeColumn\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableResizeRow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableResizeRow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSettings/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSettings\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimple/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimple\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleCheckmark/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleCheckmark\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleExclude/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleExclude\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleInclude/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleInclude\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSimpleMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSimpleMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSplit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSplit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSplit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSplit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSplit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSplit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackAbove/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackAbove\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackBelow/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackBelow\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableStackRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableStackRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TableSwitch/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TableSwitch\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tablet/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tablet\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletLaptop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabletLaptop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletLaptop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletLaptop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabletLaptop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletLaptop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabletSpeaker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabletSpeaker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabletSpeaker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabletSpeaker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabletSpeaker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tabs/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tabs/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tabs/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tabs/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tabs/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tabs/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tabs\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabShieldDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabShieldDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabShieldDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TabShieldDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TabShieldDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tag/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tag\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagCircle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagCircle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagCircle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagCircle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagCircle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagCircle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagDismiss/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagDismiss/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagError/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagError/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLockAccent/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLockAccent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLockAccent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagLockAccent/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagLockAccent\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagQuestionMark/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagQuestionMark\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagReset/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagReset/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagReset/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagReset/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagReset\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagSearch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TagSearch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TagSearch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapDouble/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapDouble\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TapSingle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TapSingle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Target/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Target\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetArrow/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetArrow/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetArrow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetArrow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetArrow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetArrow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetArrow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TargetEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TargetEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareDatabase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareDatabase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareDatabase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareDatabase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareDatabase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareDatabase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquarePerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquarePerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquarePerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquarePerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquarePerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquarePerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TaskListSquareSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TaskListSquareSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TasksApp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TasksApp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TasksApp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TasksApp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TasksApp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TasksApp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TasksApp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Teddy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Teddy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Teddy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Teddy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Teddy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Temperature/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Temperature\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Tent/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Tent\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TetrisApp/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TetrisApp\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Text/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Text/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Text/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Text/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Text/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Text/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Text\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAbcUnderlineDouble\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAbcUnderlineDouble/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAbcUnderlineDouble\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAbcUnderlineDouble\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAbcUnderlineDouble/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAbcUnderlineDouble\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceAfter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceAfter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceAfter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceAfter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceAfter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceBefore/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceBefore/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceBefore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddSpaceBefore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddSpaceBefore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddT/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddT/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddT/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAddT/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAddT\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenter/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenter/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate270/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate270/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate90/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate90/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignCenterRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignCenterRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedEvenly/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedEvenly/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedEvenly/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedEvenly/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedEvenly\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignDistributedVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignDistributedVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustify/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustify/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustify/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustify/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustify\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLow90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLow90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyLowRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyLowRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignJustifyRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignJustifyRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate270/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate270/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate90/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate90/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignLeftTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignLeftTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate270/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate270/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate90/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate90/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAlignRightRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAlignRightRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAsterisk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAsterisk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAsterisk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAsterisk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextAsterisk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextAsterisk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBaseline\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBaseline/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBaseline\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBaseline\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBaseline/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBaseline\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/bg/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/bg/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/bg/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/bg/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/bg/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/bg/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\bg\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ca/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ca/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ca/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ca/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ca/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ca/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ca\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/da/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/da/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/da/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/da/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/da/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/da/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\da\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/de/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/de/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/de/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/de/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/de/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/de/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\de\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/es/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/es/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/es/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/es/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/es/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/es/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\es\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/et/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/et/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/et/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/et/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/et/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/et/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\et\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/fr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/fr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/fr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/fr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/fr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/fr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\fr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/gl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/gl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/gl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/gl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/gl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/gl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\gl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/hu/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/hu/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/hu/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/hu/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/hu/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/hu/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\hu\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/it/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/it/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/it/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/it/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/it/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/it/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\it\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/kk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/kk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/kk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/kk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/kk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/kk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\kk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lt/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lt/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lt/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lt/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lt/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lt/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lt\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lv/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lv/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lv/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lv/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lv/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/lv/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\lv\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ms/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ms/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ms/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ms/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ms/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ms/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ms\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/no/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/no/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/no/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/no/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/no/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/no/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\no\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/pt/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/pt/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/pt/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/pt/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/pt/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/pt/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\pt\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ru/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ru/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ru/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ru/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ru/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/ru/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\ru\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-cyrl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-cyrl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-cyrl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-cyrl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-cyrl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-cyrl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-cyrl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-latn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-latn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-latn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-latn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-latn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sr-latn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sr-latn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sv/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sv/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sv/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sv/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sv/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/sv/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\sv\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/tr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/tr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/tr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/tr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/tr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/tr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\tr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/uk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/uk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/uk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/uk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/uk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBold/uk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBold\\uk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBox/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBox/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottomRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottomRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottomRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignBottomRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignBottomRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignCenter/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignCenter/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignCenter/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignCenter/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignCenter\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddleRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddleRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddleRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignMiddleRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignMiddleRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTopRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTopRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTopRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxAlignTopRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxAlignTopRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxMore/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxMore/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxMore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxMore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxMore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBoxSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBoxSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTR90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTR90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTRRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTRRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTRRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListLTRRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListLTRRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTL90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTL90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTLRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTLRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTLRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTLRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListRTLRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListRTLRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquare/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquare\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareEdit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareEdit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareEdit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquarePerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquarePerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquarePerson/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquarePerson/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquarePerson\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSearch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSearch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSearch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSearch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSearch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSearch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareWarning/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareWarning/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareWarning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListSquareWarning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListSquareWarning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListTree/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListTree/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListTree/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListTree/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListTree/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextBulletListTree/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextBulletListTree\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseLowercase/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseLowercase/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseLowercase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseLowercase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseLowercase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseLowercase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseLowercase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseTitle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseTitle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseTitle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseTitle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseTitle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseTitle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseTitle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseUppercase/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseUppercase/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseUppercase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseUppercase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseUppercase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCaseUppercase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCaseUppercase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextChangeCase/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextChangeCase/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextChangeCase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextChangeCase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextChangeCase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextChangeCase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextChangeCase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextClearFormatting/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextClearFormatting\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCollapse/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCollapse/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCollapse/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextCollapse/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextCollapse\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColor/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColor\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColorAccent\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColorAccent/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColorAccent\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColorAccent\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColorAccent/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColorAccent\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColorAccent\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColorAccent/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColorAccent\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOne/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOne/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOne/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOne/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOne\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneNarrow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneNarrow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneNarrow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneNarrow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneNarrow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneSemiNarrow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneSemiNarrow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneSemiNarrow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneSemiNarrow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneSemiNarrow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWide/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWide/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWide/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWide/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWide\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWideLightning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWideLightning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWideLightning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnOneWideLightning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnOneWideLightning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnThree/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnThree/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnThree/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnThree/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnThree\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextColumnTwoRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextColumnTwoRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextContinuous/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextContinuous/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextContinuous/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextContinuous/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextContinuous\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDensity/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDensity\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescription/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescription/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescription/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescription/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescription\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDescriptionRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDescriptionRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLeft/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLeft\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalLTR/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalLTR\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRight/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRight\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionHorizontalRTL/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionHorizontalRTL\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate270Right/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate270Right\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Left/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Left\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90LTR/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90LTR\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90Right/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90Right\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionRotate90RTL/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionRotate90RTL\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextDirectionVertical/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextDirectionVertical\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEditStyle/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEditStyle\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextEffects/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextEffects\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextExpand/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextExpand/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextExpand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextExpand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextExpand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextExpand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextExpand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextField/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextField/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextField/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextField/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextField/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextField/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextField\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLine/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLine/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLine/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLine/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLine\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFirstLineTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFirstLineTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFont/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFont/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFont/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFont/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFont/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFont/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFont\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontInfo/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontInfo/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontInfo/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontInfo/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontInfo/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontInfo/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontInfo\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontSize/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontSize/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontSize/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontSize/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontSize/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFontSize/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFontSize\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextFootnote/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextFootnote\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowLeftTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowLeftTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarArrowRightTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarArrowRightTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarCheckmark/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarCheckmark/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarCheckmark/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarCheckmark/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarCheckmark\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarDismiss/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarDismiss/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarDismiss/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarDismiss/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarDismiss\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarSettings/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarSettings/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarSettings\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarWand/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarWand/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarWand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarWand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarWand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextGrammarWand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextGrammarWand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHanging/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHanging/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHanging/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHanging/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHanging\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHangingTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHangingTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader3/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextHeader3/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextHeader3\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTR90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTR90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTRRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTRRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTRRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseLTRRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseLTRRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTL90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTL90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTLRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTLRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTLRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentDecreaseRTLRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentDecreaseRTLRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTR90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTR90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTRRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTRRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTRRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseLTRRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseLTRRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTL90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTL90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTLRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTLRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTLRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextIndentIncreaseRTLRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextIndentIncreaseRTLRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/bg/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/bg/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/bg/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/bg/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/bg/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/bg/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\bg\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ca/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ca/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ca/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ca/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ca/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ca/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ca\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/da/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/da/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/da/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/da/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/da/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/da/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\da\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/de/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/de/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/de/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/de/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/de/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/de/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\de\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/es/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/es/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/es/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/es/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/es/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/es/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\es\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/et/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/et/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/et/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/et/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/et/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/et/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\et\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/eu/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/eu/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/eu/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/eu/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/eu/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/eu/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\eu\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/gl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/gl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/gl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/gl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/gl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/gl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\gl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/hu/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/hu/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/hu/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/hu/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/hu/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/hu/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\hu\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/it/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/it/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/it/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/it/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/it/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/it/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\it\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/kk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/kk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/kk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/kk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/kk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/kk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\kk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lt/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lt/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lt/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lt/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lt/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lt/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lt\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lv/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lv/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lv/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lv/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lv/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/lv/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\lv\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/no/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/no/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/no/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/no/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/no/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/no/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\no\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ru/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ru/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ru/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ru/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ru/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/ru/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\ru\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sv/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sv/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sv/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sv/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sv/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/sv/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\sv\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/tr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/tr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/tr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/tr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/tr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/tr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\tr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/uk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/uk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/uk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/uk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/uk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextItalic/uk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextItalic\\uk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextLineSpacing/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextLineSpacing/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextLineSpacing/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextLineSpacing/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextLineSpacing\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextMore/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextMore\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberFormat/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberFormat\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTR90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTR90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTRRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTRRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTRRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListLTRRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListLTRRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/LTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/LTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/LTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/LTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\LTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/RTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/RTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/RTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate270/RTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate270\\RTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/LTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/LTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/LTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/LTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\LTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/RTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/RTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/RTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRotate90/RTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRotate90\\RTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL90/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL90/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL90/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTL90/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTL90\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTLRotate270/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTLRotate270/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTLRotate270/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextNumberListRTLRotate270/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextNumberListRTLRotate270\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ja/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ja/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ja/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ja/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ja/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ja/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ja\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/zh/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/zh/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/zh/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/zh/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/zh/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraph/zh/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraph\\zh\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirection/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirection/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirection/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirection/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirection\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphDirectionRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphDirectionRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextParagraphTempRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextParagraphTempRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPeriodAsterisk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPeriodAsterisk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPeriodAsterisk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPeriodAsterisk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPeriodAsterisk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPeriodAsterisk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionBehind/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionBehind/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionBehind/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionBehind/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionBehind\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionFront/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionFront/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionFront/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionFront/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionFront\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionLine/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionLine/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionLine/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionLine/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionLine\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquare/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquare/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquare/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquare/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquare\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionSquareRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionSquareRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionThrough/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionThrough/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionThrough/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionThrough/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionThrough\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTopBottom/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTopBottom/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTopBottom/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextPositionTopBottom/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextPositionTopBottom\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/zh/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/zh/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/zh/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextProofingTools/zh/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextProofingTools\\zh\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextQuote/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextQuote/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextQuote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextQuote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextQuote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextQuote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextQuote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/bg/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/bg/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/bg/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/bg/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/bg/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/bg/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\bg\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/da/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/da/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/da/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/da/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/da/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/da/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\da\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/fi/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/fi/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/fi/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/fi/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/fi/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/fi/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\fi\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/gr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/gr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/gr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/gr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/gr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/gr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\gr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/kk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/kk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/kk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/kk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/kk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/kk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\kk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ru/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ru/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ru/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ru/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ru/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/ru/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\ru\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/se/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/se/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/se/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/se/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/se/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/se/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\se\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortAscending/sr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortAscending\\sr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/bg/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/bg/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/bg/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/bg/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/bg/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/bg/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\bg\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/da/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/da/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/da/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/da/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/da/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/da/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\da\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/fi/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/fi/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/fi/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/fi/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/fi/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/fi/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\fi\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/gr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/gr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/gr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/gr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/gr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/gr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\gr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/kk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/kk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/kk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/kk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/kk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/kk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\kk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ru/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ru/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ru/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ru/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ru/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/ru/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\ru\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/se/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/se/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/se/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/se/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/se/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/se/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\se\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSortDescending/sr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSortDescending\\sr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextStrikethrough/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextStrikethrough\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSubscript/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSubscript/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSubscript/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSubscript/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSubscript/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSubscript/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSubscript\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSuperscript/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSuperscript/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSuperscript/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSuperscript/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSuperscript/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextSuperscript/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextSuperscript\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextT/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextT\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextTTag\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextTTag/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextTTag\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextTTag\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextTTag/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextTTag\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/bg/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/bg/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/bg/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/bg/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/bg/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/bg/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\bg\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ca/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ca/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ca/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ca/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ca/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ca/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ca\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/en/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/en/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/en/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/en/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/en/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/en/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\en\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/es/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/es/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/es/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/es/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/es/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/es/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\es\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/et/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/et/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/et/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/et/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/et/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/et/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\et\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/eu/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/eu/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/eu/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/eu/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/eu/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/eu/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\eu\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/fr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/fr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/fr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/fr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/fr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/fr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\fr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/gl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/gl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/gl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/gl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/gl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/gl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\gl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/hu/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/hu/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/hu/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/hu/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/hu/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/hu/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\hu\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/it/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/it/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/it/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/it/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/it/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/it/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\it\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/kk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/kk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/kk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/kk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/kk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/kk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\kk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ko/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ko/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ko/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ko/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ko/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ko/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ko\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lt/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lt/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lt/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lt/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lt/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lt/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lt\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lv/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lv/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lv/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lv/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lv/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/lv/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\lv\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/pt/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/pt/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/pt/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/pt/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/pt/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/pt/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\pt\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ru/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ru/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ru/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ru/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ru/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/ru/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\ru\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sl/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sl/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sl/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sl/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sl/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sl/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sl\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/sr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\sr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/tr/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/tr/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/tr/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/tr/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/tr/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/tr/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\tr\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/uk/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/uk/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/uk/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/uk/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/uk/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderline/uk/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderline\\uk\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineCharacterU/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineCharacterU/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineCharacterU/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineCharacterU/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineCharacterU/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineCharacterU/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineCharacterU\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineDouble/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineDouble/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineDouble/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextUnderlineDouble/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextUnderlineDouble\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWholeWord\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWholeWord/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWholeWord\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWholeWord\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWholeWord/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWholeWord\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWordCount/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWordCount/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWordCount/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWordCount/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWordCount\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrap/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrap/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrap/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrap/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrap\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrapOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrapOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrapOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrapOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrapOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TextWrapOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TextWrapOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Thinking/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Thinking/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Thinking/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Thinking/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Thinking\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbDislike/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbDislike/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbDislike/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbDislike/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbDislike/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbDislike/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbDislike\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ThumbLike/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ThumbLike\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketDiagonal/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketDiagonal\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TicketHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TicketHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimeAndWeather/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimeAndWeather/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimeAndWeather/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimeAndWeather/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimeAndWeather\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timeline/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timeline/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timeline/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timeline/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timeline\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimePicker/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimePicker/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimePicker/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimePicker/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimePicker\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer10/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer10/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer10/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer10/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer10\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer3/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Timer3/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Timer3\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimerOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimerOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimerOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TimerOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TimerOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ToggleRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ToggleRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Toolbox/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Toolbox\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TooltipQuote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TooltipQuote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TooltipQuote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TooltipQuote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TooltipQuote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TopSpeed/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TopSpeed/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TopSpeed/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TopSpeed/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TopSpeed\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Translate/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Translate/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Translate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Translate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Translate/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Translate/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Translate\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateAuto/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateAuto/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateAuto/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateAuto/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateAuto/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateAuto/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateAuto\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TranslateOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TranslateOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Transmission/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Transmission/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Transmission/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Transmission/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Transmission\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemRemove/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemRemove/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemRemove/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrayItemRemove/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrayItemRemove\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeDeciduous/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeDeciduous/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeDeciduous/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeDeciduous/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeDeciduous/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeDeciduous/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeDeciduous\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeEvergreen\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeEvergreen/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeEvergreen\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeEvergreen\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TreeEvergreen/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TreeEvergreen\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Triangle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Triangle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleDown/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleDown\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleLeft/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleLeft\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TriangleRight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TriangleRight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Trophy/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Trophy\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyLock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyLock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TrophyOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TrophyOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TV/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TV\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVArrowRight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVArrowRight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVArrowRight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVArrowRight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVArrowRight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVArrowRight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/TVUSB/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\TVUSB\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Umbrella/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Umbrella/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Umbrella/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Umbrella/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Umbrella\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UninstallApp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UninstallApp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UninstallApp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UninstallApp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UninstallApp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/USBPlug/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/USBPlug/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/USBPlug/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/USBPlug/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\USBPlug\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UsbStick/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UsbStick/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UsbStick/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/UsbStick/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\UsbStick\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vault/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vault/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vault/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vault/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vault/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vault/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vault\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBicycle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBicycle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBicycle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBicycle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBicycle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBicycle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBicycle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBus/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBus/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBus/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBus/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBus/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleBus/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleBus\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCab/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCab\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCableCar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCableCar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCableCar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCableCar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCableCar/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCableCar/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCableCar\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCar/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCar\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarCollision/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarCollision\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarParking/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarParking\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTR/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTR/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTR/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTR/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTR/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTR/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTR\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTRClock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTRClock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTRClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTRClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTRClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileLTRClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileLTRClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileRTL/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileRTL/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileRTL/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileRTL/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileRTL/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleCarProfileRTL/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleCarProfileRTL\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleShip/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleShip/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleShip/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleShip/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleShip/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleShip/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleShip\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleSubway/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleSubway/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleSubway/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleSubway/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleSubway/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleSubway/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleSubway\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruck/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruck/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruck/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruck/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruck/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruck/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruck\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckBag/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckBag/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckBag/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckBag/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckBag\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckCube/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckCube/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckCube/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckCube/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckCube\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckProfile/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckProfile/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckProfile/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckProfile/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckProfile/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VehicleTruckProfile/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VehicleTruckProfile\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video360/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video360/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video360/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video360/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360Off\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video360Off/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360Off\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360Off\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Video360Off/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Video360Off\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoAdd/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoAdd/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoAdd\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffect/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffect\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoBackgroundEffectHorizontal/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoBackgroundEffectHorizontal\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoChat/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoChat\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClip/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClip\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipMultiple/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipMultiple/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipMultiple\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoClipOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoClipOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPeople\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPeople/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPeople\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPeople\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPeople/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPeople\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPerson/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPerson\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonCall/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonCall\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonClock/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonClock\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonSparkle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonSparkle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStar/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStar/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStar/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStar/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStar\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStarOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStarOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStarOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPersonStarOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPersonStarOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPlayPause/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPlayPause/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPlayPause/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoPlayPause/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoPlayPause\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoProhibited/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoProhibited\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoRecording\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoRecording/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoRecording\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoRecording\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoRecording/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoRecording\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSecurity/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSecurity/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSecurity/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSecurity/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSecurity\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSwitch/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSwitch/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSwitch/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSwitch/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSwitch\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSync\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSync/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSync\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSync\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VideoSync/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VideoSync\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktop/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktop/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktop/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktop/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktop\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktopMobile/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktopMobile/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktopMobile/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ViewDesktopMobile/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ViewDesktopMobile\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetwork\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VirtualNetwork/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetwork\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetwork\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VirtualNetwork/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetwork\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetworkToolbox\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VirtualNetworkToolbox/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetworkToolbox\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetworkToolbox\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VirtualNetworkToolbox/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VirtualNetworkToolbox\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Voicemail/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Voicemail\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowBack/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowBack/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowBack/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowBack/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowBack\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowForward/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowForward/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowForward/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowForward/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowForward\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowSubtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowSubtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowSubtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowSubtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailArrowSubtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailArrowSubtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailSubtract/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailSubtract/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailSubtract/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/VoicemailSubtract/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\VoicemailSubtract\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vote/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vote/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vote/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Vote/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Vote\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalkieTalkie/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalkieTalkie/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalkieTalkie/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalkieTalkie/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalkieTalkie/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalkieTalkie/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalkieTalkie\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallet/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallet\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WalletCreditCard/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WalletCreditCard\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallpaper/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallpaper/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallpaper/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wallpaper/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wallpaper\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wand/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wand\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\12_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/12_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\12_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\12_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/12_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\12_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Warning/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Warning\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WarningShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WarningShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WarningShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WarningShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WarningShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WarningShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Washer/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Washer\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Water/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Water\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherBlowingSnow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherBlowingSnow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherBlowingSnow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherBlowingSnow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherBlowingSnow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherBlowingSnow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherBlowingSnow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherCloudy/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherCloudy/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherCloudy/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherCloudy/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherCloudy/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherCloudy/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherCloudy\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDrizzle/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDrizzle/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDrizzle/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDrizzle/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDrizzle/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDrizzle/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDrizzle\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDuststorm/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDuststorm/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDuststorm/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDuststorm/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDuststorm/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherDuststorm/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherDuststorm\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherFog/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherFog/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherFog/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherFog/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherFog/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherFog/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherFog\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailDay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailDay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailDay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailDay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailDay/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailDay/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailDay\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailNight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailNight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailNight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailNight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailNight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHailNight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHailNight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHaze/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHaze/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHaze/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHaze/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHaze/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherHaze/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherHaze\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoon/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoon\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherMoonOff/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherMoonOff\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyDay/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyDay\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyNight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyNight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyNight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyNight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyNight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherPartlyCloudyNight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherPartlyCloudyNight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRain/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRain/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRain/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRain/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRain/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRain/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRain\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersDay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersDay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersDay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersDay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersDay/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersDay/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersDay\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersNight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersNight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersNight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersNight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersNight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainShowersNight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainShowersNight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainSnow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainSnow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainSnow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainSnow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainSnow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherRainSnow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherRainSnow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowflake/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowflake\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerDay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerDay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerDay/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerDay/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerDay/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerDay/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerDay\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerNight/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerNight/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerNight/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerNight/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerNight/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSnowShowerNight/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSnowShowerNight\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSqualls/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSqualls/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSqualls/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSqualls/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSqualls/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSqualls/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSqualls\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunny/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunny\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyHigh/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyHigh/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyHigh/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyHigh/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyHigh/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyHigh/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyHigh\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyLow/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyLow/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyLow/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyLow/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyLow/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherSunnyLow/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherSunnyLow\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherThunderstorm/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherThunderstorm/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherThunderstorm/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherThunderstorm/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherThunderstorm/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WeatherThunderstorm/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WeatherThunderstorm\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WebAsset/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WebAsset/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WebAsset/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WebAsset/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WebAsset/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WebAsset/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WebAsset\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Whiteboard/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Whiteboard/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Whiteboard/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Whiteboard/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Whiteboard/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Whiteboard/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Whiteboard\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi1/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi1/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi1/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi1/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi1\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi2/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi2/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi2/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi2/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi2\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi3/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi3/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi3/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi3/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi3\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi4/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi4/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi4/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFi4/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFi4\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiLock/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiLock/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiLock/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiLock/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiLock\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiOff/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiOff/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiOff\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiWarning/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiWarning/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiWarning/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WiFiWarning/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WiFiWarning\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Window/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Window\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowAd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowAd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowAdOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowAdOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdPerson\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowAdPerson/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdPerson\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdPerson\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowAdPerson/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowAdPerson\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowApps/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowApps\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowArrowUp/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowArrowUp/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowArrowUp/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowArrowUp/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowArrowUp/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowArrowUp/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowArrowUp\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletList\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowBulletList/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletList\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletList\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowBulletList/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletList\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletListAdd\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowBulletListAdd/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletListAdd\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletListAdd\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowBulletListAdd/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowBulletListAdd\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowConsole\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowConsole/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowConsole\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowConsole\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowConsole/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowConsole\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDatabase/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDatabase/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDatabase/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDatabase/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDatabase\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevTools/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevTools/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevTools/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevTools/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevTools/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowDevTools/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowDevTools\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowEdit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowEdit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowEdit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowEdit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowEdit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontal\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowHeaderHorizontal/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontal\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontal\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowHeaderHorizontal/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontal\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontalOff\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowHeaderHorizontalOff/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontalOff\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontalOff\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowHeaderHorizontalOff/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderHorizontalOff\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderVertical\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowHeaderVertical/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderVertical\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderVertical\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowHeaderVertical/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowHeaderVertical\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivate\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowInPrivate/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivate\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivate\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowInPrivate/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivate\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivateAccount\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowInPrivateAccount/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivateAccount\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivateAccount\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowInPrivateAccount/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowInPrivateAccount\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowLocationTarget\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowLocationTarget/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowLocationTarget\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowLocationTarget\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowLocationTarget/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowLocationTarget\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowMultiple/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowMultiple/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowMultiple/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowMultiple/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultiple\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultipleSwap\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowMultipleSwap/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultipleSwap\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultipleSwap\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowMultipleSwap/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowMultipleSwap\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowNew/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowNew/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowNew/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowNew/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowNew/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowNew/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowNew\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowPlay\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowPlay/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowPlay\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowPlay\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowPlay/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowPlay\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowSettings\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowSettings/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowSettings\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowSettings\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowSettings/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowSettings\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowShield/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowShield/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowShield/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowShield/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowShield/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowShield/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowShield\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowText\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowText/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowText\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowText\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowText/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowText\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WindowWrench/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WindowWrench\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wrench/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wrench/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wrench/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wrench/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wrench/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Wrench/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Wrench\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WrenchScrewdriver/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WrenchScrewdriver/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WrenchScrewdriver/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/WrenchScrewdriver/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\WrenchScrewdriver\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxConsole/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxConsole/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxConsole/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxConsole/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxConsole\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\28_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/28_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\28_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\28_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/28_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\28_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxController/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxController\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\32_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/32_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\32_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\32_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/32_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\32_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\48_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/48_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\48_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\48_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/XboxControllerError/48_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\XboxControllerError\\48_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Xray/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Xray/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Xray/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/Xray/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\Xray\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomFit/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomFit/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomFit/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomFit/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomFit/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomFit/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomFit\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomIn/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomIn/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomIn/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomIn/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomIn/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomIn/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomIn\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\16_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomOut/16_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\16_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\16_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomOut/16_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\16_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\20_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomOut/20_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\20_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\20_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomOut/20_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\20_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\24_f.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomOut/24_f.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\24_f.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\24_r.svg", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "icons/ZoomOut/24_r.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\icons\\ZoomOut\\24_r.svg" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\js\\CacheStorageAccessor.js", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "js/CacheStorageAccessor.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\js\\CacheStorageAccessor.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\js\\web-components.js", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "js/web-components.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\js\\web-components.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\js\\web-components.min.js", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "js/web-components.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\js\\web-components.min.js" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Microsoft.Fast.Components.FluentUI.bundle.scp.css", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "Microsoft.Fast.Components.FluentUI.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Microsoft.Fast.Components.FluentUI.bundle.scp.css" + }, + { + "Identity": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Microsoft.Fast.Components.FluentUI.lib.module.js", + "SourceId": "Microsoft.Fast.Components.FluentUI", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\", + "BasePath": "_content/Microsoft.Fast.Components.FluentUI", + "RelativePath": "Microsoft.Fast.Components.FluentUI.lib.module.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "JSModule", + "AssetTraitValue": "JSLibraryModule", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\Microsoft.Fast.Components.FluentUI.lib.module.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AWSSDK.Core.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/AWSSDK.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\awssdk.core\\3.7.100.14\\lib\\netcoreapp3.1\\AWSSDK.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AWSSDK.SecurityToken.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/AWSSDK.SecurityToken.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\lib\\netcoreapp3.1\\AWSSDK.SecurityToken.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.AI.OpenAI.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Azure.AI.OpenAI.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\azure.ai.openai\\1.0.0-beta.5\\lib\\netstandard2.0\\Azure.AI.OpenAI.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.AI.TextAnalytics.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Azure.AI.TextAnalytics.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\azure.ai.textanalytics\\5.2.0\\lib\\netstandard2.0\\Azure.AI.TextAnalytics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.Core.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Azure.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\azure.core\\1.30.0\\lib\\net6.0\\Azure.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AzureOpenAIClient.Http.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/AzureOpenAIClient.Http.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\azureopenaiclient\\1.0.2\\lib\\netstandard2.1\\AzureOpenAIClient.Http.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\blazor.boot.json", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.boot.json", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "manifest", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "obj\\Debug\\net7.0\\blazor.boot.json" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\blazor.webassembly.js", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.webassembly.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "boot", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly\\7.0.5\\build\\net7.0\\blazor.webassembly.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Blazored.Modal.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Blazored.Modal.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\lib\\net6.0\\Blazored.Modal.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\BlazorInputFile.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/BlazorInputFile.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\lib\\netstandard2.1\\BlazorInputFile.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\BouncyCastle.Crypto.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/BouncyCastle.Crypto.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\portable.bouncycastle\\1.8.2\\lib\\netstandard2.0\\BouncyCastle.Crypto.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ChartJSCore.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ChartJSCore.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\chartjscore\\3.10.0\\lib\\netstandard2.0\\ChartJSCore.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\DnsClient.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/DnsClient.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\dnsclient\\1.6.1\\lib\\net5.0\\DnsClient.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\DocumentFormat.OpenXml.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/DocumentFormat.OpenXml.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\open-xml-sdk\\2.9.1\\lib\\netstandard1.3\\DocumentFormat.OpenXml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.7.0.5.9her4wdnhl.js", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.7.0.5.9her4wdnhl.js", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\dotnet.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.timezones.blat", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.timezones.blat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.wasm", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.wasm", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\dotnet.wasm" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Imaging.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GrapeCity.Documents.Imaging.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\grapecity.documents.imaging\\6.1.2\\lib\\netstandard2.0\\GrapeCity.Documents.Imaging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Pdf.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GrapeCity.Documents.Pdf.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\grapecity.documents.pdf\\6.1.2\\lib\\netstandard2.0\\GrapeCity.Documents.Pdf.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GraphSample.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GraphSample.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "obj\\Debug\\net7.0\\GraphSample.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GraphSample.pdb", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GraphSample.pdb", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "symbol", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "obj\\Debug\\net7.0\\GraphSample.pdb" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_CJK.dat", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\icudt_CJK.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_EFIGS.dat", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_no_CJK.dat", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt.dat", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt.dat", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "native", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\icudt.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ja\\GrapeCity.Documents.Imaging.resources.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ja/GrapeCity.Documents.Imaging.resources.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Related", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Imaging.dll", + "AssetTraitName": "Culture", + "AssetTraitValue": "ja", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\grapecity.documents.imaging\\6.1.2\\lib\\netstandard2.0\\ja\\GrapeCity.Documents.Imaging.resources.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ja\\GrapeCity.Documents.Pdf.resources.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ja/GrapeCity.Documents.Pdf.resources.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Related", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Pdf.dll", + "AssetTraitName": "Culture", + "AssetTraitValue": "ja", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\grapecity.documents.pdf\\6.1.2\\lib\\netstandard2.0\\ja\\GrapeCity.Documents.Pdf.resources.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.authorization\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Authorization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Authorization.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Authorization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.authorization\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Components.Authorization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Components.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Components.Forms.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.web\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Components.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Components.WebAssembly.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.metadata\\7.0.5\\lib\\net7.0\\Microsoft.AspNetCore.Metadata.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.WebUtilities.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.WebUtilities.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\lib\\netstandard2.0\\Microsoft.AspNetCore.WebUtilities.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Authentication.WebAssembly.Msal.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Authentication.WebAssembly.Msal.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\lib\\net7.0\\Microsoft.Authentication.WebAssembly.Msal.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Bcl.AsyncInterfaces.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Bcl.AsyncInterfaces.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\lib\\netstandard2.1\\Microsoft.Bcl.AsyncInterfaces.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.CSharp.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\Microsoft.CSharp.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Configuration.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.binder\\7.0.4\\lib\\net7.0\\Microsoft.Extensions.Configuration.Binder.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Configuration.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Configuration.FileExtensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.json\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Configuration.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.DependencyInjection.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.FileProviders.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.FileProviders.Physical.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.FileSystemGlobbing.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Hosting.Abstractions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Hosting.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Hosting.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Http.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Http.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.http\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Http.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Logging.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Logging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Options.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.options\\7.0.1\\lib\\net7.0\\Microsoft.Extensions.Options.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\lib\\net7.0\\Microsoft.Extensions.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Fast.Components.FluentUI.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Fast.Components.FluentUI.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\lib\\net7.0\\Microsoft.Fast.Components.FluentUI.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.Beta.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Graph.Beta.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.graph.beta\\5.32.0-preview\\lib\\netstandard2.1\\Microsoft.Graph.Beta.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.Core.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Graph.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.graph.core\\3.0.6\\lib\\net6.0\\Microsoft.Graph.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Graph.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.graph\\5.9.0\\lib\\netstandard2.1\\Microsoft.Graph.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Abstractions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.29.0\\lib\\net6.0\\Microsoft.IdentityModel.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.JsonWebTokens.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.JsonWebTokens.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.29.0\\lib\\net6.0\\Microsoft.IdentityModel.JsonWebTokens.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Logging.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Logging.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.logging\\6.29.0\\lib\\net6.0\\Microsoft.IdentityModel.Logging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Protocols.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Protocols.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.29.0\\lib\\net6.0\\Microsoft.IdentityModel.Protocols.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.29.0\\lib\\net6.0\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Tokens.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Tokens.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.29.0\\lib\\net6.0\\Microsoft.IdentityModel.Tokens.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.jsinterop\\7.0.5\\lib\\net7.0\\Microsoft.JSInterop.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.jsinterop.webassembly\\7.0.5\\lib\\net7.0\\Microsoft.JSInterop.WebAssembly.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Abstractions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Abstractions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.abstractions\\1.1.1\\lib\\netstandard2.1\\Microsoft.Kiota.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Authentication.Azure.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Authentication.Azure.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.authentication.azure\\1.0.2\\lib\\netstandard2.1\\Microsoft.Kiota.Authentication.Azure.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Http.HttpClientLibrary.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.http.httpclientlibrary\\1.0.2\\lib\\netstandard2.1\\Microsoft.Kiota.Http.HttpClientLibrary.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Form.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Serialization.Form.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.serialization.form\\1.0.1\\lib\\netstandard2.1\\Microsoft.Kiota.Serialization.Form.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Json.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Serialization.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.serialization.json\\1.0.5\\lib\\netstandard2.1\\Microsoft.Kiota.Serialization.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Text.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Serialization.Text.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.serialization.text\\1.0.1\\lib\\netstandard2.1\\Microsoft.Kiota.Serialization.Text.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Net.Http.Headers.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Net.Http.Headers.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\lib\\netstandard2.0\\Microsoft.Net.Http.Headers.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\Microsoft.VisualBasic.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\Microsoft.VisualBasic.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\Microsoft.Win32.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Registry.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\Microsoft.Win32.Registry.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Bson.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Bson.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\mongodb.bson\\2.19.1\\lib\\netstandard2.1\\MongoDB.Bson.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Driver.Core.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Driver.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\mongodb.driver.core\\2.19.1\\lib\\netstandard2.1\\MongoDB.Driver.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Driver.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Driver.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\mongodb.driver\\2.19.1\\lib\\netstandard2.1\\MongoDB.Driver.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Libmongocrypt.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Libmongocrypt.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\mongodb.libmongocrypt\\1.7.0\\lib\\netstandard2.1\\MongoDB.Libmongocrypt.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\mscorlib.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/mscorlib.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\mscorlib.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\netstandard.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/netstandard.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\netstandard.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Newtonsoft.Json.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Newtonsoft.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\newtonsoft.json\\13.0.3\\lib\\net6.0\\Newtonsoft.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharedModels.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/SharedModels.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\bin\\Debug\\net7.0\\SharedModels.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharedModels.pdb", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/SharedModels.pdb", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "symbol", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\bin\\Debug\\net7.0\\SharedModels.pdb" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharpCompress.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/SharpCompress.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\sharpcompress\\0.30.1\\lib\\net5.0\\SharpCompress.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Snappier.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Snappier.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\snappier\\1.0.0\\lib\\net5.0\\Snappier.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.AppContext.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.AppContext.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.AppContext.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Buffers.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Buffers.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Buffers.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Concurrent.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Collections.Concurrent.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Collections.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Immutable.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Collections.Immutable.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.NonGeneric.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Collections.NonGeneric.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Specialized.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Collections.Specialized.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Annotations.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ComponentModel.Annotations.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ComponentModel.DataAnnotations.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ComponentModel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ComponentModel.EventBasedAsync.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ComponentModel.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ComponentModel.TypeConverter.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Configuration.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Configuration.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Configuration.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Console.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Console.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Console.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Core.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Core.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.Common.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Data.Common.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Data.Common.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Data.DataSetExtensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Data.DataSetExtensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Data.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Data.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Contracts.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.Contracts.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Debug.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.Debug.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.DiagnosticSource.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.FileVersionInfo.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Process.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.Process.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.StackTrace.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.StackTrace.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.TextWriterTraceListener.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tools.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.Tools.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TraceSource.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.TraceSource.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tracing.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Diagnostics.Tracing.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Drawing.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Drawing.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Drawing.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Dynamic.Runtime.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Dynamic.Runtime.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Formats.Asn1.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Formats.Asn1.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Formats.Tar.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Formats.Tar.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Formats.Tar.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Calendars.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Globalization.Calendars.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Globalization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Globalization.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IdentityModel.Tokens.Jwt.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IdentityModel.Tokens.Jwt.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.29.0\\lib\\net6.0\\System.IdentityModel.Tokens.Jwt.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.Brotli.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.Compression.Brotli.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.Compression.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.FileSystem.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.Compression.FileSystem.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.ZipFile.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.Compression.ZipFile.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.FileSystem.AccessControl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.FileSystem.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.FileSystem.DriveInfo.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.FileSystem.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.FileSystem.Watcher.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.IsolatedStorage.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.IsolatedStorage.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.MemoryMappedFiles.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Packaging.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Packaging.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\system.io.packaging\\4.5.0\\lib\\netstandard2.0\\System.IO.Packaging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipelines.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\system.io.pipelines\\7.0.0\\lib\\net7.0\\System.IO.Pipelines.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.Pipes.AccessControl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipes.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.Pipes.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.IO.UnmanagedMemoryStream.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Linq.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Expressions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Linq.Expressions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Parallel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Linq.Parallel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Queryable.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Linq.Queryable.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Memory.Data.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Memory.Data.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\system.memory.data\\1.0.2\\lib\\netstandard2.0\\System.Memory.Data.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Memory.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Memory.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Memory.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Http.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Http.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Http.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.HttpListener.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.HttpListener.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Mail.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Mail.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Mail.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NameResolution.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.NameResolution.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NetworkInformation.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.NetworkInformation.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Ping.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Ping.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Ping.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Quic.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Quic.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Quic.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Requests.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Requests.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Requests.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Security.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Security.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Security.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.ServicePoint.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.ServicePoint.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Sockets.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Sockets.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.Sockets.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebClient.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebClient.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.WebClient.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebHeaderCollection.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.WebHeaderCollection.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebProxy.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.WebProxy.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.Client.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.WebSockets.Client.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Net.WebSockets.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Numerics.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Numerics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.Vectors.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Numerics.Vectors.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ObjectModel.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ObjectModel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ObjectModel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.CoreLib.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.DataContractSerialization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Private.DataContractSerialization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Uri.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Uri.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Private.Uri.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Xml.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Private.Xml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.Linq.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Private.Xml.Linq.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.DispatchProxy.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.DispatchProxy.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.Emit.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.Emit.ILGeneration.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.Emit.Lightweight.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Metadata.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.Metadata.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.TypeExtensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Reflection.TypeExtensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.Reader.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Reader.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Resources.Reader.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.ResourceManager.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Resources.ResourceManager.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.Writer.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Writer.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Resources.Writer.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.CompilerServices.Unsafe.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.CompilerServices.VisualC.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Handles.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Handles.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.InteropServices.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.InteropServices.JavaScript.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.InteropServices.RuntimeInformation.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Intrinsics.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Intrinsics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Loader.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Loader.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Numerics.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Numerics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Serialization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Serialization.Formatters.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Serialization.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Serialization.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Runtime.Serialization.Xml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.AccessControl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.AccessControl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Claims.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Claims.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Claims.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.Algorithms.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Cng.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.Cng.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Csp.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.Csp.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.Encoding.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.OpenSsl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Cryptography.X509Certificates.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Principal.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Principal.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.Windows.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.Principal.Windows.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.SecureString.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.SecureString.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Security.SecureString.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceModel.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ServiceModel.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ServiceProcess.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceProcess.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ServiceProcess.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.CodePages.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Text.Encoding.CodePages.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Text.Encoding.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Text.Encoding.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encodings.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Text.Encodings.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Json.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Json.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Text.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.RegularExpressions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Text.RegularExpressions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Channels.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Channels.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Channels.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Overlapped.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Overlapped.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Tasks.Dataflow.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Tasks.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Tasks.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Tasks.Parallel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Thread.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Thread.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Thread.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.ThreadPool.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.ThreadPool.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Timer.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Timer.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Threading.Timer.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Transactions.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Transactions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Transactions.Local.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.Local.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Transactions.Local.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ValueTuple.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ValueTuple.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.ValueTuple.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Web.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Web.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Web.HttpUtility.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Web.HttpUtility.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Windows.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Windows.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Windows.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.Linq.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Linq.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.Linq.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.ReaderWriter.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.ReaderWriter.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Serialization.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.Serialization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XDocument.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.XDocument.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlDocument.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.XmlDocument.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlSerializer.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.XmlSerializer.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XPath.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.XPath.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.XDocument.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\System.Xml.XPath.XDocument.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Tavis.UriTemplates.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Tavis.UriTemplates.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\tavis.uritemplates\\2.0.0\\lib\\netstandard2.0\\Tavis.UriTemplates.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\TimeZoneConverter.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/TimeZoneConverter.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\timezoneconverter\\6.1.0\\lib\\net6.0\\TimeZoneConverter.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\WindowsBase.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/WindowsBase.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\runtimes\\browser-wasm\\lib\\net7.0\\WindowsBase.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ZstdSharp.dll", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ZstdSharp.dll", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "runtime", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\.nuget\\packages\\zstdsharp.port\\0.6.2\\lib\\net6.0\\ZstdSharp.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\+2Mx6CNa.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\+iaqeheV.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\+M6vSMB4.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\+M7Mk+br.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.timezones.blat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.timezones.blat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.timezones.blat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\+R2yTmhK.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\+X0clzuq.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Loader.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Loader.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Loader.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\0F3THOoe.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\1dQeDFxx.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\1EpVnd1F.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\1i1sXsPJ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.AppContext.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.AppContext.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.AppContext.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\1kxNreRR.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Http.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Http.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\1lJIHL1p.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_no_CJK.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_no_CJK.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_no_CJK.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\22VaScSs.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Driver.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Driver.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Driver.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\23ROlzFb.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Graph.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\2cjWzD2X.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\2dQHx8B+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\2gtVL9b2.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\2z3fA+Xs.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3FX3z+Y3.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.RegularExpressions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.RegularExpressions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3GS0+Xc0.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Configuration.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Configuration.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Configuration.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3nAdAk7p.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Principal.Windows.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Principal.Windows.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3nN9D7Td.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3O+cKOiM.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3o4c9yGb.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Process.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Process.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Process.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3r5GoTSy.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ja\\GrapeCity.Documents.Pdf.resources.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ja\\GrapeCity.Documents.Pdf.resources.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\3RGQuDHV.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Blazored.Modal.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Blazored.Modal.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Blazored.Modal.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\40KW1Jvc.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Parallel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Parallel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Parallel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\42yeJ3X6.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\4IbJOvmG.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\4XMlHwCM.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Tools.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Tools.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\56lJo9NZ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Tavis.UriTemplates.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Tavis.UriTemplates.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Tavis.UriTemplates.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\5aZHroMB.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\5JBFDoaT.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\5Wvbiv0t.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Xml.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Xml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\5xWImhhp.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\62L4R0lC.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipes.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipes.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\6bAS78QA.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.WebUtilities.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.WebUtilities.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.WebUtilities.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\6chkLOwn.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\6SYFWDbs.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\7+NmSqS6.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Azure.AI.TextAnalytics.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.AI.TextAnalytics.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.AI.TextAnalytics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\77KXf+G2.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Concurrent.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Concurrent.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Concurrent.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\7EeleHRx.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Serialization.Form.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Form.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Form.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\8GFzTuVa.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\8I2FPv+4.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Tokens.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Tokens.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Tokens.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\8m1yIPR7.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\8UzvLwf+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\8vyJHDuB.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Bcl.AsyncInterfaces.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Bcl.AsyncInterfaces.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\8xSaKK2f.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ChartJSCore.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ChartJSCore.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ChartJSCore.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\8zwHBSD0.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\9AzsP+D9.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\9OGW3CR+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Authentication.Azure.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Authentication.Azure.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Authentication.Azure.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\9tAoG1Uq.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Net.Http.Headers.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Net.Http.Headers.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Net.Http.Headers.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\9xCfsmCY.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Data.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\a7NX+6Gj.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\AAJPMc+q.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ab9R18co.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.SecureString.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.SecureString.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.SecureString.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\AFZMHXnU.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\airhYZR7.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\AiS0rqlT.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Fast.Components.FluentUI.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Fast.Components.FluentUI.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Fast.Components.FluentUI.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Al28oHqe.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Protocols.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Protocols.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Protocols.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\AOvOJax+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\aOW5GZ36.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ASazdaOA.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Auic7m2e.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/SharedModels.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharedModels.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharedModels.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\AWyDvF+9.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\AX8lKh7j.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/SharedModels.pdb.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharedModels.pdb", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharedModels.pdb" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\AyefZHy+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\azxx+Ymt.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.HttpListener.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.HttpListener.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.HttpListener.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\bCA1HaC4.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IdentityModel.Tokens.Jwt.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IdentityModel.Tokens.Jwt.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IdentityModel.Tokens.Jwt.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\BIKlb2mF.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\BIsU3WPu.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Thread.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Thread.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Thread.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\BJ8SPSAw.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XmlDocument.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XmlDocument.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\buLwhqjv.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.JSInterop.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.JSInterop.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.JSInterop.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\BvfzaxMj.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Transactions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Transactions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\BZjUAGYF.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\BZK+fHbG.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Specialized.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Specialized.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Specialized.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\c+Z0g9Jd.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/AWSSDK.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AWSSDK.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AWSSDK.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\C3+iefBz.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\C8UJ3g6+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Principal.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Principal.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Principal.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\CLacD+ws.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ZstdSharp.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ZstdSharp.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ZstdSharp.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\cnKLVun6.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\CpaZ+yDJ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ja\\GrapeCity.Documents.Imaging.resources.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\ja\\GrapeCity.Documents.Imaging.resources.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\cTauOqcc.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\cv8v4Gsf.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Graph.Beta.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.Beta.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.Beta.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\CXfYACeM.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_EFIGS.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_EFIGS.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_EFIGS.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\D+1RZpX+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.JsonWebTokens.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.JsonWebTokens.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\d1EIfJy5.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.NetworkInformation.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.NetworkInformation.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\dF7+Cn0+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GrapeCity.Documents.Imaging.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Imaging.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Imaging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\dhu3kA+T.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Memory.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Memory.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Memory.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\dNEnteD5.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\doP+4BwJ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/BouncyCastle.Crypto.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\BouncyCastle.Crypto.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\BouncyCastle.Crypto.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\DQMhD7xB.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.VisualBasic.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.VisualBasic.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Dts75qHk.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\eD8KvJQ3.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.ThreadPool.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.ThreadPool.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\eglFIRt8.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\eMg4HloL.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\eoXnBbVy.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/SharpCompress.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharpCompress.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\SharpCompress.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ersvoADk.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\erUA+NWw.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Handles.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Handles.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Handles.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\EUxiBhbo.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\eV8sjNpC.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\eXag2ZQC.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\EYahmw6e.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceProcess.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ServiceProcess.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ServiceProcess.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\f+LGd4Hi.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt_CJK.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_CJK.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt_CJK.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\f2DKowff.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Numerics.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Numerics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\FC9BWSVd.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebClient.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebClient.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebClient.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\fD3oFEeK.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\FLR8M+Ah.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Graph.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Graph.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\FrC55Mh+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GraphSample.pdb.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GraphSample.pdb", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GraphSample.pdb" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\fY+6+YAq.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\fyIBe1B+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Channels.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Channels.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Channels.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\g+MJNN4k.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Timer.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Timer.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Timer.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\g0EfU1lN.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.ServicePoint.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.ServicePoint.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.ServicePoint.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\gDnazL5i.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Http.HttpClientLibrary.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Http.HttpClientLibrary.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\GF4ojFS8.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/mscorlib.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\mscorlib.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\mscorlib.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\gfZzpc+E.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Snappier.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Snappier.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Snappier.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\gPl5Gair.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\GV2n5d78.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Authorization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Authorization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Gw2xDHXY.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Newtonsoft.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Newtonsoft.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Newtonsoft.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\HB8DHftC.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Dynamic.Runtime.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Dynamic.Runtime.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\hbtsH5K4.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.NameResolution.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.NameResolution.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.NameResolution.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Hci14aiA.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Console.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Console.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Console.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\hDAoPmg+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/BlazorInputFile.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\BlazorInputFile.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\BlazorInputFile.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\HOJzY8yw.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Http.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Http.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Http.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\hwcDQ0wD.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\I1MLYecy.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\I2YQl34K.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.NonGeneric.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.NonGeneric.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\iD6mhcW+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ith6wL5e.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\iv7rlSof.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Security.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Security.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Security.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\IzxZx+Zd.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\j4MZS3uC.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/netstandard.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\netstandard.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\netstandard.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\jL+JS45b.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\JLqYeE98.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\jplbLOUI.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Requests.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Requests.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Requests.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\JQTwC+Wp.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Overlapped.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Overlapped.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Overlapped.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\K3Vy+8xS.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\k6c5l4Zs.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XPath.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XPath.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XPath.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\kIo+3vTu.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\kJId7wuk.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\KQ+CIlck.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Web.HttpUtility.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Web.HttpUtility.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Web.HttpUtility.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\KV+7rjd+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\kXOEfuAj.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\lf1J5B9O.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebSockets.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebSockets.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\luQkTI9I.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\M39mQ8FI.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\MC7F1EXR.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Azure.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\MdnBBtMp.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/TimeZoneConverter.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\TimeZoneConverter.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\TimeZoneConverter.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\meTe+alg.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\MgddUi+V.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Packaging.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Packaging.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Packaging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Ml7uO+rW.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\moXpYGUT.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.XDocument.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XDocument.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.XDocument.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\mpGGxn+A.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\mpOnjY3E.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Numerics.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Numerics.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Numerics.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Mx4rV4K6.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.AccessControl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.AccessControl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.AccessControl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\MXG25MIc.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\N0gjLoUT.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\N5fruOuj.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Formats.Asn1.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Formats.Asn1.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Formats.Asn1.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\NdvF5+0U.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\nNpXywCp.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\nOj7PPDe.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\nw4hF8e4.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\OTY+vEhj.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.7.0.5.9her4wdnhl.js.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.7.0.5.9her4wdnhl.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.7.0.5.9her4wdnhl.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\OwnWA+d9.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Authentication.WebAssembly.Msal.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Authentication.WebAssembly.Msal.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\P+OcG5X0.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\p4ttQeYL.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Reader.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.Reader.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.Reader.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\pBXJTrNX.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\pCfoiMIR.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Http.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Http.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Http.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\PdVsjePE.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\PesF4wKM.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ServiceModel.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ServiceModel.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ServiceModel.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\pFQ6kByw.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/dotnet.wasm.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.wasm", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\dotnet.wasm" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\pghmNRvs.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Azure.AI.OpenAI.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.AI.OpenAI.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Azure.AI.OpenAI.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\phm29G91.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/AWSSDK.SecurityToken.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AWSSDK.SecurityToken.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AWSSDK.SecurityToken.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\PHTiPb3I.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\PSzKFYQZ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\PWM2F7l6.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Pxx+hP2A.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.Writer.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.Writer.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.Writer.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\q+5LDeSN.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Serialization.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\qf8xv0rk.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Ping.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Ping.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Ping.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\qGYkmnM5.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.ResourceManager.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Resources.ResourceManager.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\qlam8W+O.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Serialization.Text.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Text.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Serialization.Text.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\QmI3N8oM.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Formats.Tar.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Formats.Tar.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Formats.Tar.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Qpbt+CNX.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\qQ8gsDqb.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Collections.Immutable.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Immutable.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Collections.Immutable.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\qtLOehkv.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/DnsClient.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\DnsClient.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\DnsClient.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\qWgUeh2N.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Buffers.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Buffers.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Buffers.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\R2PLP3Qe.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\r5tIrKQJ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Queryable.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Queryable.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Queryable.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Re+7LMz0.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\rLFEcJ3K.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Linq.Expressions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Expressions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Linq.Expressions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\RNhSgpar.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\RP4BO9dU.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.JavaScript.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.JavaScript.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\rUmG1DOI.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/blazor.webassembly.js.gz", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\blazor.webassembly.js", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\blazor.webassembly.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ryPTNASP.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Quic.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Quic.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Quic.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\s0WbNtC8.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Extensions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Extensions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Extensions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\s45K7klr.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ObjectModel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ObjectModel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ObjectModel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ShbALnVZ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Drawing.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Drawing.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\sNCgE1gc.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Bson.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Bson.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Bson.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\snRMAVo0.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GraphSample.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GraphSample.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GraphSample.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\SyQx+l1x.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\T02qCSL8.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/GrapeCity.Documents.Pdf.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Pdf.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\GrapeCity.Documents.Pdf.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\tALjiTtN.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encodings.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Encodings.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\TAoxl7R3.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Windows.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Windows.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Windows.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\TBn7dkuj.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.Pipelines.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipelines.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.Pipelines.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Tca26kuV.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Libmongocrypt.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Libmongocrypt.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Libmongocrypt.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\tDSRJfdl.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.IdentityModel.Logging.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Logging.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.IdentityModel.Logging.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\TLqbhHzt.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Text.Json.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Json.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Text.Json.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\toKSBfJx.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Debug.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.Debug.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\tQEbKKnv.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Memory.Data.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Memory.Data.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Memory.Data.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\TXBZ5Zv2.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/WindowsBase.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\WindowsBase.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\WindowsBase.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\tZlcgzg+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Reflection.Metadata.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Metadata.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Reflection.Metadata.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\u0AXn6bb.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.CSharp.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.CSharp.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.CSharp.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\u2NKCkEW.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Serialization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.Serialization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.Serialization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Uai5tZzn.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\uFYGyXgI.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\UlOCwkJy.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\UOQe8Dq0.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Kiota.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Kiota.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\UsxFDlWI.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\VadgPOEj.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\VAFs0L7p.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.Linq.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.Linq.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.Linq.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\vbyEHz+f.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ve2DCp+Y.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ValueTuple.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ValueTuple.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ValueTuple.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\vHFCIeEH.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\VjzG04qc.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\VLryMgNN.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\vmGJlw0k.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/MongoDB.Driver.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Driver.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\MongoDB.Driver.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\w4rVORDG.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.InteropServices.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\wCf576wv.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebProxy.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebProxy.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebProxy.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\WGIV8QF4.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Numerics.Vectors.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Numerics.Vectors.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Numerics.Vectors.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\wnjmgrOa.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\WSd8vvJ+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Xml.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Xml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\WUcFp4sY.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Data.Common.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.Common.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Data.Common.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Ww6LdwW+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Globalization.Calendars.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.Calendars.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Globalization.Calendars.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\XGcG3D9f.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\xhJdd8MR.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Uri.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Uri.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Uri.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\xKS2CAdA.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.CoreLib.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.CoreLib.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.CoreLib.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\XNRSaCAE.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Drawing.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Drawing.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Drawing.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\xssRNhxe.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\XtcIMN1+.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\xwCIKg4r.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/DocumentFormat.OpenXml.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\DocumentFormat.OpenXml.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\DocumentFormat.OpenXml.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\xZTvHMo7.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Transactions.Local.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Transactions.Local.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Transactions.Local.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Y7nD3u55.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Hosting.Abstractions.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.Extensions.Hosting.Abstractions.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\y9tSwMK5.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\Yj5BZpbw.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\YjoXTRDF.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/icudt.dat.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt.dat", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\icudt.dat" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\YqyTTqnp.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Mail.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Mail.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Mail.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\yR+Yk9oU.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Xml.Linq.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Private.Xml.Linq.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ys2HsIxk.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/AzureOpenAIClient.Http.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AzureOpenAIClient.Http.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\AzureOpenAIClient.Http.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ysVyZ++O.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\YTzkAgfa.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\yW+OvcWi.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.Sockets.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Sockets.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.Sockets.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\zfFUKSwe.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\zH8vquy4.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\znqmWMdE.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Security.Claims.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Claims.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Security.Claims.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\ZqnBCdvU.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Web.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Web.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Web.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\zwebL8CJ.gz", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\", + "BasePath": "/", + "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz", + "AssetKind": "Build", + "AssetMode": "All", + "AssetRole": "Alternative", + "RelatedAsset": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll", + "AssetTraitName": "Content-Encoding", + "AssetTraitValue": "gzip", + "CopyToOutputDirectory": "PreserveNewest", + "CopyToPublishDirectory": "Never", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\bundle\\GraphSample.styles.css", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\bundle\\", + "BasePath": "/", + "RelativePath": "GraphSample.styles.css", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ApplicationBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\bundle\\GraphSample.styles.css" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\GraphSample.bundle.scp.css", + "SourceId": "GraphSample", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\", + "BasePath": "/", + "RelativePath": "GraphSample.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\GraphSample.bundle.scp.css" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\appsettings.json", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "appsettings.json", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "BlazorWebAssemblyResource", + "AssetTraitValue": "settings", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\appsettings.json" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\app.css", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/app.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\app.css" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\bootstrap.css.map", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/bootstrap.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\bootstrap.css.map" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\bootstrap.min.css", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\bootstrap.min.css" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\bootstrap.min.css.map", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/bootstrap.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\bootstrap.min.css.map" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\FONT-LICENSE", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/FONT-LICENSE", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\FONT-LICENSE" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.eot", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.otf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/font/fonts/open-iconic.woff", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\ICON-LICENSE", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/ICON-LICENSE", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\ICON-LICENSE" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\README.md", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "css/open-iconic/README.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\README.md" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\favicon.ico", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "favicon.ico", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\favicon.ico" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\icon-192.png", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "icon-192.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\icon-192.png" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\identityTeams.js", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "identityTeams.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\identityTeams.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\binder_RGB_logotype_white_transparent_1135x512.png", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "img/binder_RGB_logotype_white_transparent_1135x512.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\img\\binder_RGB_logotype_white_transparent_1135x512.png" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\bindercoloured.png", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "img/bindercoloured.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\img\\bindercoloured.png" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\nexus.png", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "img/nexus.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\img\\nexus.png" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\no-profile-photo.png", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "img/no-profile-photo.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\img\\no-profile-photo.png" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\openai-white-logomark.png", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "img/openai-white-logomark.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\img\\openai-white-logomark.png" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\index.html", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "index.html", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\index.html" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\intro.jpg", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "intro.jpg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\intro.jpg" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\manifest.json", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "manifest.json", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\manifest.json" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\mgtInterop.js", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "mgtInterop.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\mgtInterop.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\service-worker.js", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "service-worker.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\service-worker.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\service-worker.published.js", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "service-worker.published.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\service-worker.published.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\teamHelper.js", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "teamHelper.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\teamHelper.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\TeamsLogin.js", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "TeamsLogin.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\TeamsLogin.js" + }, + { + "Identity": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\windowResizeInterop.js", + "SourceId": "GraphSample", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\", + "BasePath": "/", + "RelativePath": "windowResizeInterop.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\windowResizeInterop.js" + } + ] +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.development.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.development.json new file mode 100644 index 000000000..dfa257c8b --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\staticwebassets\\","C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\staticwebassets\\","C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\bundle\\","C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\"],"Root":{"Children":{"css":{"Children":{"app.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/app.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"icon-192.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"icon-192.png"},"Patterns":null},"identityTeams.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"identityTeams.js"},"Patterns":null},"img":{"Children":{"bindercoloured.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/bindercoloured.png"},"Patterns":null},"binder_RGB_logotype_white_transparent_1135x512.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/binder_RGB_logotype_white_transparent_1135x512.png"},"Patterns":null},"nexus.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/nexus.png"},"Patterns":null},"no-profile-photo.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/no-profile-photo.png"},"Patterns":null},"openai-white-logomark.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"img/openai-white-logomark.png"},"Patterns":null}},"Asset":null,"Patterns":null},"index.html":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"index.html"},"Patterns":null},"intro.jpg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"intro.jpg"},"Patterns":null},"manifest.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"manifest.json"},"Patterns":null},"mgtInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"mgtInterop.js"},"Patterns":null},"service-worker.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"service-worker.js"},"Patterns":null},"service-worker.published.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"service-worker.published.js"},"Patterns":null},"teamHelper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"teamHelper.js"},"Patterns":null},"TeamsLogin.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"TeamsLogin.js"},"Patterns":null},"windowResizeInterop.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"windowResizeInterop.js"},"Patterns":null},"_content":{"Children":{"Microsoft.Fast.Components.FluentUI":{"Children":{"Components":{"Children":{"Anchor":{"Children":{"FluentAnchor.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/Anchor/FluentAnchor.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null},"DataGrid":{"Children":{"FluentDataGrid.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/DataGrid/FluentDataGrid.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null},"HorizontalScroll":{"Children":{"FluentHorizontalScroll.razor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Components/HorizontalScroll/FluentHorizontalScroll.razor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"css":{"Children":{"reboot.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/reboot.css"},"Patterns":null},"variables.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/variables.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"CacheStorageAccessor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/CacheStorageAccessor.js"},"Patterns":null},"web-components.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/web-components.js"},"Patterns":null},"web-components.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"js/web-components.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Fast.Components.FluentUI.lib.module.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Microsoft.Fast.Components.FluentUI.lib.module.js"},"Patterns":null},"icons":{"Children":{"PresenceAvailable":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAvailable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceAway":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceAway/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceBusy":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBusy/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceDND":{"Children":{"10_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/10_f.svg"},"Patterns":null},"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/24_f.svg"},"Patterns":null},"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceDND/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Add":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Add/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Alert":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Alert/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertSnooze":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertSnooze/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBidirectionalUpDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBidirectionalUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowClockwise":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCounterclockwise":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowNext":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowNext/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowPrevious":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowPrevious/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepIn":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepInLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepInRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepInRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepOut":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSync":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrending":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Attach":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Attach/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Backpack":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backpack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Balloon":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Balloon/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BezierCurveSquare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BezierCurveSquare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Briefcase":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Briefcase/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Call":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Call/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallMissed":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallMissed/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretDownRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CaretUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CaretUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelShare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelShare/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Chat":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chat/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatEmpty":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatEmpty/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxUnchecked":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxUnchecked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkmark":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronCircleUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronCircleUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronUp":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Circle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Circle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleHalfFill":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHalfFill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleLine":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clock":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Comment":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comment/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentAdd":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeftTempLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowLeftTempRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowLeftTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRightTempLTR":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentArrowRightTempRTL":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentArrowRightTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentCheckmark":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Couch":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Couch/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cube":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cube/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Delete":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Delete/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dentist":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dentist/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dismiss":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Doctor":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Doctor/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drop":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EqualOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ErrorCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eye":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eye/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Filter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodCake":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCake/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Glance":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glance/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceDefault":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceDefault/12_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceDefault/12_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceHorizontal":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Globe":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Globe/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HatGraduation":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HatGraduation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Heart":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Heart/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Home":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Home/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Important":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Important/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Info":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Info/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Link":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Link/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkSquare":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Location":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Location/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrow":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockClosed":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosed/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mail":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailUnread":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailUnread/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mention":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mention/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MyLocation":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MyLocation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Notepad":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notepad/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Organization":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Organization/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pause":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pause/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"People":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/People/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Phone":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Phone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pin":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pin/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Play":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Play/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Premium":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Premium/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Prohibited":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Prohibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QuestionCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuestionCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Record":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Record/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RecordStop":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RecordStop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RectangleLandscape":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectangleLandscape/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Reward":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Reward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Ribbon":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ribbon/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanDash":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanDash/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Search":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Search/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shield":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlashForward":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlashForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitHorizontal":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitVertical":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Square":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Square/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareShadow":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/20_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareShadow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Star":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Star/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarHalf":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarHalf/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarOff":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarOneQuarter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarOneQuarter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarThreeQuarter":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarThreeQuarter/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Status":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Status/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sticker":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/12_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/24_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/12_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sticker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Subtract":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtract/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tablet":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tablet/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tent":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tent/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Text":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/16_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/32_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/16_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Text/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextT":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextT/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Toolbox":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Toolbox/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Triangle":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Triangle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleDown":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleLeft":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TriangleRight":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TriangleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPerson":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/48_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Warning":{"Children":{"12_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/12_f.svg"},"Patterns":null},"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/28_f.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Warning/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Accessibility":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Accessibility/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSubtractCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSubtractCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AirplaneTakeOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AirplaneTakeOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertBadge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertBadge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertUrgent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertUrgent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignBottom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignBottom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignCenterHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignCenterVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignCenterVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeBottom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeBottom/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeBottom/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeLeft/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeLeft/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeRight/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeRight/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignDistributeTop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeTop/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignDistributeTop/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStretchHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStretchVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStretchVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignTop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignTop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalCat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalCat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalDog":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalDog/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalRabbit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalTurtle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalTurtle/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppFolder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ApprovalsApp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ApprovalsApp/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Apps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Apps/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsAddIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsAddIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Archive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Archive/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveArrowBack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArchiveSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArchiveSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBounce":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBounce/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowDownload":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowDownload/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnter/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowFitIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowFitIn/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookDownRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookDownRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowHookUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowHookUpRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMaximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximize/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMinimize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimize/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowParagraph":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowParagraph/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedoTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRedoTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRedoTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeat1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeat1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeatAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRepeatAllOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRepeatAllOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReply":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReply/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReplyAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyAll/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReplyDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReplyDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRotateClockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowShuffle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowShuffleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowShuffleOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSort/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortDownLines":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortDownLines/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSortUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSortUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSprint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSprint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowStepOver":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowStepOver/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndoTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempLTR/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUndoTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUndoTempRTL/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpload":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoSum":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoSum/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Backspace":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Backspace/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Beach":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beach/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Beaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Beaker/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BinderTriangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinderTriangle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bluetooth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bluetooth/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Blur":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Blur/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Board":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Board/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardHeart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardSplit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bookmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bookmark/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookNumber":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookNumber/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpen/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderAll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowlChopsticks":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlChopsticks/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Box":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Box/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Braces":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Braces/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesCheckmark/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesCheckmark/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesDismiss/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesDismiss/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Branch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Branch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchCompare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchCompare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchFork":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchFork/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BriefcaseMedical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseMedical/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BriefcaseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BriefcaseOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrightnessHigh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessHigh/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrightnessLow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrightnessLow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BroadActivityFeed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BroadActivityFeed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Broom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Broom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bug":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bug/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Building":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Building/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBank":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBank/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBankLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingFactory":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingFactory/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingHome":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingHome/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingPeople":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingPeople/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingShop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingShop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingSkyscraper":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingSkyscraper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Button":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Button/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Calculator":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calculator/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalculatorMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Calendar3Day":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Calendar3Day/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowCounterclockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowCounterclockwise/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAssistant":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAssistant/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarCancel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCancel/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarDataBar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDataBar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarDay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarEmpty":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarEmpty/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarInfo/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMail/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPattern":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPattern/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPhone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPhone/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarPlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarPlay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarReply":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarReply/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSettings/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarShield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarToday":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToday/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWorkWeek":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWorkWeek/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallEnd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallEnd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallInbound":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallInbound/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallOutbound":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallOutbound/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallPark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallTransfer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallTransfer/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallWarning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Camera":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Camera/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraDome":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraDome/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CatchUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CatchUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CD":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CD/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CD/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Certificate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Certificate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Channel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Channel/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelAlert/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChannelSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChannelSubtract/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatArrowDoubleBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatArrowDoubleBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatBubblesQuestion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubblesQuestion/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatCursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatCursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMultipleHeart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMultipleHeart/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxChecked":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxChecked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxCheckedSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxCheckedSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxIndeterminate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxIndeterminate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkStarburst":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkStarburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkUnderlineCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkUnderlineCircle/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDoubleUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDoubleUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronDownUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronDownUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChevronUpDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChevronUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleHint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleImage/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"City":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/City/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Classification":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Classification/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClearFormatting":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClearFormatting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clipboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clipboard3Day":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clipboard3Day/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardBulletListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListLTR/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardBulletListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardBulletListRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardCode":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardCode/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardLetter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLetter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMonth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMonth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardNote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardPaste":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPaste/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTask":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTask/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextLTR/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockAlarm":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockAlarm/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClosedCaption":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaption/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClosedCaptionOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClosedCaptionOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cloud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cloud/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArchive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArchive/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudError/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSync/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudWords":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudWords/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Clover":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Clover/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Code":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Code/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeBlock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeBlock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeFS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeFSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeFSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeJS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeJSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeJSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodePY":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePY/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePY/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodePYRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePYRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodePYRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeRB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeRBRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRBRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeRBRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeText/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTextOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextOff/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextOff/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTSRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTSRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTSRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeVB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeVBRectangle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVBRectangle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeVBRectangle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Color":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Color/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorFill":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFill/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorLine":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnSingle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingle/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingle/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnSingleCompare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnSingleCompare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMention":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMention/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultipleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentMultipleLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentMultipleLink/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Communication":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Communication/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CompassNorthwest":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CompassNorthwest/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Compose":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Compose/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cone/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cone/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ConferenceRoom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConferenceRoom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Connected":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connected/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Connector":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Connector/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCard/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardGroup":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardGroup/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContactCardRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContactCardRibbon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentSettings/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContractDownLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContractDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Copy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Copy/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopyArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Crop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Crown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Crown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeQuick":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeQuick/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CurrencyDollarEuro":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarEuro/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CurrencyDollarRupee":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CurrencyDollarRupee/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorHover":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHover/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorHoverOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorHoverOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarHorizontalDescending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontalDescending/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontalDescending/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVertical/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalAscending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAscending/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAscending/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalStar/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Database":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Database/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseStack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseStack/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseStack/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataHistogram":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataHistogram/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataTrending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTrending/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesignIdeas":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesignIdeas/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Desktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Desktop/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopCursor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopCursor/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopKeyboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopKeyboard/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopMac":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopMac/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopPulse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopPulse/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceEQ":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceEQ/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceMeetingRoom":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoom/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeviceMeetingRoomRemote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeviceMeetingRoomRemote/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diamond":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diamond/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Directions":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Directions/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DividerShort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerShort/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DividerTall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DividerTall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Document":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Document100":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Document100/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListCube":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCatchUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCatchUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentContract/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentContract/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCopy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCopy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentCSS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentCSS/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentData":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentData/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDataLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDataLink/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFolder/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFooter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderFooter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderFooter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJAVA":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJAVA/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMention":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMention/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentNumber1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentNumber1/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentNumber1/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageBeaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageBeaker/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageBeaker/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPDF":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPDF/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPY":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPY/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPY/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentRB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentRibbon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSASS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSASS/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSplitHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSplitHintOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSplitHintOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSync/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTarget":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTarget/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTarget/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTS":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTS/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTS/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentVB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentVB/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentVB/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentYML":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentYML/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Door":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Door/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorArrowRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drafts":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drafts/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBeer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBeer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkCoffee":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkCoffee/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkMargarita":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkMargarita/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkWine":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkWine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dumbbell":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dumbbell/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Earth":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Earth/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EarthLeaf":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EarthLeaf/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Edit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Edit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Emoji":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Emoji/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiAngry":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiAngry/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiEdit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiHand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHand/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiLaugh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiLaugh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiMeh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMeh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSad":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ErrorCircleSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ErrorCircleSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExpandUpLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExpandUpRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExpandUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eyedropper":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eyedropper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeTracking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTracking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeTrackingOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeTrackingOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FastForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastForward/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fax":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fax/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Feed":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Feed/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Filmstrip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Filmstrip/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilmstripPlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripPlay/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilmstripSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilmstripSplit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fire":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fire/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flag/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagClock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagPride":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagPride/48_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flash":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flash/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashFlow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flashlight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flashlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlipHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlipVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlipVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fluid":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Folder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Folder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowLeft/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderGlobe":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderGlobe/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderList/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMail/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderOpenVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderOpenVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderZip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderZip/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontSpaceTrackingIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontSpaceTrackingOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontSpaceTrackingOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Food":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Food/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodChickenLeg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodChickenLeg/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodEgg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodEgg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodToast":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodToast/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS30":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS30/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS60":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS60/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Frame":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Frame/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FStop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FStop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FullScreenMaximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMaximize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FullScreenMinimize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FullScreenMinimize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Games":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Games/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GanttChart":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GanttChart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gavel":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gavel/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GavelProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GavelProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GIF":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GIF/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gift":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gift/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlanceHorizontalSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/16_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/16_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlanceHorizontalSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Glasses":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Glasses/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlassesOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlassesOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeStar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Grid":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Grid/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridKanban":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridKanban/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guest":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guest/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guitar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guitar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandDraw":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandDraw/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandLeftChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandLeftChat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Handshake":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Handshake/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandWave":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandWave/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HardDrive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HardDrive/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HD":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HD/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Headset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headset/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartBroken":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartBroken/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartCircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartCircleHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Highlight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Highlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HighlightAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightAccent/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"History":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/History/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Hourglass":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Hourglass/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassHalf":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassHalf/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassOneQuarter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassOneQuarter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HourglassThreeQuarter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HourglassThreeQuarter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Image":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Image/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageAltText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAltText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageBorder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageBorder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageMultipleOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageMultipleOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageStack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageStack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageTable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageTable/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImmersiveReader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImmersiveReader/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkingTool":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingTool/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkingToolAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkingToolAccent/32_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InPrivateAccount":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InPrivateAccount/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"IoT":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoT/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"IoTAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/IoTAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"JavaScript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/JavaScript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Key":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Key/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Keyboard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardMouse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardMouse/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardMouse/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardShift":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShift/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardShiftUppercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardShiftUppercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyCommand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyCommand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Laptop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Laptop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaptopDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaptopShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaptopShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafOne":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafOne/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafThree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafThree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LeafTwo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LeafTwo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Library":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Library/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lightbulb":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lightbulb/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbFilament":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbFilament/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Likert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Likert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal4":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal4Search":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal4Search/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"List":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/List/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBarTree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTree/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListBarTreeOffset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListBarTreeOffset/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ListRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocalLanguage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/en/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ko/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/20_f.svg"},"Patterns":null},"ja":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/ja/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocalLanguage/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationArrowUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockClosedKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockClosedKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockOpen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockOpen/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Luggage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Luggage/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAlert/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAllRead":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllRead/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowDoubleBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDoubleBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAttach":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAttach/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInbox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInbox/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowDown":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailMultiple/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailOpenPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOpenPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailPause":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailPause/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailRead":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailRead/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailReadMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailReadMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailTemplate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailTemplate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Map":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Map/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MapDrive":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MapDrive/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormatProfessional":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatProfessional/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormula":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormula/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathSymbols":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathSymbols/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Maximize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Maximize/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MeetNow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MeetNow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Megaphone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Megaphone/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneLoud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneLoud/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneOff/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Memory":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Memory/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Memory/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Merge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Merge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mic":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mic/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicPulse":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulse/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicPulseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicPulseOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Molecule":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Molecule/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Money":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Money/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoreVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoreVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoviesandTV":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoviesandTV/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MultiselectLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MultiselectRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MultiselectRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNoteOff2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Navigation":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Navigation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NetworkAdapter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkAdapter/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkAdapter/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"New":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/New/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"News":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/News/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Next":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Next/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Note":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Note/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NoteAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Notebook":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Notebook/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotepadEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotepadPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotepadPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotePin":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotePin/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle1/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle2/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle3":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle3/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle4":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle4/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberCircle5":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberCircle5/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberRow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbol":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbol/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Open":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Open/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenFolder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenFolder/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OpenOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OpenOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Options":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Options/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Oval":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oval/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PageFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PageFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrush":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrush/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBucket":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBucket/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftContract/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftExpand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftExpand/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftFocusRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftFocusRight/28_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeader":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeader/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeaderAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftHeaderKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftHeaderKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftKey":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftText/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftTextAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelLeftTextDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelLeftTextDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightContract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightContract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Password":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Password/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Payment":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Payment/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pen/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PenProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PenProhibited/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCommunity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunity/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleStar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSwap/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/20_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/20_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSync/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeam":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeam/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamDelete":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamDelete/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleToolbox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAlert":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowBack/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonArrowRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAvailable":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAvailable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonBoard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonBoard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonCall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonDelete":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDelete/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonFeedback":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonFeedback/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonInfo/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLightning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonMail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonNote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonNote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonRibbon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRibbon/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSearch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSearch/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStanding":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStanding/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStanding/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSupport":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSupport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSwap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSync":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSync/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonWalking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWalking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneChat/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneEraser":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLaptop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLaptop/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpanIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanIn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpanOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpanOut/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPicture":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPicture/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPictureEnter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureEnter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PictureInPictureExit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PictureInPictureExit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pill":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pill/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PinOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PinOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayCircleHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayCircleHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Poll":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Poll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PollHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PollHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PremiumPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PremiumPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PreviewLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PreviewLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Previous":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Previous/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Print":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Print/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProhibitedMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreen":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreen/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreenDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProtocolHandler":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProtocolHandler/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzleCube":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCube/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Puzzlepiece":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Puzzlepiece/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Question":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Question/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadioButton":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButton/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadioButtonOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButtonOff/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadioButtonOff/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RAM":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RAM/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RatingMature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatingMature/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadAloud":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadAloud/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingList":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingList/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingListAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingListAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Receipt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Receipt/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptMoney":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSparkles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Remote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Remote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rename":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rename/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrder":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrder/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrderDotsHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReOrderDotsVertical":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReOrderDotsVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeLarge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeLarge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeSmall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rewind":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rewind/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rhombus":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rhombus/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RoadCone":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RoadCone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Rocket":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Rocket/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Ruler":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Ruler/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Run":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Run/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Save":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Save/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Savings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Savings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScaleFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scan":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanCamera":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanCamera/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanText/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanThumbUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanThumbUpOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanThumbUpOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Script":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Script/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Script/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchVisual":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchVisual/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Send":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Send/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendBeaker":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendBeaker/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SerialPort":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SerialPort/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Server":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Server/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerSurface":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurface/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurface/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerSurfaceMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurfaceMultiple/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerSurfaceMultiple/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServiceBell":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServiceBell/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Settings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Settings/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeExclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeExclude/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeIntersect":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeIntersect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shapes":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shapes/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeSubtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShapeUnion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShapeUnion/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Share":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Share/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPerson/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonOverlay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlay/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonOverlayInside":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonOverlayInside/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenPersonP":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenPersonP/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenStop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStop/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldGlobe":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldKeyhole":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldKeyhole/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldQuestion":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldQuestion/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldTask":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldTask/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shifts":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsActivity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsActivity/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Signature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Signature/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SIM":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SIM/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideEraser":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideEraser/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideRecord":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideRecord/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideText":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideText/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextPerson":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTextSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTextSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Snooze":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Snooze/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Space3D":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Space3D/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SparkleCircle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SparkleCircle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker0":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker0/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker1":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker1/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Speaker2":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Speaker2/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerMute":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerMute/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sport":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportSoccer":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportSoccer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SprayCan":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SprayCan/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SprayCan/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareArrowForward/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHint":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintSparkles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintSparkles/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stack/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackStar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarCheckmark/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarLineHorizontal3":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarLineHorizontal3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Step":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Step/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Step/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Steps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Steps/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StoreMicrosoft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StoreMicrosoft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Subtitles":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Subtitles/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircleArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractCircleArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractCircleArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractSquare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubtractSquareMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubtractSquareMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Symbols":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Symbols/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SyncOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SyncOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tab":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tab/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktop":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopArrowClockwise":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopImage":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabInPrivate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivate/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Table":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Table/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableAdd":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableBottomRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableBottomRow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCalculator":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCalculator/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellEdit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellsMerge":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsMerge/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCellsSplit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCellsSplit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDeleteColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDeleteRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDeleteRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableEdit/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRowTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempLTR/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnAndRowTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnAndRowTempRTL/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempLTR/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeColumnTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeColumnTempRTL/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableFreezeRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableFreezeRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableInsertColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableInsertRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableInsertRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLightning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLightning/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLink":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLink/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveAbove":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveAbove/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveBelow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveBelow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMoveRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMoveRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableResizeColumn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeColumn/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableResizeRow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableResizeRow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSettings":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleCheckmark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleExclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleExclude/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleInclude":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleInclude/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackAbove":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackAbove/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackBelow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackBelow/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackLeft/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableStackRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableStackRight/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSwitch":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSwitch/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tabs":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tabs/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Tag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Tag/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagDismiss":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagError":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLock/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagLockAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagLockAccent/32_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagQuestionMark":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagQuestionMark/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Target":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Target/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TargetArrow":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetArrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TargetEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TargetEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Temperature":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Temperature/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TetrisApp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TetrisApp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenter":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenterRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignCenterRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignCenterRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignLeftTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignLeftTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRightRotate270":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignRightRotate90":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignRightRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBold":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"de":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/de/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/fr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ms":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ms/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"no":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/no/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"pt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/pt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr-cyrl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-cyrl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr-latn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sr-latn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/sv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBold/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBox":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignMiddle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquare":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquare/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareWarning":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListTree":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListTree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseLowercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseLowercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseTitle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseTitle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCaseUppercase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCaseUppercase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextChangeCase":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextChangeCase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextClearFormatting":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/24_f.svg"},"Patterns":null},"ko":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/ko/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextClearFormatting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColor":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/20_f.svg"},"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColorAccent":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColorAccent/24_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDensity":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDensity/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextExpand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextExpand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextField":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextField/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFont":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFont/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFontInfo":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontInfo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFontSize":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFontSize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarWand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarWand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextItalic":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"de":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/de/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"eu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/eu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"no":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/no/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/sv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextItalic/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraph":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ja":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ja/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraph/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirectionLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirectionRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirectionRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphTempLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphTempRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquareLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquareRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquareRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextQuote":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextQuote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSortAscending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fi":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/fi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/gr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"se":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/se/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortAscending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSortDescending":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"da":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/da/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fi":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/fi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/gr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"se":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/se/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSortDescending/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextStrikethrough":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/16_f.svg"},"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextStrikethrough/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSubscript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSubscript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextSuperscript":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextSuperscript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextTTag":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextTTag/16_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextTTag/16_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderline":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/16_f.svg"},"Patterns":null},"bg":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/bg/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ca":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ca/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"en":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"es":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/es/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"et":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/et/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"eu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/eu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"fr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/fr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"gl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/gl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"hu":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/hu/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"it":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/it/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"kk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/kk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"lv":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/lv/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"pt":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/pt/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ru":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/ru/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sl":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sl/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"sr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/sr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"tr":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/tr/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"uk":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/uk/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderlineCharacterU":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineCharacterU/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWrap":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWrapOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWrapOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ThumbDislike":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbDislike/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ThumbLike":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ThumbLike/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TicketDiagonal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketDiagonal/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleLeft":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ToggleRight":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ToggleRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Translate":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Translate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TranslateAuto":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateAuto/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TranslateOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TranslateOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Trophy":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Trophy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrophyLock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyLock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrophyOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrophyOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TV":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TV/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TVUSB":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVUSB/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Vault":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vault/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleBicycle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBicycle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleBus":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleBus/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCab":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCab/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCar":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCar/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarCollision":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarCollision/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarParking":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarParking/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileLTR":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileLTRClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileLTRClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCarProfileRTL":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCarProfileRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleShip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleShip/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleSubway":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleSubway/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruck":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckProfile":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckProfile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoBackgroundEffect":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffect/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoBackgroundEffectHorizontal":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoBackgroundEffectHorizontal/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoChat":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoChat/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClip":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClip/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClipMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoClipOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoClipOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonCall":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonCall/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonClock":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonClock/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonSparkle":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonSparkle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoProhibited":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/28_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoProhibited/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Voicemail":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Voicemail/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowBack":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowBack/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowForward":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowForward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailSubtract":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wallet":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallet/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WalletCreditCard":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/32_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalletCreditCard/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wand":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wand/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Water":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Water/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherMoon":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherMoonOff":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherMoonOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherPartlyCloudyDay":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunny":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunny/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WebAsset":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WebAsset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Window":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Window/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowApps":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowApps/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowArrowUp":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDevEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDevTools":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDevTools/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowEdit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowMultiple":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/20_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowNew":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowNew/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowShield":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowWrench":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowWrench/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wrench":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wrench/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxController":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/48_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxController/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomFit":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomFit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomIn":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomIn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ZoomOut":{"Children":{"16_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/16_f.svg"},"Patterns":null},"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/24_f.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ZoomOut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AccessibilityCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessibilityCheckmark/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AccessTime":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AccessTime/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AddSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AddSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Airplane":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Airplane/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Album":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Album/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlbumAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlbumAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlertOn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlertOn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignEndHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignEndVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignEndVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceAroundHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceAroundVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceAroundVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceBetweenHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceBetweenVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceBetweenVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceEvenlyHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceEvenlyVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceEvenlyVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignSpaceFitVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceFitVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignSpaceFitVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStartHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AlignStartVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AlignStartVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AnimalRabbitOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AnimalRabbitOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppGeneric":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppGeneric/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppRecent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppRecent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppsListDetail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppsListDetail/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppTitle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppTitle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitContent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitContent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeightDotted":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightDotted/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitHeightIn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitHeightIn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowAutofitWidthDotted":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowAutofitWidthDotted/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBetweenDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowBetweenUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowBetweenUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleDownUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleDownUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCircleUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCircleUpRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowClockwiseDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowClockwiseDashes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCollapseAll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCollapseAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCounterclockwiseDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCounterclockwiseDashes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveDownRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowCurveUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowCurveUpRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEject/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEject/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnterLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowEnterUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowEnterUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExpand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowExportUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowExportUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForwardDownLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowForwardDownPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowForwardDownPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowImport":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowImport/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowJoin":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowJoin/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowJoin/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMaximizeVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMaximizeVertical/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMinimizeVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMinimizeVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMove":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMove/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowMoveInward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMoveInward/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowMoveInward/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowOutlineUpRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowOutlineUpRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowReset/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRotateCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRotateCounterclockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRouting":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRouting/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowRoutingRectangleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowRoutingRectangleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowsBidirectional":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowsBidirectional/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSquareDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSquareDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowSyncDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowSyncDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingLines/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingSparkle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTrendingWrench":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTrendingWrench/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnBidirectionalDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnBidirectionalDownRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnDownUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnDownUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnLeftUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnLeftUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnRightUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnRightUp/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnUpDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpDown/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowTurnUpLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/20_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/20_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowTurnUpLeft/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowWrap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrap/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrap/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ArrowWrapOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrapOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ArrowWrapOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AttachArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AttachText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AttachText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Autocorrect":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Autocorrect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoFitHeight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitHeight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AutoFitWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AutoFitWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BackpackAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BackpackAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Badge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Badge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BarcodeScanner":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BarcodeScanner/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery0":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery0/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery10/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery5/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery6":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery6/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery7":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery7/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery8":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery8/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Battery9":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Battery9/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryCharge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCharge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatterySaver":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatterySaver/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BatteryWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BatteryWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BeakerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BeakerOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BinFull":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BinFull/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothConnected/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothDisabled":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothDisabled/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BluetoothSearching":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BluetoothSearching/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoardGames":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardGames/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoardGames/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Book":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Book/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookArrowClockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookCoins":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCoins/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookCompass":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookCompass/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookContacts":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookContacts/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookDefault":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookDefault/20_f.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookExclamationMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookExclamationMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookInformation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookInformation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookLetter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookLetter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookmarkSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookmarkSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpenGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookOpenMicrophone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookOpenMicrophone/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookQuestionMarkRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookQuestionMarkRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookTemplate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTemplate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTemplate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookTheta":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookTheta/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BookToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BookToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottomDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderBottomThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderBottomThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderLeftRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderLeftRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderNone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderNone/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderOutside":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutside/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderOutsideThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderOutsideThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottomDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BorderTopBottomThick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BorderTopBottomThick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Bot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Bot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BotAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BotSparkle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BotSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowlSalad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowlSalad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BowTie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BowTie/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxMultipleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxMultipleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BoxToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BoxToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BracesVariable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BracesVariable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BrainCircuit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BrainCircuit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchForkHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchForkLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchForkLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BranchRequest":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchRequest/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BranchRequest/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BreakoutRoom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BreakoutRoom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BubbleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BubbleMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BubbleMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BugArrowCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugArrowCounterclockwise/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugArrowCounterclockwise/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BugProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugProhibited/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BugProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingBankToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingBankToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingGovernment":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingGovernment/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingLighthouse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingLighthouse/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingLighthouse/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetail/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailMore/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingRetailToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingRetailToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingTownhouse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingTownhouse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalculatorArrowClockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalculatorArrowClockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarAgenda":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarAgenda/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarChat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMention":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMention/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMention/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarMonth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarMonth/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWeekNumbers":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekNumbers/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalendarWeekStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalendarWeekStart/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallConnecting":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallConnecting/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallConnecting/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallExclamation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallExclamation/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallExclamation/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenError/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenError/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CalligraphyPenQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenQuestionMark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CalligraphyPenQuestionMark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CallPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CallPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraAdd/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CameraSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CameraSwitch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CardUI":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CardUI/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cast":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cast/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular3G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular3G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular4G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular4G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cellular5G":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cellular5G/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularData5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularData5/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CellularWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CellularWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CenterHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CenterVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CenterVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChartMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChartPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChartPerson/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatHelp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatHelp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatMail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMail/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatMail/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatVideo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Check":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Check/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Checkbox2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Checkbox2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckboxWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckboxWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkNote/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CheckmarkSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CheckmarkSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Chess":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chess/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Chess/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleEraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEraser/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleMultipleSubtractCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleMultipleSubtractCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleMultipleSubtractCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CircleSmall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CircleSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Class":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Class/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardDataBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardDataBar/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskListLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTaskListRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTaskListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardTextEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardTextEdit/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockArrowDownload":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockArrowDownload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClockToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClockToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDatabase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDatabase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDesktop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudDesktop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudFlow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CloudSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CloudSwap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeCircle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CodeTextEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CodeTextEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Collections":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Collections/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CollectionsAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CollectionsAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorBackground":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackground/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Column":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Column/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Column/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnArrowRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnArrowRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnDoubleCompare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnDoubleCompare/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnDoubleCompare/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnTriple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTriple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColumnTripleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColumnTripleEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Comma":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Comma/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommentNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommentNote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CommunicationPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CommunicationPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentView":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentView/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ContentViewGallery":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ContentViewGallery/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ControlButton":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ControlButton/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ConvertRange":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ConvertRange/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cookies":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cookies/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopyAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopyAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CopySelect":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CopySelect/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardClock/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardPerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CreditCardToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CreditCardToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropInterim":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterim/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropInterimOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropInterimOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeLink/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeRotate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeRotate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeRotate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CubeTree":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CubeTree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CursorClick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CursorClick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Cut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Cut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DarkTheme":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DarkTheme/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataArea":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataArea/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataBarVerticalAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataBarVerticalAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowRight/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseArrowUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLightning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseMultiple/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabasePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabasePlugConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePlugConnected/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabasePlugConnected/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSwitch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseSwitch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWarning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWarning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DatabaseWindow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWindow/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DatabaseWindow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataFunnel":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataFunnel/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataPie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataPie/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataScatter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataScatter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataSunburst":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataSunburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataTreemap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataTreemap/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataUsageToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataUsageToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataWaterfall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWaterfall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DataWhisker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DataWhisker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DecimalArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DecimalArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DecimalArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteDismiss/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteLines/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteLines/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeleteOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeleteOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopFlow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopFlow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSignal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSignal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopSpeakerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopSpeakerOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DesktopTower":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DesktopTower/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardLightningToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightningToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardLightningToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DeveloperBoardSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DeveloperBoardSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diagram":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diagram/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dialpad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dialpad/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DialpadOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DialpadOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dishwasher":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dishwasher/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DismissSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DismissSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Diversity":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Diversity/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DockRow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DockRow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBorder":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorder/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBorderPrint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBorderPrint/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBriefcase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBriefcase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentBulletListOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentBulletListOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentChevronDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentChevronDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentEndnote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentEndnote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFlowchart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFlowchart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentFooterDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentFooterDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeaderDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeaderDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentHeartPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentHeartPulse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentJavascript":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentJavascript/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentKey/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentKey/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscape":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscape/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeData":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeData/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentLandscapeSplitHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentLandscapeSplitHint/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMargins":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMargins/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultiplePercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultiplePercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultipleProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentMultipleSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentMultipleSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentOnePageColumns":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentOnePageColumns/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBottomRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBottomRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageBreak":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageBreak/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageNumber":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageNumber/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPageTopRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPageTopRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentPrint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentPrint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueue":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueue/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueueAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentQueueMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentQueueMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentSave":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentSave/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTableTruck":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTableTruck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextExtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextExtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentTextToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentTextToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DocumentWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DocumentWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoorTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoorTag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleSwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleSwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleTapSwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DoubleTapSwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DoubleTapSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Drag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Drag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerArrowDownload":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerArrowDownload/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawerSubtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawerSubtract/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawShape":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawShape/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrawText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrawText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBottle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkBottleOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkBottleOff/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DrinkToGo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DrinkToGo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DriveTrain":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DriveTrain/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenClosedAlert":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenClosedAlert/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenGroup":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenGroup/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenHeader":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenMirror":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenMirror/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenPagination":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenPagination/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSpan":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenStatusBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenStatusBar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenTablet":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenTablet/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenUpdate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenUpdate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenVerticalScroll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVerticalScroll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"DualScreenVibrate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/DualScreenVibrate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Dust":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Dust/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EditSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EditSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Elevator":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Elevator/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSadSlight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSadSlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSmileSlight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSmileSlight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EmojiSurprise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EmojiSurprise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Engine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Engine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EqualCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EqualCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Eraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Eraser/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserMedium":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserMedium/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserSegment":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSegment/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserSmall":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserSmall/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EraserTool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EraserTool/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ExtendedDock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ExtendedDock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyedropperOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyedropperOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"EyeLines":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/EyeLines/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FastAcceleration":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FastAcceleration/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FilterSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FilterSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fingerprint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fingerprint/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fireplace":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fireplace/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FixedWidth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FixedWidth/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlagCheckered":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagCheckered/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlagCheckered/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashAuto":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashAuto/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashlightOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashlightOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlashSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlashSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Flowchart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Flowchart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FlowchartCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FlowchartCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Fluent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Fluent/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderBriefcase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderBriefcase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderBriefcase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderLink/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FolderPeople":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FolderPeople/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontDecrease":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontDecrease/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FontIncrease":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FontIncrease/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodApple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodApple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodCarrot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodCarrot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodFish":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodFish/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodGrains":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodGrains/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FoodPizza":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FoodPizza/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Form":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Form/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FormMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormMultiple/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FormNew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FormNew/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS120":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS120/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS240":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS240/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"FPS960":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/FPS960/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gas":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gas/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GasPump":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GasPump/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gather":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gather/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gather/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gauge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gauge/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GaugeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GaugeAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GaugeAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Gesture":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Gesture/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GiftCardMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GiftCardMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeLocation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeLocation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeProhibited/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeProhibited/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeShield/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeSurface":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeSurface/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GlobeVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GlobeVideo/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridDots":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridDots/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Group":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Group/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupList/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GroupReturn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GroupReturn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Guardian":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Guardian/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GuestAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GuestAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandOpenHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandOpenHeart/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HandRightOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRightOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HandRightOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HDR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HDROff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HDROff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Headphones":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Headphones/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadphonesSoundWave":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadphonesSoundWave/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadsetAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeadsetVR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeadsetVR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HeartPulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HeartPulse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HighlightLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightLink/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HighlightLink/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HistoryDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HistoryDismiss/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeDatabase/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeMore/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomePerson/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"HomeSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/HomeSplit/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Icons":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Icons/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowBack":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowCounterclockwise":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowCounterclockwise/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageArrowForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/24_f.svg"},"Patterns":null},"ar":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/ar/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/ar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"he":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/he/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/he/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageArrowForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageCopy/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageGlobe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageGlobe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageReflection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageReflection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ImageShadow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ImageShadow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Incognito":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Incognito/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InfoShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InfoShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InfoShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStroke":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStroke/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStrokeArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"InkStrokeArrowUpDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/InkStrokeArrowUpDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Insert":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Insert/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Insert/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSChevronRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSChevronRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSChevronRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Joystick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Joystick/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Joystick/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Keyboard123":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Keyboard123/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardDock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardDock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutFloat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutFloat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutOneHandedLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutOneHandedLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutResize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutResize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardLayoutSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardLayoutSplit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyboardTab":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyboardTab/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"KeyReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/KeyReset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LaserTool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaserTool/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LaserTool/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lasso":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lasso/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LauncherSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LauncherSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Layer":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Layer/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LayerDiagonal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LayerDiagonalPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonalPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LayerDiagonalPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LearningApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LearningApp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LightbulbCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LightbulbCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Line":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Line/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineDashes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineDashes/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal1/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal1/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal3/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal3/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineHorizontal5Error":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5Error/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineHorizontal5Error/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineStyle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineStyle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LineThickness":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LineThickness/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LinkToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LinkToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Live":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Live/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LiveOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LiveOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationAddUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddUp/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationAddUp/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LocationLive":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LocationLive/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"LockShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/LockShield/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Lottery":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Lottery/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailAllUnread":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllUnread/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailAllUnread/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxAll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxAll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailInboxArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailInboxArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MailOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MailOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Markdown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Markdown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Markdown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MatchAppLayout":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MatchAppLayout/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MathFormatLinear":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MathFormatLinear/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MegaphoneCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MegaphoneCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MentionArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionArrowDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionArrowDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MentionBrackets":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionBrackets/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MentionBrackets/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Microscope":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Microscope/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MicSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MicSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Midi":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Midi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MobileOptimized":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MobileOptimized/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Mold":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Mold/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyCalculator":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyCalculator/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyHand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyHand/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneyOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneyOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MoneySettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneySettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MoneySettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainLocationBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationBottom/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainLocationTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainLocationTop/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MountainTrail":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MountainTrail/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_2x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_2x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_5x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_5x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier1_8x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier1_8x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier2x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier2x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Multiplier_5x":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Multiplier_5x/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNote2Play":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2Play/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNote2Play/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"MusicNoteOff1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/MusicNoteOff1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NavigationUnread":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NavigationUnread/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NetworkCheck":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NetworkCheck/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookError/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookEye":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookEye/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookEye/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSectionArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSectionArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSubsection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSubsection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NotebookSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NotebookSync/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NoteEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NoteEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbolDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"NumberSymbolSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/NumberSymbolSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"OrganizationHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OrganizationHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/OrganizationHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Orientation":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Orientation/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Oven":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Oven/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaddingTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaddingTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrushArrowDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PaintBrushArrowUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PaintBrushArrowUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pair":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pair/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottom/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottom/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottomContract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomContract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomContract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelBottomExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelBottomExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightCursor":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightCursor/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelRightExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelRightExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelSeparateWindow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelSeparateWindow/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelSeparateWindow/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelTopContract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopContract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopContract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PanelTopExpand":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopExpand/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PanelTopExpand/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Patch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Patient":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Patient/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PauseCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PauseCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pentagon":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pentagon/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleAudience":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleAudience/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleCommunityAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleCommunityAdd/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleEdit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleEdit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleQueue":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleQueue/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PeopleTeamToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PeopleTeamToolbox/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person5":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person5/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Person6":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Person6/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonAccounts":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonAccounts/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDesktop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonDesktop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonHeart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonHeart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonKey/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonKey/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonLightbulb":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonLightbulb/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonMoney":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonMoney/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonPill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonPill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonRunning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRunning/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonRunning/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonStarburst":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonStarburst/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonTag/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonVoice":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonVoice/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PersonWrench":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWrench/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PersonWrench/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDesktopAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktopAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDesktopAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneKey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneKey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLinkSetup":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLinkSetup/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhonePageHeader":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePageHeader/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhonePagination":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhonePagination/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneScreenTime":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneScreenTime/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneShake":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneShake/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneStatusBar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneStatusBar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneTablet":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneTablet/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneUpdate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneUpdateCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneUpdateCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneVerticalScroll":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVerticalScroll/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhoneVibrate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhoneVibrate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PhotoFilter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PhotoFilter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pi":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pi/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pipeline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pipeline/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelineAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineAdd/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelineArrowCurveDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineArrowCurveDown/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelineArrowCurveDown/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PipelinePlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelinePlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PipelinePlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pivot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pivot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlantGrass":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantGrass/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlantRagweed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlantRagweed/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlayingCards":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayingCards/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlayingCards/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlaySettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlaySettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlaySettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnected/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnectedAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugConnectedCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugConnectedCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PlugDisconnected":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PlugDisconnected/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PointScan":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PointScan/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortHDMI":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortHDMI/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortMicroUSB":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortMicroUSB/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortUSBA":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBA/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PortUSBC":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PortUSBC/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionBackward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionBackward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionToBack":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToBack/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PositionToFront":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PositionToFront/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Power":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Power/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Predictions":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Predictions/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Presenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Presenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenterOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenterOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PrintAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PrintAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Production":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Production/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProductionCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProductionCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProhibitedNote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedNote/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProhibitedNote/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Pulse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Pulse/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PulseSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PulseSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzleCubePiece":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCubePiece/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzleCubePiece/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PuzzlePieceShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzlePieceShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PuzzlePieceShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QRCode":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QRCode/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"QuizNew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/QuizNew/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Radar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Radar/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Radar/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadarCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RadarRectangleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarRectangleMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RadarRectangleMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RatioOneToOne":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RatioOneToOne/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReadingModeMobile":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReadingModeMobile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RealEstate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RealEstate/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptBag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ReceiptSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ReceiptSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RectanglePortraitLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectanglePortraitLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RectanglePortraitLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Recycle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Recycle/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Replay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Replay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Replay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Resize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Resize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeImage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeTable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ResizeVideo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ResizeVideo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RibbonStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RibbonStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RotateLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RotateRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RotateRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Router":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Router/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RowTriple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RowTriple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RSS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/RSS/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sanitize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sanitize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveImage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SaveSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SaveSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScaleFill":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScaleFill/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scales":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scales/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanObject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanObject/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTable":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTable/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanType":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanType/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTypeCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanTypeOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanTypeOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Scratchpad":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Scratchpad/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenCut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenCut/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenCut/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScreenSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScreenSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Screenshot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Screenshot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchInfo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchInfo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SearchSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SearchSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectAllOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectAllOn":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectAllOn/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObject":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObject/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkew":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkew/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkewDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SelectObjectSkewEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SelectObjectSkewEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendClock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SendCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SendCopy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ServerPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ServerPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SettingsChat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsChat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SettingsCogMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SettingsCogMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareAndroid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareAndroid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareCloseTray":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareCloseTray/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareiOS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareiOS/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShareScreenStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/28_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/28_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShareScreenStart/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldBadge":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldBadge/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldDismissShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismissShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldDismissShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldPersonAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPersonAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldPersonAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShieldProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShieldProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shifts30Minutes":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shifts30Minutes/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsAvailability":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsAvailability/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsDay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsOpen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsOpen/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsQuestionMark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsQuestionMark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShiftsTeam":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShiftsTeam/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPercent":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPercent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagPlay/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ShoppingBagTag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ShoppingBagTag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Shortpick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Shortpick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Showerhead":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Showerhead/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SidebarSearchLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchLTR/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchLTR/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SidebarSearchRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchRTL/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SidebarSearchRTL/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SignOut":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SignOut/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipBack10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipBack10/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForward10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward10/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForward30":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForward30/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SkipForwardTab":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SkipForwardTab/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Sleep":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Sleep/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideGrid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideGrid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideHide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideHide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideLayout":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLayout/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideLink":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideLink/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMicrophone":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMicrophone/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultipleArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideMultipleSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideMultipleSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSearch/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideSize":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideSize/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideTransition":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideTransition/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Smartwatch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Smartwatch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SmartwatchDot":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SmartwatchDot/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SoundSource":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundSource/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SoundWaveCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SoundWaveCircle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Spacebar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Spacebar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerBluetooth":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerBluetooth/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerSettings/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpeakerUSB":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpeakerUSB/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SpinneriOS":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpinneriOS/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SpinneriOS/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SplitHint":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHint/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SplitHint/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportAmericanFootball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportAmericanFootball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportBaseball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBaseball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportBasketball":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportBasketball/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SportHockey":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SportHockey/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareEraser":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareEraser/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareEraser/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquareHintApps":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquareHintApps/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SquaresNested":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquaresNested/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SquaresNested/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackArrowForward":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackArrowForward/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StackVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StackVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowRightEnd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightEnd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarArrowRightStart":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarArrowRightStart/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarEmphasis":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarEmphasis/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StarSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StarSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stethoscope":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stethoscope/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StickerAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StickerAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Storage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Storage/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Stream":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Stream/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamInput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamInputOutput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInputOutput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamInputOutput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StreamOutput":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamOutput/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StreamOutput/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"StyleGuide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/StyleGuide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SubGrid":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SubGrid/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SurfaceEarbuds":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceEarbuds/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SurfaceHub":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SurfaceHub/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwimmingPool":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwimmingPool/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeDown":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SwipeUp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Syringe":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Syringe/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"System":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/System/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowLeft/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopArrowLeft/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopClock/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopClock/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopCopy/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopCopy/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopMultipleBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopMultipleBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabDesktopNewPage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopNewPage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabDesktopNewPage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabInPrivateAccount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabInPrivateAccount/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableChecker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableChecker/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableChecker/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableColumnTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableColumnTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableCopy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCopy/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableCopy/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableImage":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableImage/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableImage/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMultiple/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableMultiple/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetLessThanOrEqualTo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetLessThanOrEqualTo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableOffsetSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableOffsetSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSimpleMultiple":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSimpleMultiple/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableSplit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSplit/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableSplit/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabletLaptop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletLaptop/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletLaptop/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabletSpeaker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabletSpeaker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabProhibited":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabProhibited/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TabShieldDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TabShieldDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagCircle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagCircle/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagCircle/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagReset":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagReset/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TagSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TagSearch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TapDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapDouble/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TapSingle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TapSingle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareDatabase/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareDatabase/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquarePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquarePerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquarePerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TaskListSquareSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TaskListSquareSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TasksApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TasksApp/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Teddy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Teddy/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddSpaceAfter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceAfter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddSpaceBefore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddSpaceBefore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAddT":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAddT/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributedEvenly":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedEvenly/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignDistributedVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignDistributedVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustify":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustify/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLow90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLow90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLowRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyLowRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyLowRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAlignJustifyRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAlignJustifyRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAsterisk":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAsterisk/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAsterisk/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBaseline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBaseline/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBaseline/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignBottomRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignBottomRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignCenter":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignCenter/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignMiddleRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignMiddleRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignTop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxAlignTopRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxAlignTopRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBoxSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBoxSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListCheckmark/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListCheckmark/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListDismiss/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListDismiss/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTRRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTL90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListRTLRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTLRotate90/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListRTLRotate90/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareClock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareClock/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareClock/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareEdit":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareEdit/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquarePerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/20_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/32_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/20_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquarePerson/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSearch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSearch/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSearch/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListSquareToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListSquareToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextCollapse":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextCollapse/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOne":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOne/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneNarrow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneNarrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneSemiNarrow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneSemiNarrow/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneWide":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWide/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnOneWideLightning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnOneWideLightning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnThree":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnThree/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwo":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwo/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwoLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextColumnTwoRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextColumnTwoRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextContinuous":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextContinuous/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescription":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescription/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescriptionLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDescriptionRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDescriptionRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionHorizontalRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionHorizontalRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate270Right":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate270Right/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90Left":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Left/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90Right":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90Right/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionRotate90RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionRotate90RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextDirectionVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextDirectionVertical/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextEditStyle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEditStyle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextEffects":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextEffects/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLineTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFirstLineTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFirstLineTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextFootnote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextFootnote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeft":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeft/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeftTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowLeftTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowLeftTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRightTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarArrowRightTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarArrowRightTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarCheckmark":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarCheckmark/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarDismiss":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarDismiss/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarError/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarError/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextGrammarSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextGrammarSettings/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHanging":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHanging/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHangingTempLTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHangingTempRTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHangingTempRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextHeader3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextHeader3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentDecreaseRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentDecreaseRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextIndentIncreaseRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextIndentIncreaseRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextLineSpacing":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextLineSpacing/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextMore":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberFormat":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberFormat/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTR90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTR90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListLTRRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/20_f.svg"},"Patterns":null},"LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRotate90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/20_f.svg"},"Patterns":null},"LTR":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/LTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"RTL":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/RTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRotate90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTL90":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTL90/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextNumberListRTLRotate270":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextNumberListRTLRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextParagraphDirection":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextParagraphDirection/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPeriodAsterisk":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPeriodAsterisk/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPeriodAsterisk/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionBehind":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionBehind/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionFront":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionFront/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionLine":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionLine/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionSquare":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionSquare/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionThrough":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionThrough/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionTight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTight/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextPositionTopBottom":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextPositionTopBottom/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextProofingTools":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/20_f.svg"},"Patterns":null},"en":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/en/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ko":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/ko/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"zh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/zh/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextProofingTools/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextUnderlineDouble":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextUnderlineDouble/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWholeWord":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWholeWord/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWholeWord/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextWordCount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextWordCount/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Thinking":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Thinking/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TicketHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TicketHorizontal/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimeAndWeather":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimeAndWeather/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timeline":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timeline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimePicker":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimePicker/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer10":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer10/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Timer3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Timer3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TimerOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TimerOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TooltipQuote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TooltipQuote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TopSpeed":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TopSpeed/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Transmission":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Transmission/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrayItemAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TrayItemRemove":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TrayItemRemove/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeDeciduous":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeDeciduous/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TreeEvergreen":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeEvergreen/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TreeEvergreen/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TVArrowRight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVArrowRight/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TVArrowRight/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Umbrella":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Umbrella/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"UninstallApp":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UninstallApp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"USBPlug":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/USBPlug/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"UsbStick":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/UsbStick/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleCableCar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleCableCar/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckBag":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckBag/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VehicleTruckCube":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VehicleTruckCube/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video360":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Video360Off":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360Off/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Video360Off/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoAdd/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoOff/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonStar":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStar/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPersonStarOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPersonStarOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPlayPause":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPlayPause/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoRecording":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoRecording/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoRecording/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSecurity":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSecurity/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSwitch":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSwitch/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoSync":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSync/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoSync/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ViewDesktop":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktop/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ViewDesktopMobile":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ViewDesktopMobile/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VirtualNetwork":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetwork/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetwork/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VirtualNetworkToolbox":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetworkToolbox/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VirtualNetworkToolbox/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VoicemailArrowSubtract":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowSubtract/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VoicemailArrowSubtract/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Vote":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Vote/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WalkieTalkie":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/28_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WalkieTalkie/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Wallpaper":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Wallpaper/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WarningShield":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WarningShield/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WarningShield/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Washer":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Washer/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherBlowingSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherBlowingSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherCloudy":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherCloudy/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherDrizzle":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDrizzle/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherDuststorm":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherDuststorm/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherFog":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherFog/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHailDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHailNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHailNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherHaze":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherHaze/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherPartlyCloudyNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherPartlyCloudyNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRain":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRain/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainShowersDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainShowersNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainShowersNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherRainSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherRainSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowflake":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowflake/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowShowerDay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerDay/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSnowShowerNight":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSnowShowerNight/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSqualls":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSqualls/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunnyHigh":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyHigh/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherSunnyLow":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherSunnyLow/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WeatherThunderstorm":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WeatherThunderstorm/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Whiteboard":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/24_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/24_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Whiteboard/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi1":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi1/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi2":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi2/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi3":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi3/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFi4":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFi4/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiLock":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiLock/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiOff/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WiFiWarning":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WiFiWarning/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAdOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowAdPerson":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdPerson/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowAdPerson/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowBulletList":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletList/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletList/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowBulletListAdd":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletListAdd/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowBulletListAdd/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowConsole":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowConsole/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowConsole/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowDatabase":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowDatabase/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderHorizontal":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontal/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontal/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderHorizontalOff":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontalOff/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderHorizontalOff/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowHeaderVertical":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderVertical/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowHeaderVertical/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowInPrivate":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivate/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivate/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowInPrivateAccount":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivateAccount/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowInPrivateAccount/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowLocationTarget":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowLocationTarget/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowLocationTarget/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowMultipleSwap":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultipleSwap/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowMultipleSwap/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowPlay":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowPlay/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowPlay/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowSettings":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowSettings/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowSettings/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WindowText":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowText/20_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WindowText/20_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"WrenchScrewdriver":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/WrenchScrewdriver/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxConsole":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxConsole/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"XboxControllerError":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/24_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/32_f.svg"},"Patterns":null},"48_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/48_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/24_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/32_r.svg"},"Patterns":null},"48_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/XboxControllerError/48_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Xray":{"Children":{"20_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/20_f.svg"},"Patterns":null},"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/24_f.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Xray/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"AppStore":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppStore/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/AppStore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"BuildingMore":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMore/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/BuildingMore/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Component2DoubleTapSwipeDown":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeDown/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeDown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"Component2DoubleTapSwipeUp":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeUp/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/Component2DoubleTapSwipeUp/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"CropSparkle":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropSparkle/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/CropSparkle/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"GridCircles":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/24_f.svg"},"Patterns":null},"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/28_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/GridCircles/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSArrowLTR":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowLTR/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowLTR/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"iOSArrowRTL":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowRTL/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/iOSArrowRTL/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ProjectionScreenText":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenText/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ProjectionScreenText/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ScanQRCode":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanQRCode/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ScanQRCode/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"SlideContent":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideContent/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/SlideContent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextBulletListLTRRotate270":{"Children":{"24_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate270/24_f.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextBulletListLTRRotate270/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ChatBubbles":{"Children":{"28_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/28_f.svg"},"Patterns":null},"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/32_f.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/28_r.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ChatBubbles/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ClipboardText":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardText/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ClipboardText/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TableDefault":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDefault/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TableDefault/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"TextAbcUnderlineDouble":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAbcUnderlineDouble/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/TextAbcUnderlineDouble/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"VideoPeople":{"Children":{"32_f.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPeople/32_f.svg"},"Patterns":null},"32_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/VideoPeople/32_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceBlocked":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceBlocked/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceOffline":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOffline/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceOOF":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceOOF/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"PresenceUnknown":{"Children":{"10_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/10_r.svg"},"Patterns":null},"12_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/12_r.svg"},"Patterns":null},"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/PresenceUnknown/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorFillAccent":{"Children":{"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/24_r.svg"},"Patterns":null},"28_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorFillAccent/28_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorLineAccent":{"Children":{"16_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/16_r.svg"},"Patterns":null},"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorLineAccent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"ColorBackgroundAccent":{"Children":{"20_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackgroundAccent/20_r.svg"},"Patterns":null},"24_r.svg":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"icons/ColorBackgroundAccent/24_r.svg"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Fast.Components.FluentUI.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Microsoft.Fast.Components.FluentUI.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal":{"Children":{"AuthenticationService.js":{"Children":null,"Asset":{"ContentRootIndex":3,"SubPath":"AuthenticationService.js"},"Patterns":null}},"Asset":null,"Patterns":null},"BlazorInputFile":{"Children":{"inputfile.js":{"Children":null,"Asset":{"ContentRootIndex":4,"SubPath":"inputfile.js"},"Patterns":null}},"Asset":null,"Patterns":null},"Blazored.Modal":{"Children":{"BlazoredModal.razor.js":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"BlazoredModal.razor.js"},"Patterns":null},"Blazored.Modal.bundle.scp.css":{"Children":null,"Asset":{"ContentRootIndex":5,"SubPath":"Blazored.Modal.bundle.scp.css"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"GraphSample.styles.css":{"Children":null,"Asset":{"ContentRootIndex":6,"SubPath":"GraphSample.styles.css"},"Patterns":null},"appsettings.json":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"appsettings.json"},"Patterns":null},"_framework":{"Children":{"AWSSDK.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.Core.dll"},"Patterns":null},"AWSSDK.SecurityToken.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.SecurityToken.dll"},"Patterns":null},"Azure.AI.OpenAI.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.OpenAI.dll"},"Patterns":null},"Azure.AI.TextAnalytics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.TextAnalytics.dll"},"Patterns":null},"Azure.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.Core.dll"},"Patterns":null},"AzureOpenAIClient.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AzureOpenAIClient.Http.dll"},"Patterns":null},"Blazored.Modal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Blazored.Modal.dll"},"Patterns":null},"BlazorInputFile.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BlazorInputFile.dll"},"Patterns":null},"ChartJSCore.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ChartJSCore.dll"},"Patterns":null},"DnsClient.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DnsClient.dll"},"Patterns":null},"GrapeCity.Documents.Imaging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Imaging.dll"},"Patterns":null},"GrapeCity.Documents.Pdf.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Pdf.dll"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Authorization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Authorization.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll"},"Patterns":null},"Microsoft.AspNetCore.WebUtilities.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.WebUtilities.dll"},"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Authentication.WebAssembly.Msal.dll"},"Patterns":null},"Microsoft.Bcl.AsyncInterfaces.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Bcl.AsyncInterfaces.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll"},"Patterns":null},"Microsoft.Extensions.Hosting.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Hosting.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Http.dll"},"Patterns":null},"Microsoft.Extensions.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.dll"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll"},"Patterns":null},"Microsoft.Extensions.Options.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Options.dll"},"Patterns":null},"Microsoft.Extensions.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll"},"Patterns":null},"Microsoft.Fast.Components.FluentUI.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Fast.Components.FluentUI.dll"},"Patterns":null},"Microsoft.Graph.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.dll"},"Patterns":null},"Microsoft.Graph.Beta.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Beta.dll"},"Patterns":null},"Microsoft.Graph.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Core.dll"},"Patterns":null},"Microsoft.IdentityModel.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Abstractions.dll"},"Patterns":null},"Microsoft.IdentityModel.JsonWebTokens.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.JsonWebTokens.dll"},"Patterns":null},"Microsoft.IdentityModel.Logging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Logging.dll"},"Patterns":null},"Microsoft.IdentityModel.Protocols.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.dll"},"Patterns":null},"Microsoft.IdentityModel.Protocols.OpenIdConnect.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll"},"Patterns":null},"Microsoft.IdentityModel.Tokens.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Tokens.dll"},"Patterns":null},"Microsoft.JSInterop.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.dll"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll"},"Patterns":null},"Microsoft.Kiota.Abstractions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Abstractions.dll"},"Patterns":null},"Microsoft.Kiota.Authentication.Azure.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Authentication.Azure.dll"},"Patterns":null},"Microsoft.Kiota.Http.HttpClientLibrary.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Form.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Form.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Json.dll"},"Patterns":null},"Microsoft.Kiota.Serialization.Text.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Text.dll"},"Patterns":null},"Microsoft.Net.Http.Headers.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Net.Http.Headers.dll"},"Patterns":null},"MongoDB.Bson.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Bson.dll"},"Patterns":null},"MongoDB.Driver.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.dll"},"Patterns":null},"MongoDB.Driver.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.Core.dll"},"Patterns":null},"MongoDB.Libmongocrypt.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Libmongocrypt.dll"},"Patterns":null},"Newtonsoft.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Newtonsoft.Json.dll"},"Patterns":null},"DocumentFormat.OpenXml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DocumentFormat.OpenXml.dll"},"Patterns":null},"BouncyCastle.Crypto.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BouncyCastle.Crypto.dll"},"Patterns":null},"SharpCompress.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharpCompress.dll"},"Patterns":null},"Snappier.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Snappier.dll"},"Patterns":null},"System.IdentityModel.Tokens.Jwt.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IdentityModel.Tokens.Jwt.dll"},"Patterns":null},"System.IO.Packaging.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Packaging.dll"},"Patterns":null},"System.IO.Pipelines.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipelines.dll"},"Patterns":null},"System.Memory.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.Data.dll"},"Patterns":null},"Tavis.UriTemplates.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Tavis.UriTemplates.dll"},"Patterns":null},"TimeZoneConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/TimeZoneConverter.dll"},"Patterns":null},"ZstdSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ZstdSharp.dll"},"Patterns":null},"ja":{"Children":{"GrapeCity.Documents.Imaging.resources.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Imaging.resources.dll"},"Patterns":null},"GrapeCity.Documents.Pdf.resources.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Pdf.resources.dll"},"Patterns":null},"GrapeCity.Documents.Imaging.resources.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Imaging.resources.dll.gz"},"Patterns":null},"GrapeCity.Documents.Pdf.resources.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ja/GrapeCity.Documents.Pdf.resources.dll.gz"},"Patterns":null}},"Asset":null,"Patterns":null},"Microsoft.CSharp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.CSharp.dll"},"Patterns":null},"Microsoft.VisualBasic.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll"},"Patterns":null},"Microsoft.VisualBasic.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.dll"},"Patterns":null},"Microsoft.Win32.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Primitives.dll"},"Patterns":null},"Microsoft.Win32.Registry.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Registry.dll"},"Patterns":null},"System.AppContext.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.AppContext.dll"},"Patterns":null},"System.Buffers.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Buffers.dll"},"Patterns":null},"System.Collections.Concurrent.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Concurrent.dll"},"Patterns":null},"System.Collections.Immutable.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Immutable.dll"},"Patterns":null},"System.Collections.NonGeneric.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.NonGeneric.dll"},"Patterns":null},"System.Collections.Specialized.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Specialized.dll"},"Patterns":null},"System.Collections.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.dll"},"Patterns":null},"System.ComponentModel.Annotations.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Annotations.dll"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll"},"Patterns":null},"System.ComponentModel.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Primitives.dll"},"Patterns":null},"System.ComponentModel.TypeConverter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll"},"Patterns":null},"System.ComponentModel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.dll"},"Patterns":null},"System.Configuration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Configuration.dll"},"Patterns":null},"System.Console.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Console.dll"},"Patterns":null},"System.Core.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Core.dll"},"Patterns":null},"System.Data.Common.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.Common.dll"},"Patterns":null},"System.Data.DataSetExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.DataSetExtensions.dll"},"Patterns":null},"System.Data.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.dll"},"Patterns":null},"System.Diagnostics.Contracts.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Contracts.dll"},"Patterns":null},"System.Diagnostics.Debug.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Debug.dll"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll"},"Patterns":null},"System.Diagnostics.Process.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Process.dll"},"Patterns":null},"System.Diagnostics.StackTrace.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.StackTrace.dll"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll"},"Patterns":null},"System.Diagnostics.Tools.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tools.dll"},"Patterns":null},"System.Diagnostics.TraceSource.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TraceSource.dll"},"Patterns":null},"System.Diagnostics.Tracing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tracing.dll"},"Patterns":null},"System.Drawing.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.Primitives.dll"},"Patterns":null},"System.Drawing.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.dll"},"Patterns":null},"System.Dynamic.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Dynamic.Runtime.dll"},"Patterns":null},"System.Formats.Asn1.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Asn1.dll"},"Patterns":null},"System.Formats.Tar.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Tar.dll"},"Patterns":null},"System.Globalization.Calendars.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Calendars.dll"},"Patterns":null},"System.Globalization.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Extensions.dll"},"Patterns":null},"System.Globalization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.dll"},"Patterns":null},"System.IO.Compression.Brotli.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.Brotli.dll"},"Patterns":null},"System.IO.Compression.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.FileSystem.dll"},"Patterns":null},"System.IO.Compression.ZipFile.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.ZipFile.dll"},"Patterns":null},"System.IO.Compression.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.dll"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll"},"Patterns":null},"System.IO.FileSystem.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll"},"Patterns":null},"System.IO.FileSystem.Watcher.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll"},"Patterns":null},"System.IO.FileSystem.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.dll"},"Patterns":null},"System.IO.IsolatedStorage.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.IsolatedStorage.dll"},"Patterns":null},"System.IO.MemoryMappedFiles.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll"},"Patterns":null},"System.IO.Pipes.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll"},"Patterns":null},"System.IO.Pipes.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.dll"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll"},"Patterns":null},"System.IO.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.dll"},"Patterns":null},"System.Linq.Expressions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Expressions.dll"},"Patterns":null},"System.Linq.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Parallel.dll"},"Patterns":null},"System.Linq.Queryable.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Queryable.dll"},"Patterns":null},"System.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.dll"},"Patterns":null},"System.Memory.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.dll"},"Patterns":null},"System.Net.Http.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.Json.dll"},"Patterns":null},"System.Net.Http.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.dll"},"Patterns":null},"System.Net.HttpListener.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.HttpListener.dll"},"Patterns":null},"System.Net.Mail.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Mail.dll"},"Patterns":null},"System.Net.NameResolution.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NameResolution.dll"},"Patterns":null},"System.Net.NetworkInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NetworkInformation.dll"},"Patterns":null},"System.Net.Ping.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Ping.dll"},"Patterns":null},"System.Net.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Primitives.dll"},"Patterns":null},"System.Net.Quic.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Quic.dll"},"Patterns":null},"System.Net.Requests.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Requests.dll"},"Patterns":null},"System.Net.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Security.dll"},"Patterns":null},"System.Net.ServicePoint.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.ServicePoint.dll"},"Patterns":null},"System.Net.Sockets.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Sockets.dll"},"Patterns":null},"System.Net.WebClient.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebClient.dll"},"Patterns":null},"System.Net.WebHeaderCollection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebHeaderCollection.dll"},"Patterns":null},"System.Net.WebProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebProxy.dll"},"Patterns":null},"System.Net.WebSockets.Client.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.Client.dll"},"Patterns":null},"System.Net.WebSockets.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.dll"},"Patterns":null},"System.Net.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.dll"},"Patterns":null},"System.Numerics.Vectors.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.Vectors.dll"},"Patterns":null},"System.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.dll"},"Patterns":null},"System.ObjectModel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ObjectModel.dll"},"Patterns":null},"System.Private.DataContractSerialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.DataContractSerialization.dll"},"Patterns":null},"System.Private.Uri.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Uri.dll"},"Patterns":null},"System.Private.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.Linq.dll"},"Patterns":null},"System.Private.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.dll"},"Patterns":null},"System.Reflection.DispatchProxy.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.DispatchProxy.dll"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll"},"Patterns":null},"System.Reflection.Emit.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.dll"},"Patterns":null},"System.Reflection.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Extensions.dll"},"Patterns":null},"System.Reflection.Metadata.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Metadata.dll"},"Patterns":null},"System.Reflection.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Primitives.dll"},"Patterns":null},"System.Reflection.TypeExtensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.TypeExtensions.dll"},"Patterns":null},"System.Reflection.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.dll"},"Patterns":null},"System.Resources.Reader.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Reader.dll"},"Patterns":null},"System.Resources.ResourceManager.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.ResourceManager.dll"},"Patterns":null},"System.Resources.Writer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Writer.dll"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll"},"Patterns":null},"System.Runtime.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Extensions.dll"},"Patterns":null},"System.Runtime.Handles.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Handles.dll"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.dll"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll"},"Patterns":null},"System.Runtime.InteropServices.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.dll"},"Patterns":null},"System.Runtime.Intrinsics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Intrinsics.dll"},"Patterns":null},"System.Runtime.Loader.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Loader.dll"},"Patterns":null},"System.Runtime.Numerics.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Numerics.dll"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll"},"Patterns":null},"System.Runtime.Serialization.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Json.dll"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll"},"Patterns":null},"System.Runtime.Serialization.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll"},"Patterns":null},"System.Runtime.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.dll"},"Patterns":null},"System.Runtime.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.dll"},"Patterns":null},"System.Security.AccessControl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.AccessControl.dll"},"Patterns":null},"System.Security.Claims.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Claims.dll"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll"},"Patterns":null},"System.Security.Cryptography.Cng.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Cng.dll"},"Patterns":null},"System.Security.Cryptography.Csp.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Csp.dll"},"Patterns":null},"System.Security.Cryptography.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll"},"Patterns":null},"System.Security.Cryptography.Primitives.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll"},"Patterns":null},"System.Security.Cryptography.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.dll"},"Patterns":null},"System.Security.Principal.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.Windows.dll"},"Patterns":null},"System.Security.Principal.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.dll"},"Patterns":null},"System.Security.SecureString.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.SecureString.dll"},"Patterns":null},"System.Security.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.dll"},"Patterns":null},"System.ServiceModel.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceModel.Web.dll"},"Patterns":null},"System.ServiceProcess.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceProcess.dll"},"Patterns":null},"System.Text.Encoding.CodePages.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.CodePages.dll"},"Patterns":null},"System.Text.Encoding.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.Extensions.dll"},"Patterns":null},"System.Text.Encoding.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.dll"},"Patterns":null},"System.Text.Encodings.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encodings.Web.dll"},"Patterns":null},"System.Text.Json.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Json.dll"},"Patterns":null},"System.Text.RegularExpressions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.RegularExpressions.dll"},"Patterns":null},"System.Threading.Channels.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Channels.dll"},"Patterns":null},"System.Threading.Overlapped.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Overlapped.dll"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll"},"Patterns":null},"System.Threading.Tasks.Extensions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll"},"Patterns":null},"System.Threading.Tasks.Parallel.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll"},"Patterns":null},"System.Threading.Tasks.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.dll"},"Patterns":null},"System.Threading.Thread.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Thread.dll"},"Patterns":null},"System.Threading.ThreadPool.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.ThreadPool.dll"},"Patterns":null},"System.Threading.Timer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Timer.dll"},"Patterns":null},"System.Threading.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.dll"},"Patterns":null},"System.Transactions.Local.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.Local.dll"},"Patterns":null},"System.Transactions.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.dll"},"Patterns":null},"System.ValueTuple.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ValueTuple.dll"},"Patterns":null},"System.Web.HttpUtility.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.HttpUtility.dll"},"Patterns":null},"System.Web.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.dll"},"Patterns":null},"System.Windows.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Windows.dll"},"Patterns":null},"System.Xml.Linq.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Linq.dll"},"Patterns":null},"System.Xml.ReaderWriter.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.ReaderWriter.dll"},"Patterns":null},"System.Xml.Serialization.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Serialization.dll"},"Patterns":null},"System.Xml.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XDocument.dll"},"Patterns":null},"System.Xml.XPath.XDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.XDocument.dll"},"Patterns":null},"System.Xml.XPath.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.dll"},"Patterns":null},"System.Xml.XmlDocument.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlDocument.dll"},"Patterns":null},"System.Xml.XmlSerializer.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlSerializer.dll"},"Patterns":null},"System.Xml.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.dll"},"Patterns":null},"System.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.dll"},"Patterns":null},"WindowsBase.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/WindowsBase.dll"},"Patterns":null},"mscorlib.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/mscorlib.dll"},"Patterns":null},"netstandard.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/netstandard.dll"},"Patterns":null},"System.Private.CoreLib.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.CoreLib.dll"},"Patterns":null},"dotnet.7.0.5.9her4wdnhl.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.7.0.5.9her4wdnhl.js"},"Patterns":null},"dotnet.timezones.blat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.timezones.blat"},"Patterns":null},"dotnet.wasm":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.wasm"},"Patterns":null},"icudt.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt.dat"},"Patterns":null},"icudt_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_CJK.dat"},"Patterns":null},"icudt_EFIGS.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_EFIGS.dat"},"Patterns":null},"icudt_no_CJK.dat":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_no_CJK.dat"},"Patterns":null},"SharedModels.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.dll"},"Patterns":null},"SharedModels.pdb":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.pdb"},"Patterns":null},"GraphSample.dll":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.dll"},"Patterns":null},"GraphSample.pdb":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.pdb"},"Patterns":null},"blazor.webassembly.js":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.webassembly.js"},"Patterns":null},"AWSSDK.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.Core.dll.gz"},"Patterns":null},"AWSSDK.SecurityToken.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AWSSDK.SecurityToken.dll.gz"},"Patterns":null},"Azure.AI.OpenAI.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.OpenAI.dll.gz"},"Patterns":null},"Azure.AI.TextAnalytics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.AI.TextAnalytics.dll.gz"},"Patterns":null},"Azure.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Azure.Core.dll.gz"},"Patterns":null},"AzureOpenAIClient.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/AzureOpenAIClient.Http.dll.gz"},"Patterns":null},"Blazored.Modal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Blazored.Modal.dll.gz"},"Patterns":null},"BlazorInputFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BlazorInputFile.dll.gz"},"Patterns":null},"ChartJSCore.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ChartJSCore.dll.gz"},"Patterns":null},"DnsClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DnsClient.dll.gz"},"Patterns":null},"GrapeCity.Documents.Imaging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Imaging.dll.gz"},"Patterns":null},"GrapeCity.Documents.Pdf.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GrapeCity.Documents.Pdf.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Authorization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Authorization.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Forms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Forms.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.Web.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.Metadata.dll.gz"},"Patterns":null},"Microsoft.AspNetCore.WebUtilities.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.AspNetCore.WebUtilities.dll.gz"},"Patterns":null},"Microsoft.Authentication.WebAssembly.Msal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Authentication.WebAssembly.Msal.dll.gz"},"Patterns":null},"Microsoft.Bcl.AsyncInterfaces.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Bcl.AsyncInterfaces.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Binder.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Binder.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.FileExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Configuration.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Configuration.Json.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.dll.gz"},"Patterns":null},"Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileProviders.Physical.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz"},"Patterns":null},"Microsoft.Extensions.FileSystemGlobbing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz"},"Patterns":null},"Microsoft.Extensions.Hosting.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Hosting.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Http.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.dll.gz"},"Patterns":null},"Microsoft.Extensions.Logging.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Extensions.Options.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Options.dll.gz"},"Patterns":null},"Microsoft.Extensions.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Extensions.Primitives.dll.gz"},"Patterns":null},"Microsoft.Fast.Components.FluentUI.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Fast.Components.FluentUI.dll.gz"},"Patterns":null},"Microsoft.Graph.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.dll.gz"},"Patterns":null},"Microsoft.Graph.Beta.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Beta.dll.gz"},"Patterns":null},"Microsoft.Graph.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Graph.Core.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Abstractions.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.JsonWebTokens.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.JsonWebTokens.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Logging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Logging.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Protocols.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll.gz"},"Patterns":null},"Microsoft.IdentityModel.Tokens.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.IdentityModel.Tokens.dll.gz"},"Patterns":null},"Microsoft.JSInterop.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.dll.gz"},"Patterns":null},"Microsoft.JSInterop.WebAssembly.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.JSInterop.WebAssembly.dll.gz"},"Patterns":null},"Microsoft.Kiota.Abstractions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Abstractions.dll.gz"},"Patterns":null},"Microsoft.Kiota.Authentication.Azure.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Authentication.Azure.dll.gz"},"Patterns":null},"Microsoft.Kiota.Http.HttpClientLibrary.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Http.HttpClientLibrary.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Form.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Form.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Json.dll.gz"},"Patterns":null},"Microsoft.Kiota.Serialization.Text.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Kiota.Serialization.Text.dll.gz"},"Patterns":null},"Microsoft.Net.Http.Headers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Net.Http.Headers.dll.gz"},"Patterns":null},"MongoDB.Bson.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Bson.dll.gz"},"Patterns":null},"MongoDB.Driver.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.dll.gz"},"Patterns":null},"MongoDB.Driver.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Driver.Core.dll.gz"},"Patterns":null},"MongoDB.Libmongocrypt.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/MongoDB.Libmongocrypt.dll.gz"},"Patterns":null},"Newtonsoft.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Newtonsoft.Json.dll.gz"},"Patterns":null},"DocumentFormat.OpenXml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/DocumentFormat.OpenXml.dll.gz"},"Patterns":null},"BouncyCastle.Crypto.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/BouncyCastle.Crypto.dll.gz"},"Patterns":null},"SharpCompress.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharpCompress.dll.gz"},"Patterns":null},"Snappier.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Snappier.dll.gz"},"Patterns":null},"System.IdentityModel.Tokens.Jwt.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IdentityModel.Tokens.Jwt.dll.gz"},"Patterns":null},"System.IO.Packaging.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Packaging.dll.gz"},"Patterns":null},"System.IO.Pipelines.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipelines.dll.gz"},"Patterns":null},"System.Memory.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.Data.dll.gz"},"Patterns":null},"Tavis.UriTemplates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Tavis.UriTemplates.dll.gz"},"Patterns":null},"TimeZoneConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/TimeZoneConverter.dll.gz"},"Patterns":null},"ZstdSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/ZstdSharp.dll.gz"},"Patterns":null},"Microsoft.CSharp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.CSharp.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.Core.dll.gz"},"Patterns":null},"Microsoft.VisualBasic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.VisualBasic.dll.gz"},"Patterns":null},"Microsoft.Win32.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Primitives.dll.gz"},"Patterns":null},"Microsoft.Win32.Registry.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/Microsoft.Win32.Registry.dll.gz"},"Patterns":null},"System.AppContext.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.AppContext.dll.gz"},"Patterns":null},"System.Buffers.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Buffers.dll.gz"},"Patterns":null},"System.Collections.Concurrent.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Concurrent.dll.gz"},"Patterns":null},"System.Collections.Immutable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Immutable.dll.gz"},"Patterns":null},"System.Collections.NonGeneric.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.NonGeneric.dll.gz"},"Patterns":null},"System.Collections.Specialized.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.Specialized.dll.gz"},"Patterns":null},"System.Collections.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Collections.dll.gz"},"Patterns":null},"System.ComponentModel.Annotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Annotations.dll.gz"},"Patterns":null},"System.ComponentModel.DataAnnotations.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.DataAnnotations.dll.gz"},"Patterns":null},"System.ComponentModel.EventBasedAsync.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.EventBasedAsync.dll.gz"},"Patterns":null},"System.ComponentModel.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.Primitives.dll.gz"},"Patterns":null},"System.ComponentModel.TypeConverter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.TypeConverter.dll.gz"},"Patterns":null},"System.ComponentModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ComponentModel.dll.gz"},"Patterns":null},"System.Configuration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Configuration.dll.gz"},"Patterns":null},"System.Console.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Console.dll.gz"},"Patterns":null},"System.Core.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Core.dll.gz"},"Patterns":null},"System.Data.Common.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.Common.dll.gz"},"Patterns":null},"System.Data.DataSetExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.DataSetExtensions.dll.gz"},"Patterns":null},"System.Data.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Data.dll.gz"},"Patterns":null},"System.Diagnostics.Contracts.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Contracts.dll.gz"},"Patterns":null},"System.Diagnostics.Debug.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Debug.dll.gz"},"Patterns":null},"System.Diagnostics.DiagnosticSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.DiagnosticSource.dll.gz"},"Patterns":null},"System.Diagnostics.FileVersionInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.FileVersionInfo.dll.gz"},"Patterns":null},"System.Diagnostics.Process.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Process.dll.gz"},"Patterns":null},"System.Diagnostics.StackTrace.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.StackTrace.dll.gz"},"Patterns":null},"System.Diagnostics.TextWriterTraceListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TextWriterTraceListener.dll.gz"},"Patterns":null},"System.Diagnostics.Tools.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tools.dll.gz"},"Patterns":null},"System.Diagnostics.TraceSource.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.TraceSource.dll.gz"},"Patterns":null},"System.Diagnostics.Tracing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Diagnostics.Tracing.dll.gz"},"Patterns":null},"System.Drawing.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.Primitives.dll.gz"},"Patterns":null},"System.Drawing.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Drawing.dll.gz"},"Patterns":null},"System.Dynamic.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Dynamic.Runtime.dll.gz"},"Patterns":null},"System.Formats.Asn1.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Asn1.dll.gz"},"Patterns":null},"System.Formats.Tar.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Formats.Tar.dll.gz"},"Patterns":null},"System.Globalization.Calendars.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Calendars.dll.gz"},"Patterns":null},"System.Globalization.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.Extensions.dll.gz"},"Patterns":null},"System.Globalization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Globalization.dll.gz"},"Patterns":null},"System.IO.Compression.Brotli.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.Brotli.dll.gz"},"Patterns":null},"System.IO.Compression.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.FileSystem.dll.gz"},"Patterns":null},"System.IO.Compression.ZipFile.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.ZipFile.dll.gz"},"Patterns":null},"System.IO.Compression.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Compression.dll.gz"},"Patterns":null},"System.IO.FileSystem.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.AccessControl.dll.gz"},"Patterns":null},"System.IO.FileSystem.DriveInfo.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.DriveInfo.dll.gz"},"Patterns":null},"System.IO.FileSystem.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Primitives.dll.gz"},"Patterns":null},"System.IO.FileSystem.Watcher.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.Watcher.dll.gz"},"Patterns":null},"System.IO.FileSystem.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.FileSystem.dll.gz"},"Patterns":null},"System.IO.IsolatedStorage.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.IsolatedStorage.dll.gz"},"Patterns":null},"System.IO.MemoryMappedFiles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.MemoryMappedFiles.dll.gz"},"Patterns":null},"System.IO.Pipes.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.AccessControl.dll.gz"},"Patterns":null},"System.IO.Pipes.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.Pipes.dll.gz"},"Patterns":null},"System.IO.UnmanagedMemoryStream.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.UnmanagedMemoryStream.dll.gz"},"Patterns":null},"System.IO.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.IO.dll.gz"},"Patterns":null},"System.Linq.Expressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Expressions.dll.gz"},"Patterns":null},"System.Linq.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Parallel.dll.gz"},"Patterns":null},"System.Linq.Queryable.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.Queryable.dll.gz"},"Patterns":null},"System.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Linq.dll.gz"},"Patterns":null},"System.Memory.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Memory.dll.gz"},"Patterns":null},"System.Net.Http.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.Json.dll.gz"},"Patterns":null},"System.Net.Http.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Http.dll.gz"},"Patterns":null},"System.Net.HttpListener.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.HttpListener.dll.gz"},"Patterns":null},"System.Net.Mail.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Mail.dll.gz"},"Patterns":null},"System.Net.NameResolution.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NameResolution.dll.gz"},"Patterns":null},"System.Net.NetworkInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.NetworkInformation.dll.gz"},"Patterns":null},"System.Net.Ping.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Ping.dll.gz"},"Patterns":null},"System.Net.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Primitives.dll.gz"},"Patterns":null},"System.Net.Quic.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Quic.dll.gz"},"Patterns":null},"System.Net.Requests.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Requests.dll.gz"},"Patterns":null},"System.Net.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Security.dll.gz"},"Patterns":null},"System.Net.ServicePoint.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.ServicePoint.dll.gz"},"Patterns":null},"System.Net.Sockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.Sockets.dll.gz"},"Patterns":null},"System.Net.WebClient.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebClient.dll.gz"},"Patterns":null},"System.Net.WebHeaderCollection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebHeaderCollection.dll.gz"},"Patterns":null},"System.Net.WebProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebProxy.dll.gz"},"Patterns":null},"System.Net.WebSockets.Client.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.Client.dll.gz"},"Patterns":null},"System.Net.WebSockets.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.WebSockets.dll.gz"},"Patterns":null},"System.Net.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Net.dll.gz"},"Patterns":null},"System.Numerics.Vectors.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.Vectors.dll.gz"},"Patterns":null},"System.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Numerics.dll.gz"},"Patterns":null},"System.ObjectModel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ObjectModel.dll.gz"},"Patterns":null},"System.Private.DataContractSerialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.DataContractSerialization.dll.gz"},"Patterns":null},"System.Private.Uri.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Uri.dll.gz"},"Patterns":null},"System.Private.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.Linq.dll.gz"},"Patterns":null},"System.Private.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.Xml.dll.gz"},"Patterns":null},"System.Reflection.DispatchProxy.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.DispatchProxy.dll.gz"},"Patterns":null},"System.Reflection.Emit.ILGeneration.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.ILGeneration.dll.gz"},"Patterns":null},"System.Reflection.Emit.Lightweight.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.Lightweight.dll.gz"},"Patterns":null},"System.Reflection.Emit.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Emit.dll.gz"},"Patterns":null},"System.Reflection.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Extensions.dll.gz"},"Patterns":null},"System.Reflection.Metadata.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Metadata.dll.gz"},"Patterns":null},"System.Reflection.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.Primitives.dll.gz"},"Patterns":null},"System.Reflection.TypeExtensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.TypeExtensions.dll.gz"},"Patterns":null},"System.Reflection.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Reflection.dll.gz"},"Patterns":null},"System.Resources.Reader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Reader.dll.gz"},"Patterns":null},"System.Resources.ResourceManager.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.ResourceManager.dll.gz"},"Patterns":null},"System.Resources.Writer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Resources.Writer.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.Unsafe.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.Unsafe.dll.gz"},"Patterns":null},"System.Runtime.CompilerServices.VisualC.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.CompilerServices.VisualC.dll.gz"},"Patterns":null},"System.Runtime.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Extensions.dll.gz"},"Patterns":null},"System.Runtime.Handles.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Handles.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.JavaScript.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.JavaScript.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.RuntimeInformation.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz"},"Patterns":null},"System.Runtime.InteropServices.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.InteropServices.dll.gz"},"Patterns":null},"System.Runtime.Intrinsics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Intrinsics.dll.gz"},"Patterns":null},"System.Runtime.Loader.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Loader.dll.gz"},"Patterns":null},"System.Runtime.Numerics.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Numerics.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Formatters.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Formatters.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Json.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Primitives.dll.gz"},"Patterns":null},"System.Runtime.Serialization.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.Xml.dll.gz"},"Patterns":null},"System.Runtime.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.Serialization.dll.gz"},"Patterns":null},"System.Runtime.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Runtime.dll.gz"},"Patterns":null},"System.Security.AccessControl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.AccessControl.dll.gz"},"Patterns":null},"System.Security.Claims.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Claims.dll.gz"},"Patterns":null},"System.Security.Cryptography.Algorithms.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Algorithms.dll.gz"},"Patterns":null},"System.Security.Cryptography.Cng.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Cng.dll.gz"},"Patterns":null},"System.Security.Cryptography.Csp.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Csp.dll.gz"},"Patterns":null},"System.Security.Cryptography.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Encoding.dll.gz"},"Patterns":null},"System.Security.Cryptography.OpenSsl.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.OpenSsl.dll.gz"},"Patterns":null},"System.Security.Cryptography.Primitives.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.Primitives.dll.gz"},"Patterns":null},"System.Security.Cryptography.X509Certificates.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.X509Certificates.dll.gz"},"Patterns":null},"System.Security.Cryptography.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Cryptography.dll.gz"},"Patterns":null},"System.Security.Principal.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.Windows.dll.gz"},"Patterns":null},"System.Security.Principal.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.Principal.dll.gz"},"Patterns":null},"System.Security.SecureString.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.SecureString.dll.gz"},"Patterns":null},"System.Security.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Security.dll.gz"},"Patterns":null},"System.ServiceModel.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceModel.Web.dll.gz"},"Patterns":null},"System.ServiceProcess.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ServiceProcess.dll.gz"},"Patterns":null},"System.Text.Encoding.CodePages.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.CodePages.dll.gz"},"Patterns":null},"System.Text.Encoding.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.Extensions.dll.gz"},"Patterns":null},"System.Text.Encoding.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encoding.dll.gz"},"Patterns":null},"System.Text.Encodings.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Encodings.Web.dll.gz"},"Patterns":null},"System.Text.Json.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.Json.dll.gz"},"Patterns":null},"System.Text.RegularExpressions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Text.RegularExpressions.dll.gz"},"Patterns":null},"System.Threading.Channels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Channels.dll.gz"},"Patterns":null},"System.Threading.Overlapped.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Overlapped.dll.gz"},"Patterns":null},"System.Threading.Tasks.Dataflow.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Dataflow.dll.gz"},"Patterns":null},"System.Threading.Tasks.Extensions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Extensions.dll.gz"},"Patterns":null},"System.Threading.Tasks.Parallel.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.Parallel.dll.gz"},"Patterns":null},"System.Threading.Tasks.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Tasks.dll.gz"},"Patterns":null},"System.Threading.Thread.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Thread.dll.gz"},"Patterns":null},"System.Threading.ThreadPool.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.ThreadPool.dll.gz"},"Patterns":null},"System.Threading.Timer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.Timer.dll.gz"},"Patterns":null},"System.Threading.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Threading.dll.gz"},"Patterns":null},"System.Transactions.Local.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.Local.dll.gz"},"Patterns":null},"System.Transactions.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Transactions.dll.gz"},"Patterns":null},"System.ValueTuple.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.ValueTuple.dll.gz"},"Patterns":null},"System.Web.HttpUtility.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.HttpUtility.dll.gz"},"Patterns":null},"System.Web.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Web.dll.gz"},"Patterns":null},"System.Windows.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Windows.dll.gz"},"Patterns":null},"System.Xml.Linq.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Linq.dll.gz"},"Patterns":null},"System.Xml.ReaderWriter.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.ReaderWriter.dll.gz"},"Patterns":null},"System.Xml.Serialization.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.Serialization.dll.gz"},"Patterns":null},"System.Xml.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.XDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.XDocument.dll.gz"},"Patterns":null},"System.Xml.XPath.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XPath.dll.gz"},"Patterns":null},"System.Xml.XmlDocument.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlDocument.dll.gz"},"Patterns":null},"System.Xml.XmlSerializer.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.XmlSerializer.dll.gz"},"Patterns":null},"System.Xml.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Xml.dll.gz"},"Patterns":null},"System.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.dll.gz"},"Patterns":null},"WindowsBase.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/WindowsBase.dll.gz"},"Patterns":null},"mscorlib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/mscorlib.dll.gz"},"Patterns":null},"netstandard.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/netstandard.dll.gz"},"Patterns":null},"System.Private.CoreLib.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/System.Private.CoreLib.dll.gz"},"Patterns":null},"dotnet.7.0.5.9her4wdnhl.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.7.0.5.9her4wdnhl.js.gz"},"Patterns":null},"dotnet.timezones.blat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.timezones.blat.gz"},"Patterns":null},"dotnet.wasm.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/dotnet.wasm.gz"},"Patterns":null},"icudt.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt.dat.gz"},"Patterns":null},"icudt_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_CJK.dat.gz"},"Patterns":null},"icudt_EFIGS.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_EFIGS.dat.gz"},"Patterns":null},"icudt_no_CJK.dat.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/icudt_no_CJK.dat.gz"},"Patterns":null},"SharedModels.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.dll.gz"},"Patterns":null},"SharedModels.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/SharedModels.pdb.gz"},"Patterns":null},"GraphSample.dll.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.dll.gz"},"Patterns":null},"GraphSample.pdb.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/GraphSample.pdb.gz"},"Patterns":null},"blazor.webassembly.js.gz":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.webassembly.js.gz"},"Patterns":null},"blazor.boot.json":{"Children":null,"Asset":{"ContentRootIndex":7,"SubPath":"_framework/blazor.boot.json"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.pack.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.pack.json new file mode 100644 index 000000000..2a092ad8f --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets.pack.json @@ -0,0 +1,157 @@ +{ + "Files": [ + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\bin\\Debug\\net7.0\\wwwroot\\_framework\\blazor.webassembly.js", + "PackagePath": "staticwebassets\\_framework\\blazor.webassembly.js" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\build-gz\\rUmG1DOI.gz", + "PackagePath": "staticwebassets\\_framework\\blazor.webassembly.js.gz" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\Debug\\net7.0\\scopedcss\\bundle\\GraphSample.styles.css", + "PackagePath": "staticwebassets\\GraphSample.styles.css" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\TeamsLogin.js", + "PackagePath": "staticwebassets\\TeamsLogin.js" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\appsettings.json", + "PackagePath": "staticwebassets\\appsettings.json" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\app.css", + "PackagePath": "staticwebassets\\css\\app.css" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\bootstrap.css.map", + "PackagePath": "staticwebassets\\css\\bootstrap.css.map" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\bootstrap.min.css", + "PackagePath": "staticwebassets\\css\\bootstrap.min.css" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\bootstrap.min.css.map", + "PackagePath": "staticwebassets\\css\\bootstrap.min.css.map" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\FONT-LICENSE", + "PackagePath": "staticwebassets\\css\\open-iconic" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\ICON-LICENSE", + "PackagePath": "staticwebassets\\css\\open-iconic" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\README.md", + "PackagePath": "staticwebassets\\css\\open-iconic\\README.md" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.eot" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.otf" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.svg" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.ttf" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.woff" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\favicon.ico", + "PackagePath": "staticwebassets\\favicon.ico" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\icon-192.png", + "PackagePath": "staticwebassets\\icon-192.png" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\identityTeams.js", + "PackagePath": "staticwebassets\\identityTeams.js" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\binder_RGB_logotype_white_transparent_1135x512.png", + "PackagePath": "staticwebassets\\img\\binder_RGB_logotype_white_transparent_1135x512.png" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\bindercoloured.png", + "PackagePath": "staticwebassets\\img\\bindercoloured.png" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\nexus.png", + "PackagePath": "staticwebassets\\img\\nexus.png" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\no-profile-photo.png", + "PackagePath": "staticwebassets\\img\\no-profile-photo.png" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\img\\openai-white-logomark.png", + "PackagePath": "staticwebassets\\img\\openai-white-logomark.png" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\index.html", + "PackagePath": "staticwebassets\\index.html" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\intro.jpg", + "PackagePath": "staticwebassets\\intro.jpg" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\manifest.json", + "PackagePath": "staticwebassets\\manifest.json" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\mgtInterop.js", + "PackagePath": "staticwebassets\\mgtInterop.js" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\service-worker.js", + "PackagePath": "staticwebassets\\service-worker.js" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\service-worker.published.js", + "PackagePath": "staticwebassets\\service-worker.published.js" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\teamHelper.js", + "PackagePath": "staticwebassets\\teamHelper.js" + }, + { + "Id": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\wwwroot\\windowResizeInterop.js", + "PackagePath": "staticwebassets\\windowResizeInterop.js" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.build.GraphSample.props", + "PackagePath": "build\\GraphSample.props" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.buildMultiTargeting.GraphSample.props", + "PackagePath": "buildMultiTargeting\\GraphSample.props" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.buildTransitive.GraphSample.props", + "PackagePath": "buildTransitive\\GraphSample.props" + } + ], + "ElementsToRemove": [] +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 000000000..204165526 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.GraphSample.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,548 @@ + + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + appsettings.json + All + All + Primary + + BlazorWebAssemblyResource + settings + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\appsettings.json)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/app.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\app.css)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/bootstrap.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap.css.map)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/bootstrap.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap.min.css)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/bootstrap.min.css.map + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap.min.css.map)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/FONT-LICENSE + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\FONT-LICENSE)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/font/css/open-iconic-bootstrap.min.css + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\css\open-iconic-bootstrap.min.css)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/font/fonts/open-iconic.eot + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.eot)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/font/fonts/open-iconic.otf + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.otf)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/font/fonts/open-iconic.svg + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.svg)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/font/fonts/open-iconic.ttf + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.ttf)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/font/fonts/open-iconic.woff + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.woff)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/ICON-LICENSE + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\ICON-LICENSE)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + css/open-iconic/README.md + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\README.md)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + favicon.ico + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + GraphSample.styles.css + All + CurrentProject + Primary + + ScopedCss + ApplicationBundle + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\GraphSample.styles.css)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + icon-192.png + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\icon-192.png)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + identityTeams.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\identityTeams.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + img/bindercoloured.png + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\img\bindercoloured.png)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + img/binder_RGB_logotype_white_transparent_1135x512.png + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\img\binder_RGB_logotype_white_transparent_1135x512.png)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + img/nexus.png + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\img\nexus.png)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + img/no-profile-photo.png + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\img\no-profile-photo.png)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + img/openai-white-logomark.png + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\img\openai-white-logomark.png)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + index.html + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\index.html)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + intro.jpg + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\intro.jpg)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + manifest.json + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\manifest.json)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + mgtInterop.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\mgtInterop.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + service-worker.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\service-worker.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + service-worker.published.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\service-worker.published.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + teamHelper.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\teamHelper.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + TeamsLogin.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\TeamsLogin.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + windowResizeInterop.js + All + All + Primary + + + + Never + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\windowResizeInterop.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + _framework/blazor.webassembly.js + All + All + Primary + + BlazorWebAssemblyResource + boot + PreserveNewest + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\_framework\blazor.webassembly.js)) + + + Package + GraphSample + $(MSBuildThisFileDirectory)..\staticwebassets\ + / + _framework/blazor.webassembly.js.gz + All + All + Alternative + C:\Users\mahas\Downloads\HackathonMicrosoft\GraphSample\GraphSample\bin\Debug\net7.0\wwwroot\_framework\blazor.webassembly.js + Content-Encoding + gzip + PreserveNewest + PreserveNewest + $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\_framework\blazor.webassembly.js.gz)) + + + \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.build.GraphSample.props b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.build.GraphSample.props new file mode 100644 index 000000000..5a6032a7c --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.build.GraphSample.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.GraphSample.props b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.GraphSample.props new file mode 100644 index 000000000..6a2b965e0 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.GraphSample.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.GraphSample.props b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.GraphSample.props new file mode 100644 index 000000000..839437b24 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.GraphSample.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.dgspec.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.dgspec.json new file mode 100644 index 000000000..b41b5c4f2 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.dgspec.json @@ -0,0 +1,224 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\GraphSample.csproj": {} + }, + "projects": { + "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\GraphSample.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\GraphSample.csproj", + "projectName": "GraphSample", + "projectPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\GraphSample.csproj", + "packagesPath": "C:\\Users\\mahas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\mahas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\SharedModels.csproj": { + "projectPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\SharedModels.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Azure.AI.OpenAI": { + "target": "Package", + "version": "[1.0.0-beta.5, )" + }, + "Azure.AI.TextAnalytics": { + "target": "Package", + "version": "[5.2.0, )" + }, + "AzureOpenAIClient": { + "target": "Package", + "version": "[1.0.2, )" + }, + "BlazorInputFile": { + "target": "Package", + "version": "[0.2.0, )" + }, + "Blazored.Modal": { + "target": "Package", + "version": "[7.1.0, )" + }, + "ChartJSCore": { + "target": "Package", + "version": "[3.10.0, )" + }, + "GrapeCity.Documents.Pdf": { + "target": "Package", + "version": "[6.1.2, )" + }, + "Microsoft.AspNetCore.Components.WebAssembly": { + "target": "Package", + "version": "[7.0.5, )" + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.5, )" + }, + "Microsoft.AspNetCore.WebUtilities": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.Authentication.WebAssembly.Msal": { + "target": "Package", + "version": "[7.0.5, )" + }, + "Microsoft.Fast.Components.FluentUI": { + "target": "Package", + "version": "[2.3.0, )" + }, + "Microsoft.Graph": { + "target": "Package", + "version": "[5.9.0, )" + }, + "Microsoft.Graph.Beta": { + "target": "Package", + "version": "[5.32.0-preview, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "Open-XML-SDK": { + "target": "Package", + "version": "[2.9.1, )" + }, + "TimeZoneConverter": { + "target": "Package", + "version": "[6.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Runtime.Mono.browser-wasm", + "version": "[7.0.5, 7.0.5]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.203\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "browser-wasm": { + "#import": [] + } + } + }, + "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\SharedModels.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\SharedModels.csproj", + "projectName": "SharedModels", + "projectPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\SharedModels.csproj", + "packagesPath": "C:\\Users\\mahas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\mahas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "MongoDB.Bson": { + "target": "Package", + "version": "[2.19.1, )" + }, + "MongoDB.Driver": { + "target": "Package", + "version": "[2.19.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.203\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.g.props b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.g.props new file mode 100644 index 000000000..8d2f63124 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.g.props @@ -0,0 +1,29 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\mahas\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.5.0 + + + + + + + + + + + + + + + C:\Users\mahas\.nuget\packages\awssdk.core\3.7.100.14 + C:\Users\mahas\.nuget\packages\awssdk.securitytoken\3.7.100.14 + C:\Users\mahas\.nuget\packages\microsoft.aspnetcore.components.webassembly.devserver\7.0.5 + + \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.g.targets b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.g.targets new file mode 100644 index 000000000..f1067af25 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/GraphSample.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/project.assets.json b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/project.assets.json new file mode 100644 index 000000000..890eb304e --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/project.assets.json @@ -0,0 +1,28384 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "AWSSDK.Core/3.7.100.14": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "type": "package", + "dependencies": { + "AWSSDK.Core": "[3.7.100.14, 4.0.0)" + }, + "compile": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + } + }, + "Azure.AI.OpenAI/1.0.0-beta.5": { + "type": "package", + "dependencies": { + "Azure.Core": "1.30.0", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Azure.AI.OpenAI.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.AI.OpenAI.dll": { + "related": ".xml" + } + } + }, + "Azure.AI.TextAnalytics/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.25.0", + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Azure.AI.TextAnalytics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.AI.TextAnalytics.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.30.0": { + "type": "package", + "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" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "AzureOpenAIClient/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/AzureOpenAIClient.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AzureOpenAIClient.Http.dll": {} + } + }, + "Blazored.Modal/7.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.3", + "Microsoft.AspNetCore.Components.Web": "6.0.3", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.JSInterop.WebAssembly": "6.0.3" + }, + "compile": { + "lib/net6.0/Blazored.Modal.dll": {} + }, + "runtime": { + "lib/net6.0/Blazored.Modal.dll": {} + }, + "build": { + "buildTransitive/Blazored.Modal.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Blazored.Modal.props": {} + } + }, + "BlazorInputFile/0.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "3.1.0-preview3.19555.2", + "Microsoft.AspNetCore.Components.Web": "3.1.0-preview3.19555.2" + }, + "compile": { + "lib/netstandard2.1/BlazorInputFile.dll": {} + }, + "runtime": { + "lib/netstandard2.1/BlazorInputFile.dll": {} + }, + "build": { + "buildTransitive/BlazorInputFile.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/BlazorInputFile.props": {} + } + }, + "ChartJSCore/3.10.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netstandard2.0/ChartJSCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ChartJSCore.dll": {} + } + }, + "DnsClient/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "compile": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + } + }, + "GrapeCity.Documents.Imaging/6.1.2": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0", + "System.Memory": "4.5.0", + "System.Numerics.Vectors": "4.4.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/GrapeCity.Documents.Imaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/GrapeCity.Documents.Imaging.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/netstandard2.0/ja/GrapeCity.Documents.Imaging.resources.dll": { + "locale": "ja" + } + } + }, + "GrapeCity.Documents.Pdf/6.1.2": { + "type": "package", + "dependencies": { + "GrapeCity.Documents.Imaging": "[6.1.2]", + "Portable.BouncyCastle": "1.8.2" + }, + "compile": { + "lib/netstandard2.0/GrapeCity.Documents.Pdf.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/GrapeCity.Documents.Pdf.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/netstandard2.0/ja/GrapeCity.Documents.Pdf.resources.dll": { + "locale": "ja" + } + } + }, + "Microsoft.AspNetCore.Authorization/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "7.0.5", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.1" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "7.0.5", + "Microsoft.AspNetCore.Components.Analyzers": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/7.0.5": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Authorization/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "7.0.5", + "Microsoft.AspNetCore.Components": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "7.0.5", + "Microsoft.AspNetCore.Components.Forms": "7.0.5", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.JSInterop": "7.0.5", + "System.IO.Pipelines": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "7.0.5", + "Microsoft.Extensions.Configuration.Binder": "7.0.4", + "Microsoft.Extensions.Configuration.Json": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0", + "Microsoft.JSInterop.WebAssembly": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "build": { + "build/net7.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.Authentication/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Authorization": "7.0.5", + "Microsoft.AspNetCore.Components.Web": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer/7.0.5": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {} + } + }, + "Microsoft.AspNetCore.Metadata/7.0.5": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Authentication.WebAssembly.Msal/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly.Authentication": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/Microsoft.Authentication.WebAssembly.Msal.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Authentication.WebAssembly.Msal.props": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/7.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Physical": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Http/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/7.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Fast.Components.FluentUI/2.3.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "7.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "7.0.0", + "Microsoft.Extensions.Http": "7.0.0", + "System.Text.Json": "7.0.2" + }, + "compile": { + "lib/net7.0/Microsoft.Fast.Components.FluentUI.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Fast.Components.FluentUI.dll": { + "related": ".xml" + } + }, + "build": { + "build/Microsoft.Fast.Components.FluentUI.props": {}, + "buildTransitive/Microsoft.Fast.Components.FluentUI.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Fast.Components.FluentUI.targets": {} + } + }, + "Microsoft.Graph/5.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Graph.Core": "3.0.6" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Graph.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Graph.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Graph.Beta/5.32.0-preview": { + "type": "package", + "dependencies": { + "Microsoft.Graph.Core": "3.0.6" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Graph.Beta.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Graph.Beta.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Graph.Core/3.0.6": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.29.0", + "Microsoft.Kiota.Abstractions": "1.1.1", + "Microsoft.Kiota.Authentication.Azure": "1.0.2", + "Microsoft.Kiota.Http.HttpClientLibrary": "1.0.2", + "Microsoft.Kiota.Serialization.Form": "1.0.1", + "Microsoft.Kiota.Serialization.Json": "1.0.5", + "Microsoft.Kiota.Serialization.Text": "1.0.1", + "NETStandard.Library": "2.0.3", + "System.Security.Claims": "4.3.0" + }, + "compile": { + "lib/net6.0/Microsoft.Graph.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Graph.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.29.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.29.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.29.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.29.0", + "Microsoft.IdentityModel.Tokens": "6.29.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.29.0", + "System.IdentityModel.Tokens.Jwt": "6.29.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.29.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/7.0.5": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop.WebAssembly/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.JSInterop": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Abstractions/1.1.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "[6.0.0, 8.0.0)", + "Tavis.UriTemplates": "2.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Authentication.Azure/1.0.2": { + "type": "package", + "dependencies": { + "Azure.Core": "1.30.0", + "Microsoft.Kiota.Abstractions": "1.1.0", + "System.Diagnostics.DiagnosticSource": "[6.0.0, 8.0.0)" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Authentication.Azure.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Authentication.Azure.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Http.HttpClientLibrary/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.1.1", + "System.Diagnostics.DiagnosticSource": "[6.0.0, 8.0.0)", + "System.Text.Json": "[6.0.0, 8.0.0)" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Http.HttpClientLibrary.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Http.HttpClientLibrary.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Serialization.Form/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Form.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Form.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Serialization.Json/1.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.1.0", + "System.Text.Json": "[6.0.0, 8.0.0)" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Serialization.Text/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Text.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Text.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml.zip" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml.zip" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MongoDB.Bson/2.19.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/2.19.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.19.1", + "MongoDB.Driver.Core": "2.19.1", + "MongoDB.Libmongocrypt": "1.7.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.Core/2.19.1": { + "type": "package", + "dependencies": { + "AWSSDK.SecurityToken": "3.7.100.14", + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.19.1", + "MongoDB.Libmongocrypt": "1.7.0", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.6.2" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Libmongocrypt/1.7.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "assetType": "native", + "rid": "linux" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win/native/mongocrypt.dll": { + "assetType": "native", + "rid": "win" + } + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Open-XML-SDK/2.9.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Packaging": "4.5.0", + "System.Runtime.Serialization.Xml": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "Portable.BouncyCastle/1.8.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "Snappier/1.0.0": { + "type": "package", + "compile": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "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", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.29.0", + "Microsoft.IdentityModel.Tokens": "6.29.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Packaging/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Packaging.dll": {} + } + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.6/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Memory/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Private.DataContractSerialization/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "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.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "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.Runtime.Serialization.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0", + "System.Xml.XmlSerializer": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml.zip" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml.zip" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "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.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml.zip" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml.zip" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/7.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "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.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "Tavis.UriTemplates/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Tavis.UriTemplates.dll": {} + } + }, + "TimeZoneConverter/6.1.0": { + "type": "package", + "compile": { + "lib/net6.0/TimeZoneConverter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/TimeZoneConverter.dll": { + "related": ".xml" + } + } + }, + "ZstdSharp.Port/0.6.2": { + "type": "package", + "compile": { + "lib/net6.0/ZstdSharp.dll": {} + }, + "runtime": { + "lib/net6.0/ZstdSharp.dll": {} + } + }, + "SharedModels/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "MongoDB.Bson": "2.19.1", + "MongoDB.Driver": "2.19.1" + }, + "compile": { + "bin/placeholder/SharedModels.dll": {} + }, + "runtime": { + "bin/placeholder/SharedModels.dll": {} + } + } + }, + "net7.0/browser-wasm": { + "AWSSDK.Core/3.7.100.14": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "type": "package", + "dependencies": { + "AWSSDK.Core": "[3.7.100.14, 4.0.0)" + }, + "compile": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "related": ".pdb;.xml" + } + } + }, + "Azure.AI.OpenAI/1.0.0-beta.5": { + "type": "package", + "dependencies": { + "Azure.Core": "1.30.0", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Azure.AI.OpenAI.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.AI.OpenAI.dll": { + "related": ".xml" + } + } + }, + "Azure.AI.TextAnalytics/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.25.0", + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/netstandard2.0/Azure.AI.TextAnalytics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.AI.TextAnalytics.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.30.0": { + "type": "package", + "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" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "AzureOpenAIClient/1.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/AzureOpenAIClient.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.1/AzureOpenAIClient.Http.dll": {} + } + }, + "Blazored.Modal/7.1.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "6.0.3", + "Microsoft.AspNetCore.Components.Web": "6.0.3", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.JSInterop.WebAssembly": "6.0.3" + }, + "compile": { + "lib/net6.0/Blazored.Modal.dll": {} + }, + "runtime": { + "lib/net6.0/Blazored.Modal.dll": {} + }, + "build": { + "buildTransitive/Blazored.Modal.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Blazored.Modal.props": {} + } + }, + "BlazorInputFile/0.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "3.1.0-preview3.19555.2", + "Microsoft.AspNetCore.Components.Web": "3.1.0-preview3.19555.2" + }, + "compile": { + "lib/netstandard2.1/BlazorInputFile.dll": {} + }, + "runtime": { + "lib/netstandard2.1/BlazorInputFile.dll": {} + }, + "build": { + "buildTransitive/BlazorInputFile.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/BlazorInputFile.props": {} + } + }, + "ChartJSCore/3.10.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netstandard2.0/ChartJSCore.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ChartJSCore.dll": {} + } + }, + "DnsClient/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "compile": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + } + }, + "GrapeCity.Documents.Imaging/6.1.2": { + "type": "package", + "dependencies": { + "System.Buffers": "4.4.0", + "System.Memory": "4.5.0", + "System.Numerics.Vectors": "4.4.0", + "System.Runtime.CompilerServices.Unsafe": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/GrapeCity.Documents.Imaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/GrapeCity.Documents.Imaging.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/netstandard2.0/ja/GrapeCity.Documents.Imaging.resources.dll": { + "locale": "ja" + } + } + }, + "GrapeCity.Documents.Pdf/6.1.2": { + "type": "package", + "dependencies": { + "GrapeCity.Documents.Imaging": "[6.1.2]", + "Portable.BouncyCastle": "1.8.2" + }, + "compile": { + "lib/netstandard2.0/GrapeCity.Documents.Pdf.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/GrapeCity.Documents.Pdf.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/netstandard2.0/ja/GrapeCity.Documents.Pdf.resources.dll": { + "locale": "ja" + } + } + }, + "Microsoft.AspNetCore.Authorization/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "7.0.5", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.1" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "7.0.5", + "Microsoft.AspNetCore.Components.Analyzers": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Analyzers/7.0.5": { + "type": "package", + "build": { + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} + } + }, + "Microsoft.AspNetCore.Components.Authorization/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "7.0.5", + "Microsoft.AspNetCore.Components": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Forms/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.Forms.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.Web/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components": "7.0.5", + "Microsoft.AspNetCore.Components.Forms": "7.0.5", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.JSInterop": "7.0.5", + "System.IO.Pipelines": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.Web.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Components.WebAssembly/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "7.0.5", + "Microsoft.Extensions.Configuration.Binder": "7.0.4", + "Microsoft.Extensions.Configuration.Json": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0", + "Microsoft.JSInterop.WebAssembly": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll": { + "related": ".xml" + } + }, + "build": { + "build/net7.0/Microsoft.AspNetCore.Components.WebAssembly.props": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.Authentication/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Authorization": "7.0.5", + "Microsoft.AspNetCore.Components.Web": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props": {} + } + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer/7.0.5": { + "type": "package", + "build": { + "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {} + } + }, + "Microsoft.AspNetCore.Metadata/7.0.5": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Authentication.WebAssembly.Msal/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.WebAssembly.Authentication": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/Microsoft.Authentication.WebAssembly.Msal.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Authentication.WebAssembly.Msal.props": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/7.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Physical": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Http/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Http.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/7.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Fast.Components.FluentUI/2.3.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Components.Web": "7.0.5", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "7.0.0", + "Microsoft.Extensions.Http": "7.0.0", + "System.Text.Json": "7.0.2" + }, + "compile": { + "lib/net7.0/Microsoft.Fast.Components.FluentUI.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Fast.Components.FluentUI.dll": { + "related": ".xml" + } + }, + "build": { + "build/Microsoft.Fast.Components.FluentUI.props": {}, + "buildTransitive/Microsoft.Fast.Components.FluentUI.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Fast.Components.FluentUI.targets": {} + } + }, + "Microsoft.Graph/5.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Graph.Core": "3.0.6" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Graph.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Graph.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Graph.Beta/5.32.0-preview": { + "type": "package", + "dependencies": { + "Microsoft.Graph.Core": "3.0.6" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Graph.Beta.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Graph.Beta.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Graph.Core/3.0.6": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.29.0", + "Microsoft.Kiota.Abstractions": "1.1.1", + "Microsoft.Kiota.Authentication.Azure": "1.0.2", + "Microsoft.Kiota.Http.HttpClientLibrary": "1.0.2", + "Microsoft.Kiota.Serialization.Form": "1.0.1", + "Microsoft.Kiota.Serialization.Json": "1.0.5", + "Microsoft.Kiota.Serialization.Text": "1.0.1", + "NETStandard.Library": "2.0.3", + "System.Security.Claims": "4.3.0" + }, + "compile": { + "lib/net6.0/Microsoft.Graph.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Graph.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.29.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.29.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.29.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.29.0", + "Microsoft.IdentityModel.Tokens": "6.29.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.29.0", + "System.IdentityModel.Tokens.Jwt": "6.29.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.29.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop/7.0.5": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.JSInterop.dll": { + "related": ".xml" + } + } + }, + "Microsoft.JSInterop.WebAssembly/7.0.5": { + "type": "package", + "dependencies": { + "Microsoft.JSInterop": "7.0.5" + }, + "compile": { + "lib/net7.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.JSInterop.WebAssembly.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Abstractions/1.1.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "[6.0.0, 8.0.0)", + "Tavis.UriTemplates": "2.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Authentication.Azure/1.0.2": { + "type": "package", + "dependencies": { + "Azure.Core": "1.30.0", + "Microsoft.Kiota.Abstractions": "1.1.0", + "System.Diagnostics.DiagnosticSource": "[6.0.0, 8.0.0)" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Authentication.Azure.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Authentication.Azure.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Http.HttpClientLibrary/1.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.1.1", + "System.Diagnostics.DiagnosticSource": "[6.0.0, 8.0.0)", + "System.Text.Json": "[6.0.0, 8.0.0)" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Http.HttpClientLibrary.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Http.HttpClientLibrary.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Serialization.Form/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Form.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Form.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Serialization.Json/1.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.1.0", + "System.Text.Json": "[6.0.0, 8.0.0)" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Json.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Kiota.Serialization.Text/1.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Kiota.Abstractions": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Text.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Text.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml.zip" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml.zip" + } + } + }, + "MongoDB.Bson/2.19.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/2.19.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.19.1", + "MongoDB.Driver.Core": "2.19.1", + "MongoDB.Libmongocrypt": "1.7.0" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver.Core/2.19.1": { + "type": "package", + "dependencies": { + "AWSSDK.SecurityToken": "3.7.100.14", + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "2.19.1", + "MongoDB.Libmongocrypt": "1.7.0", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.6.2" + }, + "compile": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Libmongocrypt/1.7.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "build/_._": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/_._": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Open-XML-SDK/2.9.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.IO.Packaging": "4.5.0", + "System.Runtime.Serialization.Xml": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "Portable.BouncyCastle/1.8.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "Snappier/1.0.0": { + "type": "package", + "compile": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "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", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tools": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.29.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.29.0", + "Microsoft.IdentityModel.Tokens": "6.29.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "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", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Packaging/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.Packaging.dll": {} + } + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.6/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Memory/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Private.DataContractSerialization/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "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.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "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.Runtime.Serialization.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0", + "System.Xml.XmlSerializer": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "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", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "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", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "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", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Private.DataContractSerialization": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml.zip" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml.zip" + } + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "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.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Claims.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Security.Principal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml.zip" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml.zip" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Text.Json/7.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "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.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.3.0": { + "type": "package", + "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" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {} + } + }, + "Tavis.UriTemplates/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Tavis.UriTemplates.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Tavis.UriTemplates.dll": {} + } + }, + "TimeZoneConverter/6.1.0": { + "type": "package", + "compile": { + "lib/net6.0/TimeZoneConverter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/TimeZoneConverter.dll": { + "related": ".xml" + } + } + }, + "ZstdSharp.Port/0.6.2": { + "type": "package", + "compile": { + "lib/net6.0/ZstdSharp.dll": {} + }, + "runtime": { + "lib/net6.0/ZstdSharp.dll": {} + } + }, + "SharedModels/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "MongoDB.Bson": "2.19.1", + "MongoDB.Driver": "2.19.1" + }, + "compile": { + "bin/placeholder/SharedModels.dll": {} + }, + "runtime": { + "bin/placeholder/SharedModels.dll": {} + } + } + } + }, + "libraries": { + "AWSSDK.Core/3.7.100.14": { + "sha512": "gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==", + "type": "package", + "path": "awssdk.core/3.7.100.14", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "awssdk.core.3.7.100.14.nupkg.sha512", + "awssdk.core.nuspec", + "lib/net35/AWSSDK.Core.dll", + "lib/net35/AWSSDK.Core.pdb", + "lib/net35/AWSSDK.Core.xml", + "lib/net45/AWSSDK.Core.dll", + "lib/net45/AWSSDK.Core.pdb", + "lib/net45/AWSSDK.Core.xml", + "lib/netcoreapp3.1/AWSSDK.Core.dll", + "lib/netcoreapp3.1/AWSSDK.Core.pdb", + "lib/netcoreapp3.1/AWSSDK.Core.xml", + "lib/netstandard2.0/AWSSDK.Core.dll", + "lib/netstandard2.0/AWSSDK.Core.pdb", + "lib/netstandard2.0/AWSSDK.Core.xml", + "tools/account-management.ps1" + ] + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "sha512": "dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==", + "type": "package", + "path": "awssdk.securitytoken/3.7.100.14", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/AWSSDK.SecurityToken.CodeAnalysis.dll", + "awssdk.securitytoken.3.7.100.14.nupkg.sha512", + "awssdk.securitytoken.nuspec", + "lib/net35/AWSSDK.SecurityToken.dll", + "lib/net35/AWSSDK.SecurityToken.pdb", + "lib/net35/AWSSDK.SecurityToken.xml", + "lib/net45/AWSSDK.SecurityToken.dll", + "lib/net45/AWSSDK.SecurityToken.pdb", + "lib/net45/AWSSDK.SecurityToken.xml", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.pdb", + "lib/netcoreapp3.1/AWSSDK.SecurityToken.xml", + "lib/netstandard2.0/AWSSDK.SecurityToken.dll", + "lib/netstandard2.0/AWSSDK.SecurityToken.pdb", + "lib/netstandard2.0/AWSSDK.SecurityToken.xml", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Azure.AI.OpenAI/1.0.0-beta.5": { + "sha512": "wlCf4D6iutnXQXVgNMT9SuO6gFH5e6JHb3yCK4ZF6lL+VtTrTspluqZfySE/C3KK5j2Cqdu6PbsUnZfsu/PPOQ==", + "type": "package", + "path": "azure.ai.openai/1.0.0-beta.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.ai.openai.1.0.0-beta.5.nupkg.sha512", + "azure.ai.openai.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.AI.OpenAI.dll", + "lib/netstandard2.0/Azure.AI.OpenAI.xml" + ] + }, + "Azure.AI.TextAnalytics/5.2.0": { + "sha512": "RZ+LzJyzE9JB67bEeQew7w2cPCzQfRSGgzfaiPuo2FxML9d6sMElqpgBjPaUZjDLSCiIkK26nxSanIFqLiXh/Q==", + "type": "package", + "path": "azure.ai.textanalytics/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.ai.textanalytics.5.2.0.nupkg.sha512", + "azure.ai.textanalytics.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.AI.TextAnalytics.dll", + "lib/netstandard2.0/Azure.AI.TextAnalytics.xml" + ] + }, + "Azure.Core/1.30.0": { + "sha512": "w5Z2uTASP+EsnG4kqQsYtKTf41x1czIu1CgPuDQdHILxCk+IP2DiXazUcfTqr6kebi7S6ah927mrQx1nT/4bnw==", + "type": "package", + "path": "azure.core/1.30.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.30.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net5.0/Azure.Core.dll", + "lib/net5.0/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netcoreapp2.1/Azure.Core.dll", + "lib/netcoreapp2.1/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "AzureOpenAIClient/1.0.2": { + "sha512": "9/3phdtJjvAkkEq57aRiz/Rl6E7ssrHrlS+oe08R4n2dW1M/73c26jprOHoGRKaE1bm4QeDu+VcygcCdVfCnVg==", + "type": "package", + "path": "azureopenaiclient/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "azureopenaiclient.1.0.2.nupkg.sha512", + "azureopenaiclient.nuspec", + "icon.png", + "lib/netstandard2.1/AzureOpenAIClient.Http.dll" + ] + }, + "Blazored.Modal/7.1.0": { + "sha512": "ft5bX5barhyzpQc9jjU029ByrAQXgqSMItwhmEbr0pb7r+of8XH0E/OyS8K6O6Disq5R+p4wpt+W+NGg3/OTMA==", + "type": "package", + "path": "blazored.modal/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "blazored.modal.7.1.0.nupkg.sha512", + "blazored.modal.nuspec", + "build/Blazored.Modal.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/Blazored.Modal.props", + "buildTransitive/Blazored.Modal.props", + "icon.png", + "lib/net6.0/Blazored.Modal.dll", + "staticwebassets/Blazored.Modal.bundle.scp.css", + "staticwebassets/BlazoredModal.razor.js" + ] + }, + "BlazorInputFile/0.2.0": { + "sha512": "wsPTwoA9fkHOxjEh0W0brNeTaVBaMCFwfBLehbRhfW+RzlIrYtlJ5qFpT5f377Ej6ELk+xeoUrkDBx9c8JF7DQ==", + "type": "package", + "path": "blazorinputfile/0.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "blazorinputfile.0.2.0.nupkg.sha512", + "blazorinputfile.nuspec", + "build/BlazorInputFile.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/BlazorInputFile.props", + "buildTransitive/BlazorInputFile.props", + "lib/netstandard2.0/BlazorInputFile.dll", + "lib/netstandard2.1/BlazorInputFile.dll", + "staticwebassets/inputfile.js" + ] + }, + "ChartJSCore/3.10.0": { + "sha512": "rQ3oJoID+ZcjkDD92p6/j3PggbtdKbMvxPaUkFF38n7oUpRbMM5DC8qAuvheJLSmyFihzcgJeQsfA9qe6k/LhA==", + "type": "package", + "path": "chartjscore/3.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "chartjscore.3.10.0.nupkg.sha512", + "chartjscore.nuspec", + "lib/netstandard2.0/ChartJSCore.dll" + ] + }, + "DnsClient/1.6.1": { + "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "type": "package", + "path": "dnsclient/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.6.1.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/net5.0/DnsClient.dll", + "lib/net5.0/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "GrapeCity.Documents.Imaging/6.1.2": { + "sha512": "07yasgZIFyd2sx7yAIIidGAfOc+8XK2O98D8UUJJFlJJ6mTj352bIL70ndrdrJwZUbvz+k8E6zQ5p4gd80RBCw==", + "type": "package", + "path": "grapecity.documents.imaging/6.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "3rd-party-software.txt", + "LICENSE.txt", + "README.md", + "grapecity.documents.imaging.6.1.2.nupkg.sha512", + "grapecity.documents.imaging.nuspec", + "icon.png", + "lib/net461/GrapeCity.Documents.Imaging.dll", + "lib/net461/GrapeCity.Documents.Imaging.xml", + "lib/net461/ja/GrapeCity.Documents.Imaging.resources.dll", + "lib/netstandard2.0/GrapeCity.Documents.Imaging.dll", + "lib/netstandard2.0/GrapeCity.Documents.Imaging.xml", + "lib/netstandard2.0/ja/GrapeCity.Documents.Imaging.resources.dll" + ] + }, + "GrapeCity.Documents.Pdf/6.1.2": { + "sha512": "S8gh2smudXAe7yTRtZ1sDKk9uycRSKwAJt3RB0lsOLqEsYr8wLZP5iRCJ5otIRBRpU87XWktAz6X5aOc9gjOmg==", + "type": "package", + "path": "grapecity.documents.pdf/6.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "3rd-party-software.txt", + "LICENSE.txt", + "README.md", + "grapecity.documents.pdf.6.1.2.nupkg.sha512", + "grapecity.documents.pdf.nuspec", + "icon.png", + "lib/net461/GrapeCity.Documents.Pdf.dll", + "lib/net461/GrapeCity.Documents.Pdf.xml", + "lib/net461/ja/GrapeCity.Documents.Pdf.resources.dll", + "lib/netstandard2.0/GrapeCity.Documents.Pdf.dll", + "lib/netstandard2.0/GrapeCity.Documents.Pdf.xml", + "lib/netstandard2.0/ja/GrapeCity.Documents.Pdf.resources.dll" + ] + }, + "Microsoft.AspNetCore.Authorization/7.0.5": { + "sha512": "17BgaYa1QB8mOERZ/TSNwsWHrh65iU61VrsqivbZc+VUqnACtPCPbP0MFl/7CznXWCOXQZ59QRB6A5t0skyo2g==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net7.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net7.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components/7.0.5": { + "sha512": "9xYFXpfEI2H5W3lVSBjzMPK/kGVdMKI49laoUqkjjILMGHdMcnk7ckB7D4SbkzVUWa2rHNXn7H5oiYiL62blTw==", + "type": "package", + "path": "microsoft.aspnetcore.components/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net7.0/Microsoft.AspNetCore.Components.dll", + "lib/net7.0/Microsoft.AspNetCore.Components.xml", + "microsoft.aspnetcore.components.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Analyzers/7.0.5": { + "sha512": "jjweXKrkmQ9E2MWyHCuGHAk4I7mIY6WCjq35iRbJWl2nW8G2t41hWrEwUXip5qeL5YzAaiucPMPkHwgc1NH4jA==", + "type": "package", + "path": "microsoft.aspnetcore.components.analyzers/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", + "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", + "microsoft.aspnetcore.components.analyzers.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.analyzers.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Authorization/7.0.5": { + "sha512": "PoZ96emiHObTuJpfvOcFR1dIE6yA1oIGZM6HJXYJZR+vT/Pi12iYFJOT1Z4F+CdWUT0WqaW0rNw20VoDvPM+9Q==", + "type": "package", + "path": "microsoft.aspnetcore.components.authorization/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net7.0/Microsoft.AspNetCore.Components.Authorization.dll", + "lib/net7.0/Microsoft.AspNetCore.Components.Authorization.xml", + "microsoft.aspnetcore.components.authorization.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Forms/7.0.5": { + "sha512": "CphmoPsk7zMeQnQOXdE8z6/WQ5npzt1UG++7YYq54MlMJYlIp8M+5fiR3CniNarThnewnAcG2iDywFQuk8JPIg==", + "type": "package", + "path": "microsoft.aspnetcore.components.forms/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net7.0/Microsoft.AspNetCore.Components.Forms.dll", + "lib/net7.0/Microsoft.AspNetCore.Components.Forms.xml", + "microsoft.aspnetcore.components.forms.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.forms.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.Web/7.0.5": { + "sha512": "lrfHlLJZ+e6Y/DRq2e2Z8OzvNwmLNevd5ol54mL05aZK6Oj+pTM1UrkP46Vmow3w1VEUxMH3tyX+S+wAPWUnvQ==", + "type": "package", + "path": "microsoft.aspnetcore.components.web/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net7.0/Microsoft.AspNetCore.Components.Web.dll", + "lib/net7.0/Microsoft.AspNetCore.Components.Web.xml", + "microsoft.aspnetcore.components.web.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.web.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly/7.0.5": { + "sha512": "2DxiCV2dTyY8KCM/j6A1194BHJ9cihCNg73Zkot0qLN2m2QV/MMJcZkKHNPWca+v9c6wK+o8kDaQnM3ySMYUKA==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "build/net7.0/Microsoft.AspNetCore.Components.WebAssembly.props", + "build/net7.0/blazor.webassembly.js", + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll", + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.xml", + "microsoft.aspnetcore.components.webassembly.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.nuspec" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly.Authentication/7.0.5": { + "sha512": "0e81mC4AEmKSqD1a2xKs2KaHhpm3S83UXi1iuENxoKKRDsu/6W9W9z1681QY3s7J1V2fIR/fC5+KMWJ5m6NAdA==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly.authentication/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "build/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "buildMultiTargeting/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props", + "buildTransitive/Microsoft.AspNetCore.Components.WebAssembly.Authentication.props", + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll", + "lib/net7.0/Microsoft.AspNetCore.Components.WebAssembly.Authentication.xml", + "microsoft.aspnetcore.components.webassembly.authentication.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.authentication.nuspec", + "staticwebassets/AuthenticationService.js" + ] + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer/7.0.5": { + "sha512": "mT8e9w1+0M2qqL8xZuLX4LYEZ4C0uDjYnuujnD1TNn+D5p2RLNCWAhKXKIRCOJuHCAoTyB+m9nLCSRgLxER+mg==", + "type": "package", + "path": "microsoft.aspnetcore.components.webassembly.devserver/7.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets", + "microsoft.aspnetcore.components.webassembly.devserver.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.components.webassembly.devserver.nuspec", + "tools/ARM64/aspnetcorev2_inprocess.dll", + "tools/BlazorDebugProxy/BrowserDebugHost.dll", + "tools/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json", + "tools/BlazorDebugProxy/BrowserDebugProxy.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll", + "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.dll", + "tools/BlazorDebugProxy/Newtonsoft.Json.dll", + "tools/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "tools/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "tools/Microsoft.AspNetCore.Authentication.Core.dll", + "tools/Microsoft.AspNetCore.Authentication.Core.xml", + "tools/Microsoft.AspNetCore.Authentication.dll", + "tools/Microsoft.AspNetCore.Authentication.xml", + "tools/Microsoft.AspNetCore.Authorization.Policy.dll", + "tools/Microsoft.AspNetCore.Authorization.Policy.xml", + "tools/Microsoft.AspNetCore.Authorization.dll", + "tools/Microsoft.AspNetCore.Authorization.xml", + "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.dll", + "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.xml", + "tools/Microsoft.AspNetCore.Connections.Abstractions.dll", + "tools/Microsoft.AspNetCore.Connections.Abstractions.xml", + "tools/Microsoft.AspNetCore.Cryptography.Internal.dll", + "tools/Microsoft.AspNetCore.Cryptography.Internal.xml", + "tools/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "tools/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "tools/Microsoft.AspNetCore.DataProtection.dll", + "tools/Microsoft.AspNetCore.DataProtection.xml", + "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", + "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.xml", + "tools/Microsoft.AspNetCore.Diagnostics.dll", + "tools/Microsoft.AspNetCore.Diagnostics.xml", + "tools/Microsoft.AspNetCore.HostFiltering.dll", + "tools/Microsoft.AspNetCore.HostFiltering.xml", + "tools/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "tools/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "tools/Microsoft.AspNetCore.Hosting.dll", + "tools/Microsoft.AspNetCore.Hosting.xml", + "tools/Microsoft.AspNetCore.Http.Abstractions.dll", + "tools/Microsoft.AspNetCore.Http.Abstractions.xml", + "tools/Microsoft.AspNetCore.Http.Extensions.dll", + "tools/Microsoft.AspNetCore.Http.Extensions.xml", + "tools/Microsoft.AspNetCore.Http.Features.dll", + "tools/Microsoft.AspNetCore.Http.Features.xml", + "tools/Microsoft.AspNetCore.Http.dll", + "tools/Microsoft.AspNetCore.Http.xml", + "tools/Microsoft.AspNetCore.HttpOverrides.dll", + "tools/Microsoft.AspNetCore.HttpOverrides.xml", + "tools/Microsoft.AspNetCore.Metadata.dll", + "tools/Microsoft.AspNetCore.Metadata.xml", + "tools/Microsoft.AspNetCore.Routing.Abstractions.dll", + "tools/Microsoft.AspNetCore.Routing.Abstractions.xml", + "tools/Microsoft.AspNetCore.Routing.dll", + "tools/Microsoft.AspNetCore.Routing.xml", + "tools/Microsoft.AspNetCore.Server.IIS.dll", + "tools/Microsoft.AspNetCore.Server.IIS.xml", + "tools/Microsoft.AspNetCore.Server.IISIntegration.dll", + "tools/Microsoft.AspNetCore.Server.IISIntegration.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.Core.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.Core.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml", + "tools/Microsoft.AspNetCore.Server.Kestrel.dll", + "tools/Microsoft.AspNetCore.Server.Kestrel.xml", + "tools/Microsoft.AspNetCore.StaticFiles.dll", + "tools/Microsoft.AspNetCore.StaticFiles.xml", + "tools/Microsoft.AspNetCore.WebUtilities.dll", + "tools/Microsoft.AspNetCore.WebUtilities.xml", + "tools/Microsoft.AspNetCore.dll", + "tools/Microsoft.AspNetCore.xml", + "tools/Microsoft.Extensions.Configuration.Abstractions.dll", + "tools/Microsoft.Extensions.Configuration.Binder.dll", + "tools/Microsoft.Extensions.Configuration.CommandLine.dll", + "tools/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "tools/Microsoft.Extensions.Configuration.FileExtensions.dll", + "tools/Microsoft.Extensions.Configuration.Json.dll", + "tools/Microsoft.Extensions.Configuration.UserSecrets.dll", + "tools/Microsoft.Extensions.Configuration.dll", + "tools/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "tools/Microsoft.Extensions.DependencyInjection.dll", + "tools/Microsoft.Extensions.Features.dll", + "tools/Microsoft.Extensions.Features.xml", + "tools/Microsoft.Extensions.FileProviders.Abstractions.dll", + "tools/Microsoft.Extensions.FileProviders.Composite.dll", + "tools/Microsoft.Extensions.FileProviders.Physical.dll", + "tools/Microsoft.Extensions.FileSystemGlobbing.dll", + "tools/Microsoft.Extensions.Hosting.Abstractions.dll", + "tools/Microsoft.Extensions.Hosting.dll", + "tools/Microsoft.Extensions.Logging.Abstractions.dll", + "tools/Microsoft.Extensions.Logging.Configuration.dll", + "tools/Microsoft.Extensions.Logging.Console.dll", + "tools/Microsoft.Extensions.Logging.Debug.dll", + "tools/Microsoft.Extensions.Logging.EventLog.dll", + "tools/Microsoft.Extensions.Logging.EventSource.dll", + "tools/Microsoft.Extensions.Logging.dll", + "tools/Microsoft.Extensions.ObjectPool.dll", + "tools/Microsoft.Extensions.ObjectPool.xml", + "tools/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "tools/Microsoft.Extensions.Options.dll", + "tools/Microsoft.Extensions.Primitives.dll", + "tools/Microsoft.Extensions.WebEncoders.dll", + "tools/Microsoft.Extensions.WebEncoders.xml", + "tools/Microsoft.Net.Http.Headers.dll", + "tools/Microsoft.Net.Http.Headers.xml", + "tools/System.Diagnostics.EventLog.dll", + "tools/System.IO.Pipelines.dll", + "tools/System.Security.Cryptography.Pkcs.dll", + "tools/System.Security.Cryptography.Xml.dll", + "tools/blazor-devserver.deps.json", + "tools/blazor-devserver.dll", + "tools/blazor-devserver.exe", + "tools/blazor-devserver.runtimeconfig.json", + "tools/blazor-devserver.xml", + "tools/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "tools/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "tools/runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "tools/x64/aspnetcorev2_inprocess.dll", + "tools/x86/aspnetcorev2_inprocess.dll" + ] + }, + "Microsoft.AspNetCore.Metadata/7.0.5": { + "sha512": "S+EJS5RwVfrgBEyYKvNfMVQPH8CNIRhIH5UkGKalwIcppiYpi6k8pv7GDqjLiKLVa06LY+kNftXfUM5PwW7z/w==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net7.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net7.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.7.0.5.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.Authentication.WebAssembly.Msal/7.0.5": { + "sha512": "mONZfMKPBkcmLx7q5AiSsQeHGV9QpMzdfXnJMtiAgZjagJhilmZj9JiRmqwemM6+8xI1765b2UMCWxQwQCmCcg==", + "type": "package", + "path": "microsoft.authentication.webassembly.msal/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/Microsoft.Authentication.WebAssembly.Msal.props", + "buildMultiTargeting/Microsoft.Authentication.WebAssembly.Msal.props", + "buildTransitive/Microsoft.Authentication.WebAssembly.Msal.props", + "lib/net7.0/Microsoft.Authentication.WebAssembly.Msal.dll", + "lib/net7.0/Microsoft.Authentication.WebAssembly.Msal.xml", + "microsoft.authentication.webassembly.msal.7.0.5.nupkg.sha512", + "microsoft.authentication.webassembly.msal.nuspec", + "staticwebassets/AuthenticationService.js" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration/7.0.0": { + "sha512": "tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==", + "type": "package", + "path": "microsoft.extensions.configuration/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.7.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/7.0.4": { + "sha512": "8+XPvJnHZsYgHOQlcMuQe7QNF5KdVKHH1F/wW3nd8/u81Gk/XFAYMDP0Lpz18h7/AM95M662vvqMorcYxCBB4w==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/7.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Binder.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.7.0.4.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { + "sha512": "xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/7.0.0": { + "sha512": "LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==", + "type": "package", + "path": "microsoft.extensions.configuration.json/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { + "sha512": "NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/7.0.0": { + "sha512": "K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { + "sha512": "2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/7.0.0": { + "sha512": "43n9Je09z0p/7ViPxfRqs5BUItRLNVh5b6JH40F2Agkh2NBsY/jpNYTtbCcxrHCsA3oRmbR6RJBzUutB4VZvNQ==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Http/7.0.0": { + "sha512": "9Pq9f/CvOSz0t9yQa6g1uWpxa2sm13daLFm8EZwy9MaQUjKXWdNUXQwIxwhmba5N83UIqURiPHSNqGK1vfWF2w==", + "type": "package", + "path": "microsoft.extensions.http/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Http.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", + "lib/net462/Microsoft.Extensions.Http.dll", + "lib/net462/Microsoft.Extensions.Http.xml", + "lib/net6.0/Microsoft.Extensions.Http.dll", + "lib/net6.0/Microsoft.Extensions.Http.xml", + "lib/net7.0/Microsoft.Extensions.Http.dll", + "lib/net7.0/Microsoft.Extensions.Http.xml", + "lib/netstandard2.0/Microsoft.Extensions.Http.dll", + "lib/netstandard2.0/Microsoft.Extensions.Http.xml", + "microsoft.extensions.http.7.0.0.nupkg.sha512", + "microsoft.extensions.http.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/7.0.0": { + "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "type": "package", + "path": "microsoft.extensions.logging/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/7.0.1": { + "sha512": "pZRDYdN1FpepOIfHU62QoBQ6zdAoTvnjxFfqAzEd9Jhb2dfhA5i6jeTdgGgcgTWFRC7oT0+3XrbQu4LjvgX1Nw==", + "type": "package", + "path": "microsoft.extensions.options/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.7.0.1.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "type": "package", + "path": "microsoft.extensions.primitives/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Fast.Components.FluentUI/2.3.0": { + "sha512": "EJjyyu4i12vNS7vYD3B04R0w+sCyXQlqMxdJjE5NgUSsX7sQ/PT5bhCdyDT/c5bOIgS5hvM2dR41BURoJ0oWOg==", + "type": "package", + "path": "microsoft.fast.components.fluentui/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "analyzers/dotnet/cs/Microsoft.Fast.Components.FluentUI.Configuration.dll", + "build/Microsoft.AspNetCore.StaticWebAssets.Activities.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Activities.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Activities.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Animals_Nature.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Animals_Nature.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Animals_Nature.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled10.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled12.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled16.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled20.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled24.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled28.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled32.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Filled48.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Flags.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Flags.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Flags.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Food_Drink.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Food_Drink.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Food_Drink.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Objects.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Objects.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Objects.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.People_Body.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.People_Body.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.People_Body.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular10.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular12.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular16.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular20.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular24.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular28.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular32.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Regular48.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.RequiredIcons.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Smileys_Emotion.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Smileys_Emotion.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Smileys_Emotion.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Symbols.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Symbols.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Symbols.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Travel_Places.Color.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Travel_Places.Flat.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.Travel_Places.HighContrast.targets", + "build/Microsoft.AspNetCore.StaticWebAssets.props", + "build/Microsoft.AspNetCore.StaticWebAssets.targets", + "build/Microsoft.Fast.Components.FluentUI.props", + "build/Microsoft.Fast.Components.FluentUI.targets", + "buildMultiTargeting/Microsoft.Fast.Components.FluentUI.targets", + "buildTransitive/Microsoft.Fast.Components.FluentUI.targets", + "lib/net6.0/Microsoft.Fast.Components.FluentUI.dll", + "lib/net6.0/Microsoft.Fast.Components.FluentUI.xml", + "lib/net7.0/Microsoft.Fast.Components.FluentUI.dll", + "lib/net7.0/Microsoft.Fast.Components.FluentUI.xml", + "lib/net8.0/Microsoft.Fast.Components.FluentUI.dll", + "lib/net8.0/Microsoft.Fast.Components.FluentUI.xml", + "microsoft.fast.components.fluentui.2.3.0.nupkg.sha512", + "microsoft.fast.components.fluentui.nuspec", + "staticwebassets/Components/Anchor/FluentAnchor.razor.js", + "staticwebassets/Components/DataGrid/FluentDataGrid.razor.js", + "staticwebassets/Components/HorizontalScroll/FluentHorizontalScroll.razor.js", + "staticwebassets/Microsoft.Fast.Components.FluentUI.bundle.scp.css", + "staticwebassets/Microsoft.Fast.Components.FluentUI.lib.module.js", + "staticwebassets/css/reboot.css", + "staticwebassets/css/variables.css", + "staticwebassets/emojis/Activities/1stPlaceMedal/c.svg", + "staticwebassets/emojis/Activities/1stPlaceMedal/f.svg", + "staticwebassets/emojis/Activities/1stPlaceMedal/h.svg", + "staticwebassets/emojis/Activities/2ndPlaceMedal/c.svg", + "staticwebassets/emojis/Activities/2ndPlaceMedal/f.svg", + "staticwebassets/emojis/Activities/2ndPlaceMedal/h.svg", + "staticwebassets/emojis/Activities/3rdPlaceMedal/c.svg", + "staticwebassets/emojis/Activities/3rdPlaceMedal/f.svg", + "staticwebassets/emojis/Activities/3rdPlaceMedal/h.svg", + "staticwebassets/emojis/Activities/AdmissionTickets/c.svg", + "staticwebassets/emojis/Activities/AdmissionTickets/f.svg", + "staticwebassets/emojis/Activities/AdmissionTickets/h.svg", + "staticwebassets/emojis/Activities/AmericanFootball/c.svg", + "staticwebassets/emojis/Activities/AmericanFootball/f.svg", + "staticwebassets/emojis/Activities/AmericanFootball/h.svg", + "staticwebassets/emojis/Activities/ArtistPalette/c.svg", + "staticwebassets/emojis/Activities/ArtistPalette/f.svg", + "staticwebassets/emojis/Activities/ArtistPalette/h.svg", + "staticwebassets/emojis/Activities/Badminton/c.svg", + "staticwebassets/emojis/Activities/Badminton/f.svg", + "staticwebassets/emojis/Activities/Badminton/h.svg", + "staticwebassets/emojis/Activities/Balloon/c.svg", + "staticwebassets/emojis/Activities/Balloon/f.svg", + "staticwebassets/emojis/Activities/Balloon/h.svg", + "staticwebassets/emojis/Activities/Baseball/c.svg", + "staticwebassets/emojis/Activities/Baseball/f.svg", + "staticwebassets/emojis/Activities/Baseball/h.svg", + "staticwebassets/emojis/Activities/Basketball/c.svg", + "staticwebassets/emojis/Activities/Basketball/f.svg", + "staticwebassets/emojis/Activities/Basketball/h.svg", + "staticwebassets/emojis/Activities/Bowling/c.svg", + "staticwebassets/emojis/Activities/Bowling/f.svg", + "staticwebassets/emojis/Activities/Bowling/h.svg", + "staticwebassets/emojis/Activities/BoxingGlove/c.svg", + "staticwebassets/emojis/Activities/BoxingGlove/f.svg", + "staticwebassets/emojis/Activities/BoxingGlove/h.svg", + "staticwebassets/emojis/Activities/Bullseye/c.svg", + "staticwebassets/emojis/Activities/Bullseye/f.svg", + "staticwebassets/emojis/Activities/Bullseye/h.svg", + "staticwebassets/emojis/Activities/CarpStreamer/c.svg", + "staticwebassets/emojis/Activities/CarpStreamer/f.svg", + "staticwebassets/emojis/Activities/CarpStreamer/h.svg", + "staticwebassets/emojis/Activities/ChessPawn/c.svg", + "staticwebassets/emojis/Activities/ChessPawn/f.svg", + "staticwebassets/emojis/Activities/ChessPawn/h.svg", + "staticwebassets/emojis/Activities/ChristmasTree/c.svg", + "staticwebassets/emojis/Activities/ChristmasTree/f.svg", + "staticwebassets/emojis/Activities/ChristmasTree/h.svg", + "staticwebassets/emojis/Activities/ClubSuit/c.svg", + "staticwebassets/emojis/Activities/ClubSuit/f.svg", + "staticwebassets/emojis/Activities/ClubSuit/h.svg", + "staticwebassets/emojis/Activities/ConfettiBall/c.svg", + "staticwebassets/emojis/Activities/ConfettiBall/f.svg", + "staticwebassets/emojis/Activities/ConfettiBall/h.svg", + "staticwebassets/emojis/Activities/CricketGame/c.svg", + "staticwebassets/emojis/Activities/CricketGame/f.svg", + "staticwebassets/emojis/Activities/CricketGame/h.svg", + "staticwebassets/emojis/Activities/CrystalBall/c.svg", + "staticwebassets/emojis/Activities/CrystalBall/f.svg", + "staticwebassets/emojis/Activities/CrystalBall/h.svg", + "staticwebassets/emojis/Activities/CurlingStone/c.svg", + "staticwebassets/emojis/Activities/CurlingStone/f.svg", + "staticwebassets/emojis/Activities/CurlingStone/h.svg", + "staticwebassets/emojis/Activities/DiamondSuit/c.svg", + "staticwebassets/emojis/Activities/DiamondSuit/f.svg", + "staticwebassets/emojis/Activities/DiamondSuit/h.svg", + "staticwebassets/emojis/Activities/DivingMask/c.svg", + "staticwebassets/emojis/Activities/DivingMask/f.svg", + "staticwebassets/emojis/Activities/DivingMask/h.svg", + "staticwebassets/emojis/Activities/FieldHockey/c.svg", + "staticwebassets/emojis/Activities/FieldHockey/f.svg", + "staticwebassets/emojis/Activities/FieldHockey/h.svg", + "staticwebassets/emojis/Activities/Firecracker/c.svg", + "staticwebassets/emojis/Activities/Firecracker/f.svg", + "staticwebassets/emojis/Activities/Firecracker/h.svg", + "staticwebassets/emojis/Activities/Fireworks/c.svg", + "staticwebassets/emojis/Activities/Fireworks/f.svg", + "staticwebassets/emojis/Activities/Fireworks/h.svg", + "staticwebassets/emojis/Activities/FishingPole/c.svg", + "staticwebassets/emojis/Activities/FishingPole/f.svg", + "staticwebassets/emojis/Activities/FishingPole/h.svg", + "staticwebassets/emojis/Activities/FlagInHole/c.svg", + "staticwebassets/emojis/Activities/FlagInHole/f.svg", + "staticwebassets/emojis/Activities/FlagInHole/h.svg", + "staticwebassets/emojis/Activities/FlowerPlayingCards/c.svg", + "staticwebassets/emojis/Activities/FlowerPlayingCards/f.svg", + "staticwebassets/emojis/Activities/FlowerPlayingCards/h.svg", + "staticwebassets/emojis/Activities/FlyingDisc/c.svg", + "staticwebassets/emojis/Activities/FlyingDisc/f.svg", + "staticwebassets/emojis/Activities/FlyingDisc/h.svg", + "staticwebassets/emojis/Activities/FramedPicture/c.svg", + "staticwebassets/emojis/Activities/FramedPicture/f.svg", + "staticwebassets/emojis/Activities/FramedPicture/h.svg", + "staticwebassets/emojis/Activities/GameDie/c.svg", + "staticwebassets/emojis/Activities/GameDie/f.svg", + "staticwebassets/emojis/Activities/GameDie/h.svg", + "staticwebassets/emojis/Activities/GoalNet/c.svg", + "staticwebassets/emojis/Activities/GoalNet/f.svg", + "staticwebassets/emojis/Activities/GoalNet/h.svg", + "staticwebassets/emojis/Activities/Hamsa/c.svg", + "staticwebassets/emojis/Activities/Hamsa/f.svg", + "staticwebassets/emojis/Activities/Hamsa/h.svg", + "staticwebassets/emojis/Activities/HeartSuit/c.svg", + "staticwebassets/emojis/Activities/HeartSuit/f.svg", + "staticwebassets/emojis/Activities/HeartSuit/h.svg", + "staticwebassets/emojis/Activities/IceHockey/c.svg", + "staticwebassets/emojis/Activities/IceHockey/f.svg", + "staticwebassets/emojis/Activities/IceHockey/h.svg", + "staticwebassets/emojis/Activities/IceSkate/c.svg", + "staticwebassets/emojis/Activities/IceSkate/f.svg", + "staticwebassets/emojis/Activities/IceSkate/h.svg", + "staticwebassets/emojis/Activities/JackOLantern/c.svg", + "staticwebassets/emojis/Activities/JackOLantern/f.svg", + "staticwebassets/emojis/Activities/JackOLantern/h.svg", + "staticwebassets/emojis/Activities/JapaneseDolls/c.svg", + "staticwebassets/emojis/Activities/JapaneseDolls/f.svg", + "staticwebassets/emojis/Activities/JapaneseDolls/h.svg", + "staticwebassets/emojis/Activities/Joker/c.svg", + "staticwebassets/emojis/Activities/Joker/f.svg", + "staticwebassets/emojis/Activities/Joker/h.svg", + "staticwebassets/emojis/Activities/Joystick/c.svg", + "staticwebassets/emojis/Activities/Joystick/f.svg", + "staticwebassets/emojis/Activities/Joystick/h.svg", + "staticwebassets/emojis/Activities/Kite/c.svg", + "staticwebassets/emojis/Activities/Kite/f.svg", + "staticwebassets/emojis/Activities/Kite/h.svg", + "staticwebassets/emojis/Activities/Knot/c.svg", + "staticwebassets/emojis/Activities/Knot/f.svg", + "staticwebassets/emojis/Activities/Knot/h.svg", + "staticwebassets/emojis/Activities/Lacrosse/c.svg", + "staticwebassets/emojis/Activities/Lacrosse/f.svg", + "staticwebassets/emojis/Activities/Lacrosse/h.svg", + "staticwebassets/emojis/Activities/MagicWand/c.svg", + "staticwebassets/emojis/Activities/MagicWand/f.svg", + "staticwebassets/emojis/Activities/MagicWand/h.svg", + "staticwebassets/emojis/Activities/MahjongRedDragon/c.svg", + "staticwebassets/emojis/Activities/MahjongRedDragon/f.svg", + "staticwebassets/emojis/Activities/MahjongRedDragon/h.svg", + "staticwebassets/emojis/Activities/MartialArtsUniform/c.svg", + "staticwebassets/emojis/Activities/MartialArtsUniform/f.svg", + "staticwebassets/emojis/Activities/MartialArtsUniform/h.svg", + "staticwebassets/emojis/Activities/MilitaryMedal/c.svg", + "staticwebassets/emojis/Activities/MilitaryMedal/f.svg", + "staticwebassets/emojis/Activities/MilitaryMedal/h.svg", + "staticwebassets/emojis/Activities/MirrorBall/c.svg", + "staticwebassets/emojis/Activities/MirrorBall/f.svg", + "staticwebassets/emojis/Activities/MirrorBall/h.svg", + "staticwebassets/emojis/Activities/MoonViewingCeremony/c.svg", + "staticwebassets/emojis/Activities/MoonViewingCeremony/f.svg", + "staticwebassets/emojis/Activities/MoonViewingCeremony/h.svg", + "staticwebassets/emojis/Activities/NazarAmulet/c.svg", + "staticwebassets/emojis/Activities/NazarAmulet/f.svg", + "staticwebassets/emojis/Activities/NazarAmulet/h.svg", + "staticwebassets/emojis/Activities/NestingDolls/c.svg", + "staticwebassets/emojis/Activities/NestingDolls/f.svg", + "staticwebassets/emojis/Activities/NestingDolls/h.svg", + "staticwebassets/emojis/Activities/PartyPopper/c.svg", + "staticwebassets/emojis/Activities/PartyPopper/f.svg", + "staticwebassets/emojis/Activities/PartyPopper/h.svg", + "staticwebassets/emojis/Activities/PerformingArts/c.svg", + "staticwebassets/emojis/Activities/PerformingArts/f.svg", + "staticwebassets/emojis/Activities/PerformingArts/h.svg", + "staticwebassets/emojis/Activities/PineDecoration/c.svg", + "staticwebassets/emojis/Activities/PineDecoration/f.svg", + "staticwebassets/emojis/Activities/PineDecoration/h.svg", + "staticwebassets/emojis/Activities/PingPong/c.svg", + "staticwebassets/emojis/Activities/PingPong/f.svg", + "staticwebassets/emojis/Activities/PingPong/h.svg", + "staticwebassets/emojis/Activities/Piñata/c.svg", + "staticwebassets/emojis/Activities/Piñata/f.svg", + "staticwebassets/emojis/Activities/Piñata/h.svg", + "staticwebassets/emojis/Activities/Pool8Ball/c.svg", + "staticwebassets/emojis/Activities/Pool8Ball/f.svg", + "staticwebassets/emojis/Activities/Pool8Ball/h.svg", + "staticwebassets/emojis/Activities/PuzzlePiece/c.svg", + "staticwebassets/emojis/Activities/PuzzlePiece/f.svg", + "staticwebassets/emojis/Activities/PuzzlePiece/h.svg", + "staticwebassets/emojis/Activities/RedEnvelope/c.svg", + "staticwebassets/emojis/Activities/RedEnvelope/f.svg", + "staticwebassets/emojis/Activities/RedEnvelope/h.svg", + "staticwebassets/emojis/Activities/ReminderRibbon/c.svg", + "staticwebassets/emojis/Activities/ReminderRibbon/f.svg", + "staticwebassets/emojis/Activities/ReminderRibbon/h.svg", + "staticwebassets/emojis/Activities/Ribbon/c.svg", + "staticwebassets/emojis/Activities/Ribbon/f.svg", + "staticwebassets/emojis/Activities/Ribbon/h.svg", + "staticwebassets/emojis/Activities/RugbyFootball/c.svg", + "staticwebassets/emojis/Activities/RugbyFootball/f.svg", + "staticwebassets/emojis/Activities/RugbyFootball/h.svg", + "staticwebassets/emojis/Activities/RunningShirt/c.svg", + "staticwebassets/emojis/Activities/RunningShirt/f.svg", + "staticwebassets/emojis/Activities/RunningShirt/h.svg", + "staticwebassets/emojis/Activities/SewingNeedle/c.svg", + "staticwebassets/emojis/Activities/SewingNeedle/f.svg", + "staticwebassets/emojis/Activities/SewingNeedle/h.svg", + "staticwebassets/emojis/Activities/Skis/c.svg", + "staticwebassets/emojis/Activities/Skis/f.svg", + "staticwebassets/emojis/Activities/Skis/h.svg", + "staticwebassets/emojis/Activities/Sled/c.svg", + "staticwebassets/emojis/Activities/Sled/f.svg", + "staticwebassets/emojis/Activities/Sled/h.svg", + "staticwebassets/emojis/Activities/SlotMachine/c.svg", + "staticwebassets/emojis/Activities/SlotMachine/f.svg", + "staticwebassets/emojis/Activities/SlotMachine/h.svg", + "staticwebassets/emojis/Activities/SoccerBall/c.svg", + "staticwebassets/emojis/Activities/SoccerBall/f.svg", + "staticwebassets/emojis/Activities/SoccerBall/h.svg", + "staticwebassets/emojis/Activities/Softball/c.svg", + "staticwebassets/emojis/Activities/Softball/f.svg", + "staticwebassets/emojis/Activities/Softball/h.svg", + "staticwebassets/emojis/Activities/SpadeSuit/c.svg", + "staticwebassets/emojis/Activities/SpadeSuit/f.svg", + "staticwebassets/emojis/Activities/SpadeSuit/h.svg", + "staticwebassets/emojis/Activities/Sparkler/c.svg", + "staticwebassets/emojis/Activities/Sparkler/f.svg", + "staticwebassets/emojis/Activities/Sparkler/h.svg", + "staticwebassets/emojis/Activities/Sparkles/c.svg", + "staticwebassets/emojis/Activities/Sparkles/f.svg", + "staticwebassets/emojis/Activities/Sparkles/h.svg", + "staticwebassets/emojis/Activities/SportsMedal/c.svg", + "staticwebassets/emojis/Activities/SportsMedal/f.svg", + "staticwebassets/emojis/Activities/SportsMedal/h.svg", + "staticwebassets/emojis/Activities/TanabataTree/c.svg", + "staticwebassets/emojis/Activities/TanabataTree/f.svg", + "staticwebassets/emojis/Activities/TanabataTree/h.svg", + "staticwebassets/emojis/Activities/TeddyBear/c.svg", + "staticwebassets/emojis/Activities/TeddyBear/f.svg", + "staticwebassets/emojis/Activities/TeddyBear/h.svg", + "staticwebassets/emojis/Activities/Tennis/c.svg", + "staticwebassets/emojis/Activities/Tennis/f.svg", + "staticwebassets/emojis/Activities/Tennis/h.svg", + "staticwebassets/emojis/Activities/Thread/c.svg", + "staticwebassets/emojis/Activities/Thread/f.svg", + "staticwebassets/emojis/Activities/Thread/h.svg", + "staticwebassets/emojis/Activities/Ticket/c.svg", + "staticwebassets/emojis/Activities/Ticket/f.svg", + "staticwebassets/emojis/Activities/Ticket/h.svg", + "staticwebassets/emojis/Activities/Trophy/c.svg", + "staticwebassets/emojis/Activities/Trophy/f.svg", + "staticwebassets/emojis/Activities/Trophy/h.svg", + "staticwebassets/emojis/Activities/Volleyball/c.svg", + "staticwebassets/emojis/Activities/Volleyball/f.svg", + "staticwebassets/emojis/Activities/Volleyball/h.svg", + "staticwebassets/emojis/Activities/WindChime/c.svg", + "staticwebassets/emojis/Activities/WindChime/f.svg", + "staticwebassets/emojis/Activities/WindChime/h.svg", + "staticwebassets/emojis/Activities/WrappedGift/c.svg", + "staticwebassets/emojis/Activities/WrappedGift/f.svg", + "staticwebassets/emojis/Activities/WrappedGift/h.svg", + "staticwebassets/emojis/Activities/Yarn/c.svg", + "staticwebassets/emojis/Activities/Yarn/f.svg", + "staticwebassets/emojis/Activities/Yarn/h.svg", + "staticwebassets/emojis/Activities/YoYo/c.svg", + "staticwebassets/emojis/Activities/YoYo/f.svg", + "staticwebassets/emojis/Activities/YoYo/h.svg", + "staticwebassets/emojis/Animals_Nature/Ant/c.svg", + "staticwebassets/emojis/Animals_Nature/Ant/f.svg", + "staticwebassets/emojis/Animals_Nature/Ant/h.svg", + "staticwebassets/emojis/Animals_Nature/BabyChick/c.svg", + "staticwebassets/emojis/Animals_Nature/BabyChick/f.svg", + "staticwebassets/emojis/Animals_Nature/BabyChick/h.svg", + "staticwebassets/emojis/Animals_Nature/Badger/c.svg", + "staticwebassets/emojis/Animals_Nature/Badger/f.svg", + "staticwebassets/emojis/Animals_Nature/Badger/h.svg", + "staticwebassets/emojis/Animals_Nature/Bat/c.svg", + "staticwebassets/emojis/Animals_Nature/Bat/f.svg", + "staticwebassets/emojis/Animals_Nature/Bat/h.svg", + "staticwebassets/emojis/Animals_Nature/Bear/c.svg", + "staticwebassets/emojis/Animals_Nature/Bear/f.svg", + "staticwebassets/emojis/Animals_Nature/Bear/h.svg", + "staticwebassets/emojis/Animals_Nature/Beaver/c.svg", + "staticwebassets/emojis/Animals_Nature/Beaver/f.svg", + "staticwebassets/emojis/Animals_Nature/Beaver/h.svg", + "staticwebassets/emojis/Animals_Nature/Beetle/c.svg", + "staticwebassets/emojis/Animals_Nature/Beetle/f.svg", + "staticwebassets/emojis/Animals_Nature/Beetle/h.svg", + "staticwebassets/emojis/Animals_Nature/Bird/c.svg", + "staticwebassets/emojis/Animals_Nature/Bird/f.svg", + "staticwebassets/emojis/Animals_Nature/Bird/h.svg", + "staticwebassets/emojis/Animals_Nature/Bison/c.svg", + "staticwebassets/emojis/Animals_Nature/Bison/f.svg", + "staticwebassets/emojis/Animals_Nature/Bison/h.svg", + "staticwebassets/emojis/Animals_Nature/BlackCat/c.svg", + "staticwebassets/emojis/Animals_Nature/BlackCat/f.svg", + "staticwebassets/emojis/Animals_Nature/BlackCat/h.svg", + "staticwebassets/emojis/Animals_Nature/Blossom/c.svg", + "staticwebassets/emojis/Animals_Nature/Blossom/f.svg", + "staticwebassets/emojis/Animals_Nature/Blossom/h.svg", + "staticwebassets/emojis/Animals_Nature/Blowfish/c.svg", + "staticwebassets/emojis/Animals_Nature/Blowfish/f.svg", + "staticwebassets/emojis/Animals_Nature/Blowfish/h.svg", + "staticwebassets/emojis/Animals_Nature/Boar/c.svg", + "staticwebassets/emojis/Animals_Nature/Boar/f.svg", + "staticwebassets/emojis/Animals_Nature/Boar/h.svg", + "staticwebassets/emojis/Animals_Nature/Bouquet/c.svg", + "staticwebassets/emojis/Animals_Nature/Bouquet/f.svg", + "staticwebassets/emojis/Animals_Nature/Bouquet/h.svg", + "staticwebassets/emojis/Animals_Nature/Bug/c.svg", + "staticwebassets/emojis/Animals_Nature/Bug/f.svg", + "staticwebassets/emojis/Animals_Nature/Bug/h.svg", + "staticwebassets/emojis/Animals_Nature/Butterfly/c.svg", + "staticwebassets/emojis/Animals_Nature/Butterfly/f.svg", + "staticwebassets/emojis/Animals_Nature/Butterfly/h.svg", + "staticwebassets/emojis/Animals_Nature/Cactus/c.svg", + "staticwebassets/emojis/Animals_Nature/Cactus/f.svg", + "staticwebassets/emojis/Animals_Nature/Cactus/h.svg", + "staticwebassets/emojis/Animals_Nature/Camel/c.svg", + "staticwebassets/emojis/Animals_Nature/Camel/f.svg", + "staticwebassets/emojis/Animals_Nature/Camel/h.svg", + "staticwebassets/emojis/Animals_Nature/Cat/c.svg", + "staticwebassets/emojis/Animals_Nature/Cat/f.svg", + "staticwebassets/emojis/Animals_Nature/Cat/h.svg", + "staticwebassets/emojis/Animals_Nature/CatFace/c.svg", + "staticwebassets/emojis/Animals_Nature/CatFace/f.svg", + "staticwebassets/emojis/Animals_Nature/CatFace/h.svg", + "staticwebassets/emojis/Animals_Nature/CherryBlossom/c.svg", + "staticwebassets/emojis/Animals_Nature/CherryBlossom/f.svg", + "staticwebassets/emojis/Animals_Nature/CherryBlossom/h.svg", + "staticwebassets/emojis/Animals_Nature/Chicken/c.svg", + "staticwebassets/emojis/Animals_Nature/Chicken/f.svg", + "staticwebassets/emojis/Animals_Nature/Chicken/h.svg", + "staticwebassets/emojis/Animals_Nature/Chipmunk/c.svg", + "staticwebassets/emojis/Animals_Nature/Chipmunk/f.svg", + "staticwebassets/emojis/Animals_Nature/Chipmunk/h.svg", + "staticwebassets/emojis/Animals_Nature/Cockroach/c.svg", + "staticwebassets/emojis/Animals_Nature/Cockroach/f.svg", + "staticwebassets/emojis/Animals_Nature/Cockroach/h.svg", + "staticwebassets/emojis/Animals_Nature/Coral/c.svg", + "staticwebassets/emojis/Animals_Nature/Coral/f.svg", + "staticwebassets/emojis/Animals_Nature/Coral/h.svg", + "staticwebassets/emojis/Animals_Nature/Cow/c.svg", + "staticwebassets/emojis/Animals_Nature/Cow/f.svg", + "staticwebassets/emojis/Animals_Nature/Cow/h.svg", + "staticwebassets/emojis/Animals_Nature/CowFace/c.svg", + "staticwebassets/emojis/Animals_Nature/CowFace/f.svg", + "staticwebassets/emojis/Animals_Nature/CowFace/h.svg", + "staticwebassets/emojis/Animals_Nature/Cricket/c.svg", + "staticwebassets/emojis/Animals_Nature/Cricket/f.svg", + "staticwebassets/emojis/Animals_Nature/Cricket/h.svg", + "staticwebassets/emojis/Animals_Nature/Crocodile/c.svg", + "staticwebassets/emojis/Animals_Nature/Crocodile/f.svg", + "staticwebassets/emojis/Animals_Nature/Crocodile/h.svg", + "staticwebassets/emojis/Animals_Nature/DeciduousTree/c.svg", + "staticwebassets/emojis/Animals_Nature/DeciduousTree/f.svg", + "staticwebassets/emojis/Animals_Nature/DeciduousTree/h.svg", + "staticwebassets/emojis/Animals_Nature/Deer/c.svg", + "staticwebassets/emojis/Animals_Nature/Deer/f.svg", + "staticwebassets/emojis/Animals_Nature/Deer/h.svg", + "staticwebassets/emojis/Animals_Nature/Dodo/c.svg", + "staticwebassets/emojis/Animals_Nature/Dodo/f.svg", + "staticwebassets/emojis/Animals_Nature/Dodo/h.svg", + "staticwebassets/emojis/Animals_Nature/Dog/c.svg", + "staticwebassets/emojis/Animals_Nature/Dog/f.svg", + "staticwebassets/emojis/Animals_Nature/Dog/h.svg", + "staticwebassets/emojis/Animals_Nature/DogFace/c.svg", + "staticwebassets/emojis/Animals_Nature/DogFace/f.svg", + "staticwebassets/emojis/Animals_Nature/DogFace/h.svg", + "staticwebassets/emojis/Animals_Nature/Dolphin/c.svg", + "staticwebassets/emojis/Animals_Nature/Dolphin/f.svg", + "staticwebassets/emojis/Animals_Nature/Dolphin/h.svg", + "staticwebassets/emojis/Animals_Nature/Dove/c.svg", + "staticwebassets/emojis/Animals_Nature/Dove/f.svg", + "staticwebassets/emojis/Animals_Nature/Dove/h.svg", + "staticwebassets/emojis/Animals_Nature/Dragon/c.svg", + "staticwebassets/emojis/Animals_Nature/Dragon/f.svg", + "staticwebassets/emojis/Animals_Nature/Dragon/h.svg", + "staticwebassets/emojis/Animals_Nature/DragonFace/c.svg", + "staticwebassets/emojis/Animals_Nature/DragonFace/f.svg", + "staticwebassets/emojis/Animals_Nature/DragonFace/h.svg", + "staticwebassets/emojis/Animals_Nature/Duck/c.svg", + "staticwebassets/emojis/Animals_Nature/Duck/f.svg", + "staticwebassets/emojis/Animals_Nature/Duck/h.svg", + "staticwebassets/emojis/Animals_Nature/Eagle/c.svg", + "staticwebassets/emojis/Animals_Nature/Eagle/f.svg", + "staticwebassets/emojis/Animals_Nature/Eagle/h.svg", + "staticwebassets/emojis/Animals_Nature/Elephant/c.svg", + "staticwebassets/emojis/Animals_Nature/Elephant/f.svg", + "staticwebassets/emojis/Animals_Nature/Elephant/h.svg", + "staticwebassets/emojis/Animals_Nature/EmptyNest/c.svg", + "staticwebassets/emojis/Animals_Nature/EmptyNest/f.svg", + "staticwebassets/emojis/Animals_Nature/EmptyNest/h.svg", + "staticwebassets/emojis/Animals_Nature/EvergreenTree/c.svg", + "staticwebassets/emojis/Animals_Nature/EvergreenTree/f.svg", + "staticwebassets/emojis/Animals_Nature/EvergreenTree/h.svg", + "staticwebassets/emojis/Animals_Nature/Ewe/c.svg", + "staticwebassets/emojis/Animals_Nature/Ewe/f.svg", + "staticwebassets/emojis/Animals_Nature/Ewe/h.svg", + "staticwebassets/emojis/Animals_Nature/FallenLeaf/c.svg", + "staticwebassets/emojis/Animals_Nature/FallenLeaf/f.svg", + "staticwebassets/emojis/Animals_Nature/FallenLeaf/h.svg", + "staticwebassets/emojis/Animals_Nature/Feather/c.svg", + "staticwebassets/emojis/Animals_Nature/Feather/f.svg", + "staticwebassets/emojis/Animals_Nature/Feather/h.svg", + "staticwebassets/emojis/Animals_Nature/Fish/c.svg", + "staticwebassets/emojis/Animals_Nature/Fish/f.svg", + "staticwebassets/emojis/Animals_Nature/Fish/h.svg", + "staticwebassets/emojis/Animals_Nature/Flamingo/c.svg", + "staticwebassets/emojis/Animals_Nature/Flamingo/f.svg", + "staticwebassets/emojis/Animals_Nature/Flamingo/h.svg", + "staticwebassets/emojis/Animals_Nature/Fly/c.svg", + "staticwebassets/emojis/Animals_Nature/Fly/f.svg", + "staticwebassets/emojis/Animals_Nature/Fly/h.svg", + "staticwebassets/emojis/Animals_Nature/FourLeafClover/c.svg", + "staticwebassets/emojis/Animals_Nature/FourLeafClover/f.svg", + "staticwebassets/emojis/Animals_Nature/FourLeafClover/h.svg", + "staticwebassets/emojis/Animals_Nature/Fox/c.svg", + "staticwebassets/emojis/Animals_Nature/Fox/f.svg", + "staticwebassets/emojis/Animals_Nature/Fox/h.svg", + "staticwebassets/emojis/Animals_Nature/Frog/c.svg", + "staticwebassets/emojis/Animals_Nature/Frog/f.svg", + "staticwebassets/emojis/Animals_Nature/Frog/h.svg", + "staticwebassets/emojis/Animals_Nature/FrontFacingBabyChick/c.svg", + "staticwebassets/emojis/Animals_Nature/FrontFacingBabyChick/f.svg", + "staticwebassets/emojis/Animals_Nature/FrontFacingBabyChick/h.svg", + "staticwebassets/emojis/Animals_Nature/Giraffe/c.svg", + "staticwebassets/emojis/Animals_Nature/Giraffe/f.svg", + "staticwebassets/emojis/Animals_Nature/Giraffe/h.svg", + "staticwebassets/emojis/Animals_Nature/Goat/c.svg", + "staticwebassets/emojis/Animals_Nature/Goat/f.svg", + "staticwebassets/emojis/Animals_Nature/Goat/h.svg", + "staticwebassets/emojis/Animals_Nature/Gorilla/c.svg", + "staticwebassets/emojis/Animals_Nature/Gorilla/f.svg", + "staticwebassets/emojis/Animals_Nature/Gorilla/h.svg", + "staticwebassets/emojis/Animals_Nature/GuideDog/c.svg", + "staticwebassets/emojis/Animals_Nature/GuideDog/f.svg", + "staticwebassets/emojis/Animals_Nature/GuideDog/h.svg", + "staticwebassets/emojis/Animals_Nature/Hamster/c.svg", + "staticwebassets/emojis/Animals_Nature/Hamster/f.svg", + "staticwebassets/emojis/Animals_Nature/Hamster/h.svg", + "staticwebassets/emojis/Animals_Nature/HatchingChick/c.svg", + "staticwebassets/emojis/Animals_Nature/HatchingChick/f.svg", + "staticwebassets/emojis/Animals_Nature/HatchingChick/h.svg", + "staticwebassets/emojis/Animals_Nature/Hedgehog/c.svg", + "staticwebassets/emojis/Animals_Nature/Hedgehog/f.svg", + "staticwebassets/emojis/Animals_Nature/Hedgehog/h.svg", + "staticwebassets/emojis/Animals_Nature/Herb/c.svg", + "staticwebassets/emojis/Animals_Nature/Herb/f.svg", + "staticwebassets/emojis/Animals_Nature/Herb/h.svg", + "staticwebassets/emojis/Animals_Nature/Hibiscus/c.svg", + "staticwebassets/emojis/Animals_Nature/Hibiscus/f.svg", + "staticwebassets/emojis/Animals_Nature/Hibiscus/h.svg", + "staticwebassets/emojis/Animals_Nature/Hippopotamus/c.svg", + "staticwebassets/emojis/Animals_Nature/Hippopotamus/f.svg", + "staticwebassets/emojis/Animals_Nature/Hippopotamus/h.svg", + "staticwebassets/emojis/Animals_Nature/Honeybee/c.svg", + "staticwebassets/emojis/Animals_Nature/Honeybee/f.svg", + "staticwebassets/emojis/Animals_Nature/Honeybee/h.svg", + "staticwebassets/emojis/Animals_Nature/Horse/c.svg", + "staticwebassets/emojis/Animals_Nature/Horse/f.svg", + "staticwebassets/emojis/Animals_Nature/Horse/h.svg", + "staticwebassets/emojis/Animals_Nature/HorseFace/c.svg", + "staticwebassets/emojis/Animals_Nature/HorseFace/f.svg", + "staticwebassets/emojis/Animals_Nature/HorseFace/h.svg", + "staticwebassets/emojis/Animals_Nature/Kangaroo/c.svg", + "staticwebassets/emojis/Animals_Nature/Kangaroo/f.svg", + "staticwebassets/emojis/Animals_Nature/Kangaroo/h.svg", + "staticwebassets/emojis/Animals_Nature/Koala/c.svg", + "staticwebassets/emojis/Animals_Nature/Koala/f.svg", + "staticwebassets/emojis/Animals_Nature/Koala/h.svg", + "staticwebassets/emojis/Animals_Nature/LadyBeetle/c.svg", + "staticwebassets/emojis/Animals_Nature/LadyBeetle/f.svg", + "staticwebassets/emojis/Animals_Nature/LadyBeetle/h.svg", + "staticwebassets/emojis/Animals_Nature/LeafFlutteringInWind/c.svg", + "staticwebassets/emojis/Animals_Nature/LeafFlutteringInWind/f.svg", + "staticwebassets/emojis/Animals_Nature/LeafFlutteringInWind/h.svg", + "staticwebassets/emojis/Animals_Nature/Leopard/c.svg", + "staticwebassets/emojis/Animals_Nature/Leopard/f.svg", + "staticwebassets/emojis/Animals_Nature/Leopard/h.svg", + "staticwebassets/emojis/Animals_Nature/Lion/c.svg", + "staticwebassets/emojis/Animals_Nature/Lion/f.svg", + "staticwebassets/emojis/Animals_Nature/Lion/h.svg", + "staticwebassets/emojis/Animals_Nature/Lizard/c.svg", + "staticwebassets/emojis/Animals_Nature/Lizard/f.svg", + "staticwebassets/emojis/Animals_Nature/Lizard/h.svg", + "staticwebassets/emojis/Animals_Nature/Llama/c.svg", + "staticwebassets/emojis/Animals_Nature/Llama/f.svg", + "staticwebassets/emojis/Animals_Nature/Llama/h.svg", + "staticwebassets/emojis/Animals_Nature/Lotus/c.svg", + "staticwebassets/emojis/Animals_Nature/Lotus/f.svg", + "staticwebassets/emojis/Animals_Nature/Lotus/h.svg", + "staticwebassets/emojis/Animals_Nature/Mammoth/c.svg", + "staticwebassets/emojis/Animals_Nature/Mammoth/f.svg", + "staticwebassets/emojis/Animals_Nature/Mammoth/h.svg", + "staticwebassets/emojis/Animals_Nature/MapleLeaf/c.svg", + "staticwebassets/emojis/Animals_Nature/MapleLeaf/f.svg", + "staticwebassets/emojis/Animals_Nature/MapleLeaf/h.svg", + "staticwebassets/emojis/Animals_Nature/Microbe/c.svg", + "staticwebassets/emojis/Animals_Nature/Microbe/f.svg", + "staticwebassets/emojis/Animals_Nature/Microbe/h.svg", + "staticwebassets/emojis/Animals_Nature/Monkey/c.svg", + "staticwebassets/emojis/Animals_Nature/Monkey/f.svg", + "staticwebassets/emojis/Animals_Nature/Monkey/h.svg", + "staticwebassets/emojis/Animals_Nature/MonkeyFace/c.svg", + "staticwebassets/emojis/Animals_Nature/MonkeyFace/f.svg", + "staticwebassets/emojis/Animals_Nature/MonkeyFace/h.svg", + "staticwebassets/emojis/Animals_Nature/Mosquito/c.svg", + "staticwebassets/emojis/Animals_Nature/Mosquito/f.svg", + "staticwebassets/emojis/Animals_Nature/Mosquito/h.svg", + "staticwebassets/emojis/Animals_Nature/Mouse/c.svg", + "staticwebassets/emojis/Animals_Nature/Mouse/f.svg", + "staticwebassets/emojis/Animals_Nature/Mouse/h.svg", + "staticwebassets/emojis/Animals_Nature/MouseFace/c.svg", + "staticwebassets/emojis/Animals_Nature/MouseFace/f.svg", + "staticwebassets/emojis/Animals_Nature/MouseFace/h.svg", + "staticwebassets/emojis/Animals_Nature/NestWithEggs/c.svg", + "staticwebassets/emojis/Animals_Nature/NestWithEggs/f.svg", + "staticwebassets/emojis/Animals_Nature/NestWithEggs/h.svg", + "staticwebassets/emojis/Animals_Nature/Octopus/c.svg", + "staticwebassets/emojis/Animals_Nature/Octopus/f.svg", + "staticwebassets/emojis/Animals_Nature/Octopus/h.svg", + "staticwebassets/emojis/Animals_Nature/Orangutan/c.svg", + "staticwebassets/emojis/Animals_Nature/Orangutan/f.svg", + "staticwebassets/emojis/Animals_Nature/Orangutan/h.svg", + "staticwebassets/emojis/Animals_Nature/Otter/c.svg", + "staticwebassets/emojis/Animals_Nature/Otter/f.svg", + "staticwebassets/emojis/Animals_Nature/Otter/h.svg", + "staticwebassets/emojis/Animals_Nature/Owl/c.svg", + "staticwebassets/emojis/Animals_Nature/Owl/f.svg", + "staticwebassets/emojis/Animals_Nature/Owl/h.svg", + "staticwebassets/emojis/Animals_Nature/Ox/c.svg", + "staticwebassets/emojis/Animals_Nature/Ox/f.svg", + "staticwebassets/emojis/Animals_Nature/Ox/h.svg", + "staticwebassets/emojis/Animals_Nature/PalmTree/c.svg", + "staticwebassets/emojis/Animals_Nature/PalmTree/f.svg", + "staticwebassets/emojis/Animals_Nature/PalmTree/h.svg", + "staticwebassets/emojis/Animals_Nature/Panda/c.svg", + "staticwebassets/emojis/Animals_Nature/Panda/f.svg", + "staticwebassets/emojis/Animals_Nature/Panda/h.svg", + "staticwebassets/emojis/Animals_Nature/Parrot/c.svg", + "staticwebassets/emojis/Animals_Nature/Parrot/f.svg", + "staticwebassets/emojis/Animals_Nature/Parrot/h.svg", + "staticwebassets/emojis/Animals_Nature/PawPrints/c.svg", + "staticwebassets/emojis/Animals_Nature/PawPrints/f.svg", + "staticwebassets/emojis/Animals_Nature/PawPrints/h.svg", + "staticwebassets/emojis/Animals_Nature/Peacock/c.svg", + "staticwebassets/emojis/Animals_Nature/Peacock/f.svg", + "staticwebassets/emojis/Animals_Nature/Peacock/h.svg", + "staticwebassets/emojis/Animals_Nature/Penguin/c.svg", + "staticwebassets/emojis/Animals_Nature/Penguin/f.svg", + "staticwebassets/emojis/Animals_Nature/Penguin/h.svg", + "staticwebassets/emojis/Animals_Nature/Pig/c.svg", + "staticwebassets/emojis/Animals_Nature/Pig/f.svg", + "staticwebassets/emojis/Animals_Nature/Pig/h.svg", + "staticwebassets/emojis/Animals_Nature/PigFace/c.svg", + "staticwebassets/emojis/Animals_Nature/PigFace/f.svg", + "staticwebassets/emojis/Animals_Nature/PigFace/h.svg", + "staticwebassets/emojis/Animals_Nature/PigNose/c.svg", + "staticwebassets/emojis/Animals_Nature/PigNose/f.svg", + "staticwebassets/emojis/Animals_Nature/PigNose/h.svg", + "staticwebassets/emojis/Animals_Nature/PolarBear/c.svg", + "staticwebassets/emojis/Animals_Nature/PolarBear/f.svg", + "staticwebassets/emojis/Animals_Nature/PolarBear/h.svg", + "staticwebassets/emojis/Animals_Nature/Poodle/c.svg", + "staticwebassets/emojis/Animals_Nature/Poodle/f.svg", + "staticwebassets/emojis/Animals_Nature/Poodle/h.svg", + "staticwebassets/emojis/Animals_Nature/PottedPlant/c.svg", + "staticwebassets/emojis/Animals_Nature/PottedPlant/f.svg", + "staticwebassets/emojis/Animals_Nature/PottedPlant/h.svg", + "staticwebassets/emojis/Animals_Nature/Rabbit/c.svg", + "staticwebassets/emojis/Animals_Nature/Rabbit/f.svg", + "staticwebassets/emojis/Animals_Nature/Rabbit/h.svg", + "staticwebassets/emojis/Animals_Nature/RabbitFace/c.svg", + "staticwebassets/emojis/Animals_Nature/RabbitFace/f.svg", + "staticwebassets/emojis/Animals_Nature/RabbitFace/h.svg", + "staticwebassets/emojis/Animals_Nature/Raccoon/c.svg", + "staticwebassets/emojis/Animals_Nature/Raccoon/f.svg", + "staticwebassets/emojis/Animals_Nature/Raccoon/h.svg", + "staticwebassets/emojis/Animals_Nature/Ram/c.svg", + "staticwebassets/emojis/Animals_Nature/Ram/f.svg", + "staticwebassets/emojis/Animals_Nature/Ram/h.svg", + "staticwebassets/emojis/Animals_Nature/Rat/c.svg", + "staticwebassets/emojis/Animals_Nature/Rat/f.svg", + "staticwebassets/emojis/Animals_Nature/Rat/h.svg", + "staticwebassets/emojis/Animals_Nature/Rhinoceros/c.svg", + "staticwebassets/emojis/Animals_Nature/Rhinoceros/f.svg", + "staticwebassets/emojis/Animals_Nature/Rhinoceros/h.svg", + "staticwebassets/emojis/Animals_Nature/Rooster/c.svg", + "staticwebassets/emojis/Animals_Nature/Rooster/f.svg", + "staticwebassets/emojis/Animals_Nature/Rooster/h.svg", + "staticwebassets/emojis/Animals_Nature/Rose/c.svg", + "staticwebassets/emojis/Animals_Nature/Rose/f.svg", + "staticwebassets/emojis/Animals_Nature/Rose/h.svg", + "staticwebassets/emojis/Animals_Nature/Rosette/c.svg", + "staticwebassets/emojis/Animals_Nature/Rosette/f.svg", + "staticwebassets/emojis/Animals_Nature/Rosette/h.svg", + "staticwebassets/emojis/Animals_Nature/Sauropod/c.svg", + "staticwebassets/emojis/Animals_Nature/Sauropod/f.svg", + "staticwebassets/emojis/Animals_Nature/Sauropod/h.svg", + "staticwebassets/emojis/Animals_Nature/Scorpion/c.svg", + "staticwebassets/emojis/Animals_Nature/Scorpion/f.svg", + "staticwebassets/emojis/Animals_Nature/Scorpion/h.svg", + "staticwebassets/emojis/Animals_Nature/Seal/c.svg", + "staticwebassets/emojis/Animals_Nature/Seal/f.svg", + "staticwebassets/emojis/Animals_Nature/Seal/h.svg", + "staticwebassets/emojis/Animals_Nature/Seedling/c.svg", + "staticwebassets/emojis/Animals_Nature/Seedling/f.svg", + "staticwebassets/emojis/Animals_Nature/Seedling/h.svg", + "staticwebassets/emojis/Animals_Nature/ServiceDog/c.svg", + "staticwebassets/emojis/Animals_Nature/ServiceDog/f.svg", + "staticwebassets/emojis/Animals_Nature/ServiceDog/h.svg", + "staticwebassets/emojis/Animals_Nature/Shamrock/c.svg", + "staticwebassets/emojis/Animals_Nature/Shamrock/f.svg", + "staticwebassets/emojis/Animals_Nature/Shamrock/h.svg", + "staticwebassets/emojis/Animals_Nature/Shark/c.svg", + "staticwebassets/emojis/Animals_Nature/Shark/f.svg", + "staticwebassets/emojis/Animals_Nature/Shark/h.svg", + "staticwebassets/emojis/Animals_Nature/SheafOfRice/c.svg", + "staticwebassets/emojis/Animals_Nature/SheafOfRice/f.svg", + "staticwebassets/emojis/Animals_Nature/SheafOfRice/h.svg", + "staticwebassets/emojis/Animals_Nature/Skunk/c.svg", + "staticwebassets/emojis/Animals_Nature/Skunk/f.svg", + "staticwebassets/emojis/Animals_Nature/Skunk/h.svg", + "staticwebassets/emojis/Animals_Nature/Sloth/c.svg", + "staticwebassets/emojis/Animals_Nature/Sloth/f.svg", + "staticwebassets/emojis/Animals_Nature/Sloth/h.svg", + "staticwebassets/emojis/Animals_Nature/Snail/c.svg", + "staticwebassets/emojis/Animals_Nature/Snail/f.svg", + "staticwebassets/emojis/Animals_Nature/Snail/h.svg", + "staticwebassets/emojis/Animals_Nature/Snake/c.svg", + "staticwebassets/emojis/Animals_Nature/Snake/f.svg", + "staticwebassets/emojis/Animals_Nature/Snake/h.svg", + "staticwebassets/emojis/Animals_Nature/Spider/c.svg", + "staticwebassets/emojis/Animals_Nature/Spider/f.svg", + "staticwebassets/emojis/Animals_Nature/Spider/h.svg", + "staticwebassets/emojis/Animals_Nature/SpiderWeb/c.svg", + "staticwebassets/emojis/Animals_Nature/SpiderWeb/f.svg", + "staticwebassets/emojis/Animals_Nature/SpiderWeb/h.svg", + "staticwebassets/emojis/Animals_Nature/SpiralShell/c.svg", + "staticwebassets/emojis/Animals_Nature/SpiralShell/f.svg", + "staticwebassets/emojis/Animals_Nature/SpiralShell/h.svg", + "staticwebassets/emojis/Animals_Nature/SpoutingWhale/c.svg", + "staticwebassets/emojis/Animals_Nature/SpoutingWhale/f.svg", + "staticwebassets/emojis/Animals_Nature/SpoutingWhale/h.svg", + "staticwebassets/emojis/Animals_Nature/Sunflower/c.svg", + "staticwebassets/emojis/Animals_Nature/Sunflower/f.svg", + "staticwebassets/emojis/Animals_Nature/Sunflower/h.svg", + "staticwebassets/emojis/Animals_Nature/Swan/c.svg", + "staticwebassets/emojis/Animals_Nature/Swan/f.svg", + "staticwebassets/emojis/Animals_Nature/Swan/h.svg", + "staticwebassets/emojis/Animals_Nature/TRex/c.svg", + "staticwebassets/emojis/Animals_Nature/TRex/f.svg", + "staticwebassets/emojis/Animals_Nature/TRex/h.svg", + "staticwebassets/emojis/Animals_Nature/Tiger/c.svg", + "staticwebassets/emojis/Animals_Nature/Tiger/f.svg", + "staticwebassets/emojis/Animals_Nature/Tiger/h.svg", + "staticwebassets/emojis/Animals_Nature/TigerFace/c.svg", + "staticwebassets/emojis/Animals_Nature/TigerFace/f.svg", + "staticwebassets/emojis/Animals_Nature/TigerFace/h.svg", + "staticwebassets/emojis/Animals_Nature/TropicalFish/c.svg", + "staticwebassets/emojis/Animals_Nature/TropicalFish/f.svg", + "staticwebassets/emojis/Animals_Nature/TropicalFish/h.svg", + "staticwebassets/emojis/Animals_Nature/Tulip/c.svg", + "staticwebassets/emojis/Animals_Nature/Tulip/f.svg", + "staticwebassets/emojis/Animals_Nature/Tulip/h.svg", + "staticwebassets/emojis/Animals_Nature/Turkey/c.svg", + "staticwebassets/emojis/Animals_Nature/Turkey/f.svg", + "staticwebassets/emojis/Animals_Nature/Turkey/h.svg", + "staticwebassets/emojis/Animals_Nature/Turtle/c.svg", + "staticwebassets/emojis/Animals_Nature/Turtle/f.svg", + "staticwebassets/emojis/Animals_Nature/Turtle/h.svg", + "staticwebassets/emojis/Animals_Nature/TwoHumpCamel/c.svg", + "staticwebassets/emojis/Animals_Nature/TwoHumpCamel/f.svg", + "staticwebassets/emojis/Animals_Nature/TwoHumpCamel/h.svg", + "staticwebassets/emojis/Animals_Nature/Unicorn/c.svg", + "staticwebassets/emojis/Animals_Nature/Unicorn/f.svg", + "staticwebassets/emojis/Animals_Nature/Unicorn/h.svg", + "staticwebassets/emojis/Animals_Nature/WaterBuffalo/c.svg", + "staticwebassets/emojis/Animals_Nature/WaterBuffalo/f.svg", + "staticwebassets/emojis/Animals_Nature/WaterBuffalo/h.svg", + "staticwebassets/emojis/Animals_Nature/Whale/c.svg", + "staticwebassets/emojis/Animals_Nature/Whale/f.svg", + "staticwebassets/emojis/Animals_Nature/Whale/h.svg", + "staticwebassets/emojis/Animals_Nature/WhiteFlower/c.svg", + "staticwebassets/emojis/Animals_Nature/WhiteFlower/f.svg", + "staticwebassets/emojis/Animals_Nature/WhiteFlower/h.svg", + "staticwebassets/emojis/Animals_Nature/WiltedFlower/c.svg", + "staticwebassets/emojis/Animals_Nature/WiltedFlower/f.svg", + "staticwebassets/emojis/Animals_Nature/WiltedFlower/h.svg", + "staticwebassets/emojis/Animals_Nature/Wolf/c.svg", + "staticwebassets/emojis/Animals_Nature/Wolf/f.svg", + "staticwebassets/emojis/Animals_Nature/Wolf/h.svg", + "staticwebassets/emojis/Animals_Nature/Worm/c.svg", + "staticwebassets/emojis/Animals_Nature/Worm/f.svg", + "staticwebassets/emojis/Animals_Nature/Worm/h.svg", + "staticwebassets/emojis/Animals_Nature/Zebra/c.svg", + "staticwebassets/emojis/Animals_Nature/Zebra/f.svg", + "staticwebassets/emojis/Animals_Nature/Zebra/h.svg", + "staticwebassets/emojis/Flags/BlackFlag/c.svg", + "staticwebassets/emojis/Flags/BlackFlag/f.svg", + "staticwebassets/emojis/Flags/BlackFlag/h.svg", + "staticwebassets/emojis/Flags/ChequeredFlag/c.svg", + "staticwebassets/emojis/Flags/ChequeredFlag/f.svg", + "staticwebassets/emojis/Flags/ChequeredFlag/h.svg", + "staticwebassets/emojis/Flags/CrossedFlags/c.svg", + "staticwebassets/emojis/Flags/CrossedFlags/f.svg", + "staticwebassets/emojis/Flags/CrossedFlags/h.svg", + "staticwebassets/emojis/Flags/PirateFlag/c.svg", + "staticwebassets/emojis/Flags/PirateFlag/f.svg", + "staticwebassets/emojis/Flags/PirateFlag/h.svg", + "staticwebassets/emojis/Flags/RainbowFlag/c.svg", + "staticwebassets/emojis/Flags/RainbowFlag/f.svg", + "staticwebassets/emojis/Flags/RainbowFlag/h.svg", + "staticwebassets/emojis/Flags/TransgenderFlag/c.svg", + "staticwebassets/emojis/Flags/TransgenderFlag/f.svg", + "staticwebassets/emojis/Flags/TransgenderFlag/h.svg", + "staticwebassets/emojis/Flags/TriangularFlag/c.svg", + "staticwebassets/emojis/Flags/TriangularFlag/f.svg", + "staticwebassets/emojis/Flags/TriangularFlag/h.svg", + "staticwebassets/emojis/Flags/WhiteFlag/c.svg", + "staticwebassets/emojis/Flags/WhiteFlag/f.svg", + "staticwebassets/emojis/Flags/WhiteFlag/h.svg", + "staticwebassets/emojis/Food_Drink/Amphora/c.svg", + "staticwebassets/emojis/Food_Drink/Amphora/f.svg", + "staticwebassets/emojis/Food_Drink/Amphora/h.svg", + "staticwebassets/emojis/Food_Drink/Avocado/c.svg", + "staticwebassets/emojis/Food_Drink/Avocado/f.svg", + "staticwebassets/emojis/Food_Drink/Avocado/h.svg", + "staticwebassets/emojis/Food_Drink/BabyBottle/c.svg", + "staticwebassets/emojis/Food_Drink/BabyBottle/f.svg", + "staticwebassets/emojis/Food_Drink/BabyBottle/h.svg", + "staticwebassets/emojis/Food_Drink/Bacon/c.svg", + "staticwebassets/emojis/Food_Drink/Bacon/f.svg", + "staticwebassets/emojis/Food_Drink/Bacon/h.svg", + "staticwebassets/emojis/Food_Drink/Bagel/c.svg", + "staticwebassets/emojis/Food_Drink/Bagel/f.svg", + "staticwebassets/emojis/Food_Drink/Bagel/h.svg", + "staticwebassets/emojis/Food_Drink/BaguetteBread/c.svg", + "staticwebassets/emojis/Food_Drink/BaguetteBread/f.svg", + "staticwebassets/emojis/Food_Drink/BaguetteBread/h.svg", + "staticwebassets/emojis/Food_Drink/Banana/c.svg", + "staticwebassets/emojis/Food_Drink/Banana/f.svg", + "staticwebassets/emojis/Food_Drink/Banana/h.svg", + "staticwebassets/emojis/Food_Drink/Beans/c.svg", + "staticwebassets/emojis/Food_Drink/Beans/f.svg", + "staticwebassets/emojis/Food_Drink/Beans/h.svg", + "staticwebassets/emojis/Food_Drink/BeerMug/c.svg", + "staticwebassets/emojis/Food_Drink/BeerMug/f.svg", + "staticwebassets/emojis/Food_Drink/BeerMug/h.svg", + "staticwebassets/emojis/Food_Drink/BellPepper/c.svg", + "staticwebassets/emojis/Food_Drink/BellPepper/f.svg", + "staticwebassets/emojis/Food_Drink/BellPepper/h.svg", + "staticwebassets/emojis/Food_Drink/BentoBox/c.svg", + "staticwebassets/emojis/Food_Drink/BentoBox/f.svg", + "staticwebassets/emojis/Food_Drink/BentoBox/h.svg", + "staticwebassets/emojis/Food_Drink/BeverageBox/c.svg", + "staticwebassets/emojis/Food_Drink/BeverageBox/f.svg", + "staticwebassets/emojis/Food_Drink/BeverageBox/h.svg", + "staticwebassets/emojis/Food_Drink/BirthdayCake/c.svg", + "staticwebassets/emojis/Food_Drink/BirthdayCake/f.svg", + "staticwebassets/emojis/Food_Drink/BirthdayCake/h.svg", + "staticwebassets/emojis/Food_Drink/Blueberries/c.svg", + "staticwebassets/emojis/Food_Drink/Blueberries/f.svg", + "staticwebassets/emojis/Food_Drink/Blueberries/h.svg", + "staticwebassets/emojis/Food_Drink/BottleWithPoppingCork/c.svg", + "staticwebassets/emojis/Food_Drink/BottleWithPoppingCork/f.svg", + "staticwebassets/emojis/Food_Drink/BottleWithPoppingCork/h.svg", + "staticwebassets/emojis/Food_Drink/BowlWithSpoon/c.svg", + "staticwebassets/emojis/Food_Drink/BowlWithSpoon/f.svg", + "staticwebassets/emojis/Food_Drink/BowlWithSpoon/h.svg", + "staticwebassets/emojis/Food_Drink/Bread/c.svg", + "staticwebassets/emojis/Food_Drink/Bread/f.svg", + "staticwebassets/emojis/Food_Drink/Bread/h.svg", + "staticwebassets/emojis/Food_Drink/Broccoli/c.svg", + "staticwebassets/emojis/Food_Drink/Broccoli/f.svg", + "staticwebassets/emojis/Food_Drink/Broccoli/h.svg", + "staticwebassets/emojis/Food_Drink/BubbleTea/c.svg", + "staticwebassets/emojis/Food_Drink/BubbleTea/f.svg", + "staticwebassets/emojis/Food_Drink/BubbleTea/h.svg", + "staticwebassets/emojis/Food_Drink/Burrito/c.svg", + "staticwebassets/emojis/Food_Drink/Burrito/f.svg", + "staticwebassets/emojis/Food_Drink/Burrito/h.svg", + "staticwebassets/emojis/Food_Drink/Butter/c.svg", + "staticwebassets/emojis/Food_Drink/Butter/f.svg", + "staticwebassets/emojis/Food_Drink/Butter/h.svg", + "staticwebassets/emojis/Food_Drink/Candy/c.svg", + "staticwebassets/emojis/Food_Drink/Candy/f.svg", + "staticwebassets/emojis/Food_Drink/Candy/h.svg", + "staticwebassets/emojis/Food_Drink/CannedFood/c.svg", + "staticwebassets/emojis/Food_Drink/CannedFood/f.svg", + "staticwebassets/emojis/Food_Drink/CannedFood/h.svg", + "staticwebassets/emojis/Food_Drink/Carrot/c.svg", + "staticwebassets/emojis/Food_Drink/Carrot/f.svg", + "staticwebassets/emojis/Food_Drink/Carrot/h.svg", + "staticwebassets/emojis/Food_Drink/CheeseWedge/c.svg", + "staticwebassets/emojis/Food_Drink/CheeseWedge/f.svg", + "staticwebassets/emojis/Food_Drink/CheeseWedge/h.svg", + "staticwebassets/emojis/Food_Drink/Cherries/c.svg", + "staticwebassets/emojis/Food_Drink/Cherries/f.svg", + "staticwebassets/emojis/Food_Drink/Cherries/h.svg", + "staticwebassets/emojis/Food_Drink/Chestnut/c.svg", + "staticwebassets/emojis/Food_Drink/Chestnut/f.svg", + "staticwebassets/emojis/Food_Drink/Chestnut/h.svg", + "staticwebassets/emojis/Food_Drink/ChocolateBar/c.svg", + "staticwebassets/emojis/Food_Drink/ChocolateBar/f.svg", + "staticwebassets/emojis/Food_Drink/ChocolateBar/h.svg", + "staticwebassets/emojis/Food_Drink/Chopsticks/c.svg", + "staticwebassets/emojis/Food_Drink/Chopsticks/f.svg", + "staticwebassets/emojis/Food_Drink/Chopsticks/h.svg", + "staticwebassets/emojis/Food_Drink/ClinkingBeerMugs/c.svg", + "staticwebassets/emojis/Food_Drink/ClinkingBeerMugs/f.svg", + "staticwebassets/emojis/Food_Drink/ClinkingBeerMugs/h.svg", + "staticwebassets/emojis/Food_Drink/ClinkingGlasses/c.svg", + "staticwebassets/emojis/Food_Drink/ClinkingGlasses/f.svg", + "staticwebassets/emojis/Food_Drink/ClinkingGlasses/h.svg", + "staticwebassets/emojis/Food_Drink/CocktailGlass/c.svg", + "staticwebassets/emojis/Food_Drink/CocktailGlass/f.svg", + "staticwebassets/emojis/Food_Drink/CocktailGlass/h.svg", + "staticwebassets/emojis/Food_Drink/Coconut/c.svg", + "staticwebassets/emojis/Food_Drink/Coconut/f.svg", + "staticwebassets/emojis/Food_Drink/Coconut/h.svg", + "staticwebassets/emojis/Food_Drink/CookedRice/c.svg", + "staticwebassets/emojis/Food_Drink/CookedRice/f.svg", + "staticwebassets/emojis/Food_Drink/CookedRice/h.svg", + "staticwebassets/emojis/Food_Drink/Cookie/c.svg", + "staticwebassets/emojis/Food_Drink/Cookie/f.svg", + "staticwebassets/emojis/Food_Drink/Cookie/h.svg", + "staticwebassets/emojis/Food_Drink/Cooking/c.svg", + "staticwebassets/emojis/Food_Drink/Cooking/f.svg", + "staticwebassets/emojis/Food_Drink/Cooking/h.svg", + "staticwebassets/emojis/Food_Drink/Crab/c.svg", + "staticwebassets/emojis/Food_Drink/Crab/f.svg", + "staticwebassets/emojis/Food_Drink/Crab/h.svg", + "staticwebassets/emojis/Food_Drink/Croissant/c.svg", + "staticwebassets/emojis/Food_Drink/Croissant/f.svg", + "staticwebassets/emojis/Food_Drink/Croissant/h.svg", + "staticwebassets/emojis/Food_Drink/Cucumber/c.svg", + "staticwebassets/emojis/Food_Drink/Cucumber/f.svg", + "staticwebassets/emojis/Food_Drink/Cucumber/h.svg", + "staticwebassets/emojis/Food_Drink/CupWithStraw/c.svg", + "staticwebassets/emojis/Food_Drink/CupWithStraw/f.svg", + "staticwebassets/emojis/Food_Drink/CupWithStraw/h.svg", + "staticwebassets/emojis/Food_Drink/Cupcake/c.svg", + "staticwebassets/emojis/Food_Drink/Cupcake/f.svg", + "staticwebassets/emojis/Food_Drink/Cupcake/h.svg", + "staticwebassets/emojis/Food_Drink/CurryRice/c.svg", + "staticwebassets/emojis/Food_Drink/CurryRice/f.svg", + "staticwebassets/emojis/Food_Drink/CurryRice/h.svg", + "staticwebassets/emojis/Food_Drink/Custard/c.svg", + "staticwebassets/emojis/Food_Drink/Custard/f.svg", + "staticwebassets/emojis/Food_Drink/Custard/h.svg", + "staticwebassets/emojis/Food_Drink/CutOfMeat/c.svg", + "staticwebassets/emojis/Food_Drink/CutOfMeat/f.svg", + "staticwebassets/emojis/Food_Drink/CutOfMeat/h.svg", + "staticwebassets/emojis/Food_Drink/Dango/c.svg", + "staticwebassets/emojis/Food_Drink/Dango/f.svg", + "staticwebassets/emojis/Food_Drink/Dango/h.svg", + "staticwebassets/emojis/Food_Drink/Doughnut/c.svg", + "staticwebassets/emojis/Food_Drink/Doughnut/f.svg", + "staticwebassets/emojis/Food_Drink/Doughnut/h.svg", + "staticwebassets/emojis/Food_Drink/Dumpling/c.svg", + "staticwebassets/emojis/Food_Drink/Dumpling/f.svg", + "staticwebassets/emojis/Food_Drink/Dumpling/h.svg", + "staticwebassets/emojis/Food_Drink/EarOfCorn/c.svg", + "staticwebassets/emojis/Food_Drink/EarOfCorn/f.svg", + "staticwebassets/emojis/Food_Drink/EarOfCorn/h.svg", + "staticwebassets/emojis/Food_Drink/Egg/c.svg", + "staticwebassets/emojis/Food_Drink/Egg/f.svg", + "staticwebassets/emojis/Food_Drink/Egg/h.svg", + "staticwebassets/emojis/Food_Drink/Eggplant/c.svg", + "staticwebassets/emojis/Food_Drink/Eggplant/f.svg", + "staticwebassets/emojis/Food_Drink/Eggplant/h.svg", + "staticwebassets/emojis/Food_Drink/Falafel/c.svg", + "staticwebassets/emojis/Food_Drink/Falafel/f.svg", + "staticwebassets/emojis/Food_Drink/Falafel/h.svg", + "staticwebassets/emojis/Food_Drink/FishCakeWithSwirl/c.svg", + "staticwebassets/emojis/Food_Drink/FishCakeWithSwirl/f.svg", + "staticwebassets/emojis/Food_Drink/FishCakeWithSwirl/h.svg", + "staticwebassets/emojis/Food_Drink/Flatbread/c.svg", + "staticwebassets/emojis/Food_Drink/Flatbread/f.svg", + "staticwebassets/emojis/Food_Drink/Flatbread/h.svg", + "staticwebassets/emojis/Food_Drink/Fondue/c.svg", + "staticwebassets/emojis/Food_Drink/Fondue/f.svg", + "staticwebassets/emojis/Food_Drink/Fondue/h.svg", + "staticwebassets/emojis/Food_Drink/ForkAndKnife/c.svg", + "staticwebassets/emojis/Food_Drink/ForkAndKnife/f.svg", + "staticwebassets/emojis/Food_Drink/ForkAndKnife/h.svg", + "staticwebassets/emojis/Food_Drink/ForkAndKnifeWithPlate/c.svg", + "staticwebassets/emojis/Food_Drink/ForkAndKnifeWithPlate/f.svg", + "staticwebassets/emojis/Food_Drink/ForkAndKnifeWithPlate/h.svg", + "staticwebassets/emojis/Food_Drink/FortuneCookie/c.svg", + "staticwebassets/emojis/Food_Drink/FortuneCookie/f.svg", + "staticwebassets/emojis/Food_Drink/FortuneCookie/h.svg", + "staticwebassets/emojis/Food_Drink/FrenchFries/c.svg", + "staticwebassets/emojis/Food_Drink/FrenchFries/f.svg", + "staticwebassets/emojis/Food_Drink/FrenchFries/h.svg", + "staticwebassets/emojis/Food_Drink/FriedShrimp/c.svg", + "staticwebassets/emojis/Food_Drink/FriedShrimp/f.svg", + "staticwebassets/emojis/Food_Drink/FriedShrimp/h.svg", + "staticwebassets/emojis/Food_Drink/Garlic/c.svg", + "staticwebassets/emojis/Food_Drink/Garlic/f.svg", + "staticwebassets/emojis/Food_Drink/Garlic/h.svg", + "staticwebassets/emojis/Food_Drink/GlassOfMilk/c.svg", + "staticwebassets/emojis/Food_Drink/GlassOfMilk/f.svg", + "staticwebassets/emojis/Food_Drink/GlassOfMilk/h.svg", + "staticwebassets/emojis/Food_Drink/Grapes/c.svg", + "staticwebassets/emojis/Food_Drink/Grapes/f.svg", + "staticwebassets/emojis/Food_Drink/Grapes/h.svg", + "staticwebassets/emojis/Food_Drink/GreenApple/c.svg", + "staticwebassets/emojis/Food_Drink/GreenApple/f.svg", + "staticwebassets/emojis/Food_Drink/GreenApple/h.svg", + "staticwebassets/emojis/Food_Drink/GreenSalad/c.svg", + "staticwebassets/emojis/Food_Drink/GreenSalad/f.svg", + "staticwebassets/emojis/Food_Drink/GreenSalad/h.svg", + "staticwebassets/emojis/Food_Drink/Hamburger/c.svg", + "staticwebassets/emojis/Food_Drink/Hamburger/f.svg", + "staticwebassets/emojis/Food_Drink/Hamburger/h.svg", + "staticwebassets/emojis/Food_Drink/HoneyPot/c.svg", + "staticwebassets/emojis/Food_Drink/HoneyPot/f.svg", + "staticwebassets/emojis/Food_Drink/HoneyPot/h.svg", + "staticwebassets/emojis/Food_Drink/HotBeverage/c.svg", + "staticwebassets/emojis/Food_Drink/HotBeverage/f.svg", + "staticwebassets/emojis/Food_Drink/HotBeverage/h.svg", + "staticwebassets/emojis/Food_Drink/HotDog/c.svg", + "staticwebassets/emojis/Food_Drink/HotDog/f.svg", + "staticwebassets/emojis/Food_Drink/HotDog/h.svg", + "staticwebassets/emojis/Food_Drink/HotPepper/c.svg", + "staticwebassets/emojis/Food_Drink/HotPepper/f.svg", + "staticwebassets/emojis/Food_Drink/HotPepper/h.svg", + "staticwebassets/emojis/Food_Drink/Ice/c.svg", + "staticwebassets/emojis/Food_Drink/Ice/f.svg", + "staticwebassets/emojis/Food_Drink/Ice/h.svg", + "staticwebassets/emojis/Food_Drink/IceCream/c.svg", + "staticwebassets/emojis/Food_Drink/IceCream/f.svg", + "staticwebassets/emojis/Food_Drink/IceCream/h.svg", + "staticwebassets/emojis/Food_Drink/Jar/c.svg", + "staticwebassets/emojis/Food_Drink/Jar/f.svg", + "staticwebassets/emojis/Food_Drink/Jar/h.svg", + "staticwebassets/emojis/Food_Drink/KitchenKnife/c.svg", + "staticwebassets/emojis/Food_Drink/KitchenKnife/f.svg", + "staticwebassets/emojis/Food_Drink/KitchenKnife/h.svg", + "staticwebassets/emojis/Food_Drink/KiwiFruit/c.svg", + "staticwebassets/emojis/Food_Drink/KiwiFruit/f.svg", + "staticwebassets/emojis/Food_Drink/KiwiFruit/h.svg", + "staticwebassets/emojis/Food_Drink/LeafyGreen/c.svg", + "staticwebassets/emojis/Food_Drink/LeafyGreen/f.svg", + "staticwebassets/emojis/Food_Drink/LeafyGreen/h.svg", + "staticwebassets/emojis/Food_Drink/Lemon/c.svg", + "staticwebassets/emojis/Food_Drink/Lemon/f.svg", + "staticwebassets/emojis/Food_Drink/Lemon/h.svg", + "staticwebassets/emojis/Food_Drink/Lobster/c.svg", + "staticwebassets/emojis/Food_Drink/Lobster/f.svg", + "staticwebassets/emojis/Food_Drink/Lobster/h.svg", + "staticwebassets/emojis/Food_Drink/Lollipop/c.svg", + "staticwebassets/emojis/Food_Drink/Lollipop/f.svg", + "staticwebassets/emojis/Food_Drink/Lollipop/h.svg", + "staticwebassets/emojis/Food_Drink/Mango/c.svg", + "staticwebassets/emojis/Food_Drink/Mango/f.svg", + "staticwebassets/emojis/Food_Drink/Mango/h.svg", + "staticwebassets/emojis/Food_Drink/Mate/c.svg", + "staticwebassets/emojis/Food_Drink/Mate/f.svg", + "staticwebassets/emojis/Food_Drink/Mate/h.svg", + "staticwebassets/emojis/Food_Drink/MeatOnBone/c.svg", + "staticwebassets/emojis/Food_Drink/MeatOnBone/f.svg", + "staticwebassets/emojis/Food_Drink/MeatOnBone/h.svg", + "staticwebassets/emojis/Food_Drink/Melon/c.svg", + "staticwebassets/emojis/Food_Drink/Melon/f.svg", + "staticwebassets/emojis/Food_Drink/Melon/h.svg", + "staticwebassets/emojis/Food_Drink/MoonCake/c.svg", + "staticwebassets/emojis/Food_Drink/MoonCake/f.svg", + "staticwebassets/emojis/Food_Drink/MoonCake/h.svg", + "staticwebassets/emojis/Food_Drink/Mushroom/c.svg", + "staticwebassets/emojis/Food_Drink/Mushroom/f.svg", + "staticwebassets/emojis/Food_Drink/Mushroom/h.svg", + "staticwebassets/emojis/Food_Drink/Oden/c.svg", + "staticwebassets/emojis/Food_Drink/Oden/f.svg", + "staticwebassets/emojis/Food_Drink/Oden/h.svg", + "staticwebassets/emojis/Food_Drink/Olive/c.svg", + "staticwebassets/emojis/Food_Drink/Olive/f.svg", + "staticwebassets/emojis/Food_Drink/Olive/h.svg", + "staticwebassets/emojis/Food_Drink/Onion/c.svg", + "staticwebassets/emojis/Food_Drink/Onion/f.svg", + "staticwebassets/emojis/Food_Drink/Onion/h.svg", + "staticwebassets/emojis/Food_Drink/Oyster/c.svg", + "staticwebassets/emojis/Food_Drink/Oyster/f.svg", + "staticwebassets/emojis/Food_Drink/Oyster/h.svg", + "staticwebassets/emojis/Food_Drink/Pancakes/c.svg", + "staticwebassets/emojis/Food_Drink/Pancakes/f.svg", + "staticwebassets/emojis/Food_Drink/Pancakes/h.svg", + "staticwebassets/emojis/Food_Drink/Peach/c.svg", + "staticwebassets/emojis/Food_Drink/Peach/f.svg", + "staticwebassets/emojis/Food_Drink/Peach/h.svg", + "staticwebassets/emojis/Food_Drink/Peanuts/c.svg", + "staticwebassets/emojis/Food_Drink/Peanuts/f.svg", + "staticwebassets/emojis/Food_Drink/Peanuts/h.svg", + "staticwebassets/emojis/Food_Drink/Pear/c.svg", + "staticwebassets/emojis/Food_Drink/Pear/f.svg", + "staticwebassets/emojis/Food_Drink/Pear/h.svg", + "staticwebassets/emojis/Food_Drink/Pie/c.svg", + "staticwebassets/emojis/Food_Drink/Pie/f.svg", + "staticwebassets/emojis/Food_Drink/Pie/h.svg", + "staticwebassets/emojis/Food_Drink/Pineapple/c.svg", + "staticwebassets/emojis/Food_Drink/Pineapple/f.svg", + "staticwebassets/emojis/Food_Drink/Pineapple/h.svg", + "staticwebassets/emojis/Food_Drink/Pizza/c.svg", + "staticwebassets/emojis/Food_Drink/Pizza/f.svg", + "staticwebassets/emojis/Food_Drink/Pizza/h.svg", + "staticwebassets/emojis/Food_Drink/Popcorn/c.svg", + "staticwebassets/emojis/Food_Drink/Popcorn/f.svg", + "staticwebassets/emojis/Food_Drink/Popcorn/h.svg", + "staticwebassets/emojis/Food_Drink/PotOfFood/c.svg", + "staticwebassets/emojis/Food_Drink/PotOfFood/f.svg", + "staticwebassets/emojis/Food_Drink/PotOfFood/h.svg", + "staticwebassets/emojis/Food_Drink/Potato/c.svg", + "staticwebassets/emojis/Food_Drink/Potato/f.svg", + "staticwebassets/emojis/Food_Drink/Potato/h.svg", + "staticwebassets/emojis/Food_Drink/PoultryLeg/c.svg", + "staticwebassets/emojis/Food_Drink/PoultryLeg/f.svg", + "staticwebassets/emojis/Food_Drink/PoultryLeg/h.svg", + "staticwebassets/emojis/Food_Drink/PouringLiquid/c.svg", + "staticwebassets/emojis/Food_Drink/PouringLiquid/f.svg", + "staticwebassets/emojis/Food_Drink/PouringLiquid/h.svg", + "staticwebassets/emojis/Food_Drink/Pretzel/c.svg", + "staticwebassets/emojis/Food_Drink/Pretzel/f.svg", + "staticwebassets/emojis/Food_Drink/Pretzel/h.svg", + "staticwebassets/emojis/Food_Drink/RedApple/c.svg", + "staticwebassets/emojis/Food_Drink/RedApple/f.svg", + "staticwebassets/emojis/Food_Drink/RedApple/h.svg", + "staticwebassets/emojis/Food_Drink/RiceBall/c.svg", + "staticwebassets/emojis/Food_Drink/RiceBall/f.svg", + "staticwebassets/emojis/Food_Drink/RiceBall/h.svg", + "staticwebassets/emojis/Food_Drink/RiceCracker/c.svg", + "staticwebassets/emojis/Food_Drink/RiceCracker/f.svg", + "staticwebassets/emojis/Food_Drink/RiceCracker/h.svg", + "staticwebassets/emojis/Food_Drink/RoastedSweetPotato/c.svg", + "staticwebassets/emojis/Food_Drink/RoastedSweetPotato/f.svg", + "staticwebassets/emojis/Food_Drink/RoastedSweetPotato/h.svg", + "staticwebassets/emojis/Food_Drink/Sake/c.svg", + "staticwebassets/emojis/Food_Drink/Sake/f.svg", + "staticwebassets/emojis/Food_Drink/Sake/h.svg", + "staticwebassets/emojis/Food_Drink/Salt/c.svg", + "staticwebassets/emojis/Food_Drink/Salt/f.svg", + "staticwebassets/emojis/Food_Drink/Salt/h.svg", + "staticwebassets/emojis/Food_Drink/Sandwich/c.svg", + "staticwebassets/emojis/Food_Drink/Sandwich/f.svg", + "staticwebassets/emojis/Food_Drink/Sandwich/h.svg", + "staticwebassets/emojis/Food_Drink/ShallowPanOfFood/c.svg", + "staticwebassets/emojis/Food_Drink/ShallowPanOfFood/f.svg", + "staticwebassets/emojis/Food_Drink/ShallowPanOfFood/h.svg", + "staticwebassets/emojis/Food_Drink/ShavedIce/c.svg", + "staticwebassets/emojis/Food_Drink/ShavedIce/f.svg", + "staticwebassets/emojis/Food_Drink/ShavedIce/h.svg", + "staticwebassets/emojis/Food_Drink/Shortcake/c.svg", + "staticwebassets/emojis/Food_Drink/Shortcake/f.svg", + "staticwebassets/emojis/Food_Drink/Shortcake/h.svg", + "staticwebassets/emojis/Food_Drink/Shrimp/c.svg", + "staticwebassets/emojis/Food_Drink/Shrimp/f.svg", + "staticwebassets/emojis/Food_Drink/Shrimp/h.svg", + "staticwebassets/emojis/Food_Drink/SoftIceCream/c.svg", + "staticwebassets/emojis/Food_Drink/SoftIceCream/f.svg", + "staticwebassets/emojis/Food_Drink/SoftIceCream/h.svg", + "staticwebassets/emojis/Food_Drink/Spaghetti/c.svg", + "staticwebassets/emojis/Food_Drink/Spaghetti/f.svg", + "staticwebassets/emojis/Food_Drink/Spaghetti/h.svg", + "staticwebassets/emojis/Food_Drink/Spoon/c.svg", + "staticwebassets/emojis/Food_Drink/Spoon/f.svg", + "staticwebassets/emojis/Food_Drink/Spoon/h.svg", + "staticwebassets/emojis/Food_Drink/Squid/c.svg", + "staticwebassets/emojis/Food_Drink/Squid/f.svg", + "staticwebassets/emojis/Food_Drink/Squid/h.svg", + "staticwebassets/emojis/Food_Drink/SteamingBowl/c.svg", + "staticwebassets/emojis/Food_Drink/SteamingBowl/f.svg", + "staticwebassets/emojis/Food_Drink/SteamingBowl/h.svg", + "staticwebassets/emojis/Food_Drink/Strawberry/c.svg", + "staticwebassets/emojis/Food_Drink/Strawberry/f.svg", + "staticwebassets/emojis/Food_Drink/Strawberry/h.svg", + "staticwebassets/emojis/Food_Drink/StuffedFlatbread/c.svg", + "staticwebassets/emojis/Food_Drink/StuffedFlatbread/f.svg", + "staticwebassets/emojis/Food_Drink/StuffedFlatbread/h.svg", + "staticwebassets/emojis/Food_Drink/Sushi/c.svg", + "staticwebassets/emojis/Food_Drink/Sushi/f.svg", + "staticwebassets/emojis/Food_Drink/Sushi/h.svg", + "staticwebassets/emojis/Food_Drink/Taco/c.svg", + "staticwebassets/emojis/Food_Drink/Taco/f.svg", + "staticwebassets/emojis/Food_Drink/Taco/h.svg", + "staticwebassets/emojis/Food_Drink/TakeoutBox/c.svg", + "staticwebassets/emojis/Food_Drink/TakeoutBox/f.svg", + "staticwebassets/emojis/Food_Drink/TakeoutBox/h.svg", + "staticwebassets/emojis/Food_Drink/Tamale/c.svg", + "staticwebassets/emojis/Food_Drink/Tamale/f.svg", + "staticwebassets/emojis/Food_Drink/Tamale/h.svg", + "staticwebassets/emojis/Food_Drink/Tangerine/c.svg", + "staticwebassets/emojis/Food_Drink/Tangerine/f.svg", + "staticwebassets/emojis/Food_Drink/Tangerine/h.svg", + "staticwebassets/emojis/Food_Drink/TeacupWithoutHandle/c.svg", + "staticwebassets/emojis/Food_Drink/TeacupWithoutHandle/f.svg", + "staticwebassets/emojis/Food_Drink/TeacupWithoutHandle/h.svg", + "staticwebassets/emojis/Food_Drink/Teapot/c.svg", + "staticwebassets/emojis/Food_Drink/Teapot/f.svg", + "staticwebassets/emojis/Food_Drink/Teapot/h.svg", + "staticwebassets/emojis/Food_Drink/Tomato/c.svg", + "staticwebassets/emojis/Food_Drink/Tomato/f.svg", + "staticwebassets/emojis/Food_Drink/Tomato/h.svg", + "staticwebassets/emojis/Food_Drink/TropicalDrink/c.svg", + "staticwebassets/emojis/Food_Drink/TropicalDrink/f.svg", + "staticwebassets/emojis/Food_Drink/TropicalDrink/h.svg", + "staticwebassets/emojis/Food_Drink/TumblerGlass/c.svg", + "staticwebassets/emojis/Food_Drink/TumblerGlass/f.svg", + "staticwebassets/emojis/Food_Drink/TumblerGlass/h.svg", + "staticwebassets/emojis/Food_Drink/Waffle/c.svg", + "staticwebassets/emojis/Food_Drink/Waffle/f.svg", + "staticwebassets/emojis/Food_Drink/Waffle/h.svg", + "staticwebassets/emojis/Food_Drink/Watermelon/c.svg", + "staticwebassets/emojis/Food_Drink/Watermelon/f.svg", + "staticwebassets/emojis/Food_Drink/Watermelon/h.svg", + "staticwebassets/emojis/Food_Drink/WineGlass/c.svg", + "staticwebassets/emojis/Food_Drink/WineGlass/f.svg", + "staticwebassets/emojis/Food_Drink/WineGlass/h.svg", + "staticwebassets/emojis/Objects/Abacus/c.svg", + "staticwebassets/emojis/Objects/Abacus/f.svg", + "staticwebassets/emojis/Objects/Abacus/h.svg", + "staticwebassets/emojis/Objects/Accordion/c.svg", + "staticwebassets/emojis/Objects/Accordion/f.svg", + "staticwebassets/emojis/Objects/Accordion/h.svg", + "staticwebassets/emojis/Objects/AdhesiveBandage/c.svg", + "staticwebassets/emojis/Objects/AdhesiveBandage/f.svg", + "staticwebassets/emojis/Objects/AdhesiveBandage/h.svg", + "staticwebassets/emojis/Objects/Alembic/c.svg", + "staticwebassets/emojis/Objects/Alembic/f.svg", + "staticwebassets/emojis/Objects/Alembic/h.svg", + "staticwebassets/emojis/Objects/Axe/c.svg", + "staticwebassets/emojis/Objects/Axe/f.svg", + "staticwebassets/emojis/Objects/Axe/h.svg", + "staticwebassets/emojis/Objects/Backpack/c.svg", + "staticwebassets/emojis/Objects/Backpack/f.svg", + "staticwebassets/emojis/Objects/Backpack/h.svg", + "staticwebassets/emojis/Objects/BalanceScale/c.svg", + "staticwebassets/emojis/Objects/BalanceScale/f.svg", + "staticwebassets/emojis/Objects/BalanceScale/h.svg", + "staticwebassets/emojis/Objects/BalletShoes/c.svg", + "staticwebassets/emojis/Objects/BalletShoes/f.svg", + "staticwebassets/emojis/Objects/BalletShoes/h.svg", + "staticwebassets/emojis/Objects/BallotBoxWithBallot/c.svg", + "staticwebassets/emojis/Objects/BallotBoxWithBallot/f.svg", + "staticwebassets/emojis/Objects/BallotBoxWithBallot/h.svg", + "staticwebassets/emojis/Objects/Banjo/c.svg", + "staticwebassets/emojis/Objects/Banjo/f.svg", + "staticwebassets/emojis/Objects/Banjo/h.svg", + "staticwebassets/emojis/Objects/BarChart/c.svg", + "staticwebassets/emojis/Objects/BarChart/f.svg", + "staticwebassets/emojis/Objects/BarChart/h.svg", + "staticwebassets/emojis/Objects/Basket/c.svg", + "staticwebassets/emojis/Objects/Basket/f.svg", + "staticwebassets/emojis/Objects/Basket/h.svg", + "staticwebassets/emojis/Objects/Bathtub/c.svg", + "staticwebassets/emojis/Objects/Bathtub/f.svg", + "staticwebassets/emojis/Objects/Bathtub/h.svg", + "staticwebassets/emojis/Objects/Battery/c.svg", + "staticwebassets/emojis/Objects/Battery/f.svg", + "staticwebassets/emojis/Objects/Battery/h.svg", + "staticwebassets/emojis/Objects/Bed/c.svg", + "staticwebassets/emojis/Objects/Bed/f.svg", + "staticwebassets/emojis/Objects/Bed/h.svg", + "staticwebassets/emojis/Objects/Bell/c.svg", + "staticwebassets/emojis/Objects/Bell/f.svg", + "staticwebassets/emojis/Objects/Bell/h.svg", + "staticwebassets/emojis/Objects/BellWithSlash/c.svg", + "staticwebassets/emojis/Objects/BellWithSlash/f.svg", + "staticwebassets/emojis/Objects/BellWithSlash/h.svg", + "staticwebassets/emojis/Objects/Bikini/c.svg", + "staticwebassets/emojis/Objects/Bikini/f.svg", + "staticwebassets/emojis/Objects/Bikini/h.svg", + "staticwebassets/emojis/Objects/BilledCap/c.svg", + "staticwebassets/emojis/Objects/BilledCap/f.svg", + "staticwebassets/emojis/Objects/BilledCap/h.svg", + "staticwebassets/emojis/Objects/BlackNib/c.svg", + "staticwebassets/emojis/Objects/BlackNib/f.svg", + "staticwebassets/emojis/Objects/BlackNib/h.svg", + "staticwebassets/emojis/Objects/BlueBook/c.svg", + "staticwebassets/emojis/Objects/BlueBook/f.svg", + "staticwebassets/emojis/Objects/BlueBook/h.svg", + "staticwebassets/emojis/Objects/Bookmark/c.svg", + "staticwebassets/emojis/Objects/Bookmark/f.svg", + "staticwebassets/emojis/Objects/Bookmark/h.svg", + "staticwebassets/emojis/Objects/BookmarkTabs/c.svg", + "staticwebassets/emojis/Objects/BookmarkTabs/f.svg", + "staticwebassets/emojis/Objects/BookmarkTabs/h.svg", + "staticwebassets/emojis/Objects/Books/c.svg", + "staticwebassets/emojis/Objects/Books/f.svg", + "staticwebassets/emojis/Objects/Books/h.svg", + "staticwebassets/emojis/Objects/Boomerang/c.svg", + "staticwebassets/emojis/Objects/Boomerang/f.svg", + "staticwebassets/emojis/Objects/Boomerang/h.svg", + "staticwebassets/emojis/Objects/BowAndArrow/c.svg", + "staticwebassets/emojis/Objects/BowAndArrow/f.svg", + "staticwebassets/emojis/Objects/BowAndArrow/h.svg", + "staticwebassets/emojis/Objects/Briefcase/c.svg", + "staticwebassets/emojis/Objects/Briefcase/f.svg", + "staticwebassets/emojis/Objects/Briefcase/h.svg", + "staticwebassets/emojis/Objects/Briefs/c.svg", + "staticwebassets/emojis/Objects/Briefs/f.svg", + "staticwebassets/emojis/Objects/Briefs/h.svg", + "staticwebassets/emojis/Objects/Broom/c.svg", + "staticwebassets/emojis/Objects/Broom/f.svg", + "staticwebassets/emojis/Objects/Broom/h.svg", + "staticwebassets/emojis/Objects/Bubbles/c.svg", + "staticwebassets/emojis/Objects/Bubbles/f.svg", + "staticwebassets/emojis/Objects/Bubbles/h.svg", + "staticwebassets/emojis/Objects/Bucket/c.svg", + "staticwebassets/emojis/Objects/Bucket/f.svg", + "staticwebassets/emojis/Objects/Bucket/h.svg", + "staticwebassets/emojis/Objects/Calendar/c.svg", + "staticwebassets/emojis/Objects/Calendar/f.svg", + "staticwebassets/emojis/Objects/Calendar/h.svg", + "staticwebassets/emojis/Objects/Camera/c.svg", + "staticwebassets/emojis/Objects/Camera/f.svg", + "staticwebassets/emojis/Objects/Camera/h.svg", + "staticwebassets/emojis/Objects/CameraWithFlash/c.svg", + "staticwebassets/emojis/Objects/CameraWithFlash/f.svg", + "staticwebassets/emojis/Objects/CameraWithFlash/h.svg", + "staticwebassets/emojis/Objects/Candle/c.svg", + "staticwebassets/emojis/Objects/Candle/f.svg", + "staticwebassets/emojis/Objects/Candle/h.svg", + "staticwebassets/emojis/Objects/CardFileBox/c.svg", + "staticwebassets/emojis/Objects/CardFileBox/f.svg", + "staticwebassets/emojis/Objects/CardFileBox/h.svg", + "staticwebassets/emojis/Objects/CardIndex/c.svg", + "staticwebassets/emojis/Objects/CardIndex/f.svg", + "staticwebassets/emojis/Objects/CardIndex/h.svg", + "staticwebassets/emojis/Objects/CardIndexDividers/c.svg", + "staticwebassets/emojis/Objects/CardIndexDividers/f.svg", + "staticwebassets/emojis/Objects/CardIndexDividers/h.svg", + "staticwebassets/emojis/Objects/CarpentrySaw/c.svg", + "staticwebassets/emojis/Objects/CarpentrySaw/f.svg", + "staticwebassets/emojis/Objects/CarpentrySaw/h.svg", + "staticwebassets/emojis/Objects/Chains/c.svg", + "staticwebassets/emojis/Objects/Chains/f.svg", + "staticwebassets/emojis/Objects/Chains/h.svg", + "staticwebassets/emojis/Objects/Chair/c.svg", + "staticwebassets/emojis/Objects/Chair/f.svg", + "staticwebassets/emojis/Objects/Chair/h.svg", + "staticwebassets/emojis/Objects/ChartDecreasing/c.svg", + "staticwebassets/emojis/Objects/ChartDecreasing/f.svg", + "staticwebassets/emojis/Objects/ChartDecreasing/h.svg", + "staticwebassets/emojis/Objects/ChartIncreasing/c.svg", + "staticwebassets/emojis/Objects/ChartIncreasing/f.svg", + "staticwebassets/emojis/Objects/ChartIncreasing/h.svg", + "staticwebassets/emojis/Objects/ChartIncreasingWithYen/c.svg", + "staticwebassets/emojis/Objects/ChartIncreasingWithYen/f.svg", + "staticwebassets/emojis/Objects/ChartIncreasingWithYen/h.svg", + "staticwebassets/emojis/Objects/Cigarette/c.svg", + "staticwebassets/emojis/Objects/Cigarette/f.svg", + "staticwebassets/emojis/Objects/Cigarette/h.svg", + "staticwebassets/emojis/Objects/Clamp/c.svg", + "staticwebassets/emojis/Objects/Clamp/f.svg", + "staticwebassets/emojis/Objects/Clamp/h.svg", + "staticwebassets/emojis/Objects/ClapperBoard/c.svg", + "staticwebassets/emojis/Objects/ClapperBoard/f.svg", + "staticwebassets/emojis/Objects/ClapperBoard/h.svg", + "staticwebassets/emojis/Objects/Clipboard/c.svg", + "staticwebassets/emojis/Objects/Clipboard/f.svg", + "staticwebassets/emojis/Objects/Clipboard/h.svg", + "staticwebassets/emojis/Objects/ClosedBook/c.svg", + "staticwebassets/emojis/Objects/ClosedBook/f.svg", + "staticwebassets/emojis/Objects/ClosedBook/h.svg", + "staticwebassets/emojis/Objects/ClosedMailboxWithLoweredFlag/c.svg", + "staticwebassets/emojis/Objects/ClosedMailboxWithLoweredFlag/f.svg", + "staticwebassets/emojis/Objects/ClosedMailboxWithLoweredFlag/h.svg", + "staticwebassets/emojis/Objects/ClosedMailboxWithRaisedFlag/c.svg", + "staticwebassets/emojis/Objects/ClosedMailboxWithRaisedFlag/f.svg", + "staticwebassets/emojis/Objects/ClosedMailboxWithRaisedFlag/h.svg", + "staticwebassets/emojis/Objects/ClutchBag/c.svg", + "staticwebassets/emojis/Objects/ClutchBag/f.svg", + "staticwebassets/emojis/Objects/ClutchBag/h.svg", + "staticwebassets/emojis/Objects/Coat/c.svg", + "staticwebassets/emojis/Objects/Coat/f.svg", + "staticwebassets/emojis/Objects/Coat/h.svg", + "staticwebassets/emojis/Objects/Coffin/c.svg", + "staticwebassets/emojis/Objects/Coffin/f.svg", + "staticwebassets/emojis/Objects/Coffin/h.svg", + "staticwebassets/emojis/Objects/Coin/c.svg", + "staticwebassets/emojis/Objects/Coin/f.svg", + "staticwebassets/emojis/Objects/Coin/h.svg", + "staticwebassets/emojis/Objects/ComputerDisk/c.svg", + "staticwebassets/emojis/Objects/ComputerDisk/f.svg", + "staticwebassets/emojis/Objects/ComputerDisk/h.svg", + "staticwebassets/emojis/Objects/ComputerMouse/c.svg", + "staticwebassets/emojis/Objects/ComputerMouse/f.svg", + "staticwebassets/emojis/Objects/ComputerMouse/h.svg", + "staticwebassets/emojis/Objects/ControlKnobs/c.svg", + "staticwebassets/emojis/Objects/ControlKnobs/f.svg", + "staticwebassets/emojis/Objects/ControlKnobs/h.svg", + "staticwebassets/emojis/Objects/CouchAndLamp/c.svg", + "staticwebassets/emojis/Objects/CouchAndLamp/f.svg", + "staticwebassets/emojis/Objects/CouchAndLamp/h.svg", + "staticwebassets/emojis/Objects/Crayon/c.svg", + "staticwebassets/emojis/Objects/Crayon/f.svg", + "staticwebassets/emojis/Objects/Crayon/h.svg", + "staticwebassets/emojis/Objects/CreditCard/c.svg", + "staticwebassets/emojis/Objects/CreditCard/f.svg", + "staticwebassets/emojis/Objects/CreditCard/h.svg", + "staticwebassets/emojis/Objects/CrossedSwords/c.svg", + "staticwebassets/emojis/Objects/CrossedSwords/f.svg", + "staticwebassets/emojis/Objects/CrossedSwords/h.svg", + "staticwebassets/emojis/Objects/Crown/c.svg", + "staticwebassets/emojis/Objects/Crown/f.svg", + "staticwebassets/emojis/Objects/Crown/h.svg", + "staticwebassets/emojis/Objects/Crutch/c.svg", + "staticwebassets/emojis/Objects/Crutch/f.svg", + "staticwebassets/emojis/Objects/Crutch/h.svg", + "staticwebassets/emojis/Objects/Dagger/c.svg", + "staticwebassets/emojis/Objects/Dagger/f.svg", + "staticwebassets/emojis/Objects/Dagger/h.svg", + "staticwebassets/emojis/Objects/DesktopComputer/c.svg", + "staticwebassets/emojis/Objects/DesktopComputer/f.svg", + "staticwebassets/emojis/Objects/DesktopComputer/h.svg", + "staticwebassets/emojis/Objects/DiyaLamp/c.svg", + "staticwebassets/emojis/Objects/DiyaLamp/f.svg", + "staticwebassets/emojis/Objects/DiyaLamp/h.svg", + "staticwebassets/emojis/Objects/Dna/c.svg", + "staticwebassets/emojis/Objects/Dna/f.svg", + "staticwebassets/emojis/Objects/Dna/h.svg", + "staticwebassets/emojis/Objects/DollarBanknote/c.svg", + "staticwebassets/emojis/Objects/DollarBanknote/f.svg", + "staticwebassets/emojis/Objects/DollarBanknote/h.svg", + "staticwebassets/emojis/Objects/Door/c.svg", + "staticwebassets/emojis/Objects/Door/f.svg", + "staticwebassets/emojis/Objects/Door/h.svg", + "staticwebassets/emojis/Objects/Dress/c.svg", + "staticwebassets/emojis/Objects/Dress/f.svg", + "staticwebassets/emojis/Objects/Dress/h.svg", + "staticwebassets/emojis/Objects/DropOfBlood/c.svg", + "staticwebassets/emojis/Objects/DropOfBlood/f.svg", + "staticwebassets/emojis/Objects/DropOfBlood/h.svg", + "staticwebassets/emojis/Objects/Drum/c.svg", + "staticwebassets/emojis/Objects/Drum/f.svg", + "staticwebassets/emojis/Objects/Drum/h.svg", + "staticwebassets/emojis/Objects/Dvd/c.svg", + "staticwebassets/emojis/Objects/Dvd/f.svg", + "staticwebassets/emojis/Objects/Dvd/h.svg", + "staticwebassets/emojis/Objects/EMail/c.svg", + "staticwebassets/emojis/Objects/EMail/f.svg", + "staticwebassets/emojis/Objects/EMail/h.svg", + "staticwebassets/emojis/Objects/ElectricPlug/c.svg", + "staticwebassets/emojis/Objects/ElectricPlug/f.svg", + "staticwebassets/emojis/Objects/ElectricPlug/h.svg", + "staticwebassets/emojis/Objects/Elevator/c.svg", + "staticwebassets/emojis/Objects/Elevator/f.svg", + "staticwebassets/emojis/Objects/Elevator/h.svg", + "staticwebassets/emojis/Objects/Envelope/c.svg", + "staticwebassets/emojis/Objects/Envelope/f.svg", + "staticwebassets/emojis/Objects/Envelope/h.svg", + "staticwebassets/emojis/Objects/EnvelopeWithArrow/c.svg", + "staticwebassets/emojis/Objects/EnvelopeWithArrow/f.svg", + "staticwebassets/emojis/Objects/EnvelopeWithArrow/h.svg", + "staticwebassets/emojis/Objects/EuroBanknote/c.svg", + "staticwebassets/emojis/Objects/EuroBanknote/f.svg", + "staticwebassets/emojis/Objects/EuroBanknote/h.svg", + "staticwebassets/emojis/Objects/FaxMachine/c.svg", + "staticwebassets/emojis/Objects/FaxMachine/f.svg", + "staticwebassets/emojis/Objects/FaxMachine/h.svg", + "staticwebassets/emojis/Objects/FileCabinet/c.svg", + "staticwebassets/emojis/Objects/FileCabinet/f.svg", + "staticwebassets/emojis/Objects/FileCabinet/h.svg", + "staticwebassets/emojis/Objects/FileFolder/c.svg", + "staticwebassets/emojis/Objects/FileFolder/f.svg", + "staticwebassets/emojis/Objects/FileFolder/h.svg", + "staticwebassets/emojis/Objects/FilmFrames/c.svg", + "staticwebassets/emojis/Objects/FilmFrames/f.svg", + "staticwebassets/emojis/Objects/FilmFrames/h.svg", + "staticwebassets/emojis/Objects/FilmProjector/c.svg", + "staticwebassets/emojis/Objects/FilmProjector/f.svg", + "staticwebassets/emojis/Objects/FilmProjector/h.svg", + "staticwebassets/emojis/Objects/FireExtinguisher/c.svg", + "staticwebassets/emojis/Objects/FireExtinguisher/f.svg", + "staticwebassets/emojis/Objects/FireExtinguisher/h.svg", + "staticwebassets/emojis/Objects/Flashlight/c.svg", + "staticwebassets/emojis/Objects/Flashlight/f.svg", + "staticwebassets/emojis/Objects/Flashlight/h.svg", + "staticwebassets/emojis/Objects/FlatShoe/c.svg", + "staticwebassets/emojis/Objects/FlatShoe/f.svg", + "staticwebassets/emojis/Objects/FlatShoe/h.svg", + "staticwebassets/emojis/Objects/FloppyDisk/c.svg", + "staticwebassets/emojis/Objects/FloppyDisk/f.svg", + "staticwebassets/emojis/Objects/FloppyDisk/h.svg", + "staticwebassets/emojis/Objects/FountainPen/c.svg", + "staticwebassets/emojis/Objects/FountainPen/f.svg", + "staticwebassets/emojis/Objects/FountainPen/h.svg", + "staticwebassets/emojis/Objects/FuneralUrn/c.svg", + "staticwebassets/emojis/Objects/FuneralUrn/f.svg", + "staticwebassets/emojis/Objects/FuneralUrn/h.svg", + "staticwebassets/emojis/Objects/Gear/c.svg", + "staticwebassets/emojis/Objects/Gear/f.svg", + "staticwebassets/emojis/Objects/Gear/h.svg", + "staticwebassets/emojis/Objects/GemStone/c.svg", + "staticwebassets/emojis/Objects/GemStone/f.svg", + "staticwebassets/emojis/Objects/GemStone/h.svg", + "staticwebassets/emojis/Objects/Glasses/c.svg", + "staticwebassets/emojis/Objects/Glasses/f.svg", + "staticwebassets/emojis/Objects/Glasses/h.svg", + "staticwebassets/emojis/Objects/Gloves/c.svg", + "staticwebassets/emojis/Objects/Gloves/f.svg", + "staticwebassets/emojis/Objects/Gloves/h.svg", + "staticwebassets/emojis/Objects/Goggles/c.svg", + "staticwebassets/emojis/Objects/Goggles/f.svg", + "staticwebassets/emojis/Objects/Goggles/h.svg", + "staticwebassets/emojis/Objects/GraduationCap/c.svg", + "staticwebassets/emojis/Objects/GraduationCap/f.svg", + "staticwebassets/emojis/Objects/GraduationCap/h.svg", + "staticwebassets/emojis/Objects/GreenBook/c.svg", + "staticwebassets/emojis/Objects/GreenBook/f.svg", + "staticwebassets/emojis/Objects/GreenBook/h.svg", + "staticwebassets/emojis/Objects/Guitar/c.svg", + "staticwebassets/emojis/Objects/Guitar/f.svg", + "staticwebassets/emojis/Objects/Guitar/h.svg", + "staticwebassets/emojis/Objects/Hammer/c.svg", + "staticwebassets/emojis/Objects/Hammer/f.svg", + "staticwebassets/emojis/Objects/Hammer/h.svg", + "staticwebassets/emojis/Objects/HammerAndPick/c.svg", + "staticwebassets/emojis/Objects/HammerAndPick/f.svg", + "staticwebassets/emojis/Objects/HammerAndPick/h.svg", + "staticwebassets/emojis/Objects/HammerAndWrench/c.svg", + "staticwebassets/emojis/Objects/HammerAndWrench/f.svg", + "staticwebassets/emojis/Objects/HammerAndWrench/h.svg", + "staticwebassets/emojis/Objects/Handbag/c.svg", + "staticwebassets/emojis/Objects/Handbag/f.svg", + "staticwebassets/emojis/Objects/Handbag/h.svg", + "staticwebassets/emojis/Objects/Headphone/c.svg", + "staticwebassets/emojis/Objects/Headphone/f.svg", + "staticwebassets/emojis/Objects/Headphone/h.svg", + "staticwebassets/emojis/Objects/Headstone/c.svg", + "staticwebassets/emojis/Objects/Headstone/f.svg", + "staticwebassets/emojis/Objects/Headstone/h.svg", + "staticwebassets/emojis/Objects/HighHeeledShoe/c.svg", + "staticwebassets/emojis/Objects/HighHeeledShoe/f.svg", + "staticwebassets/emojis/Objects/HighHeeledShoe/h.svg", + "staticwebassets/emojis/Objects/HikingBoot/c.svg", + "staticwebassets/emojis/Objects/HikingBoot/f.svg", + "staticwebassets/emojis/Objects/HikingBoot/h.svg", + "staticwebassets/emojis/Objects/Hook/c.svg", + "staticwebassets/emojis/Objects/Hook/f.svg", + "staticwebassets/emojis/Objects/Hook/h.svg", + "staticwebassets/emojis/Objects/IdentificationCard/c.svg", + "staticwebassets/emojis/Objects/IdentificationCard/f.svg", + "staticwebassets/emojis/Objects/IdentificationCard/h.svg", + "staticwebassets/emojis/Objects/InboxTray/c.svg", + "staticwebassets/emojis/Objects/InboxTray/f.svg", + "staticwebassets/emojis/Objects/InboxTray/h.svg", + "staticwebassets/emojis/Objects/IncomingEnvelope/c.svg", + "staticwebassets/emojis/Objects/IncomingEnvelope/f.svg", + "staticwebassets/emojis/Objects/IncomingEnvelope/h.svg", + "staticwebassets/emojis/Objects/Jeans/c.svg", + "staticwebassets/emojis/Objects/Jeans/f.svg", + "staticwebassets/emojis/Objects/Jeans/h.svg", + "staticwebassets/emojis/Objects/Key/c.svg", + "staticwebassets/emojis/Objects/Key/f.svg", + "staticwebassets/emojis/Objects/Key/h.svg", + "staticwebassets/emojis/Objects/Keyboard/c.svg", + "staticwebassets/emojis/Objects/Keyboard/f.svg", + "staticwebassets/emojis/Objects/Keyboard/h.svg", + "staticwebassets/emojis/Objects/Kimono/c.svg", + "staticwebassets/emojis/Objects/Kimono/f.svg", + "staticwebassets/emojis/Objects/Kimono/h.svg", + "staticwebassets/emojis/Objects/LabCoat/c.svg", + "staticwebassets/emojis/Objects/LabCoat/f.svg", + "staticwebassets/emojis/Objects/LabCoat/h.svg", + "staticwebassets/emojis/Objects/Label/c.svg", + "staticwebassets/emojis/Objects/Label/f.svg", + "staticwebassets/emojis/Objects/Label/h.svg", + "staticwebassets/emojis/Objects/Ladder/c.svg", + "staticwebassets/emojis/Objects/Ladder/f.svg", + "staticwebassets/emojis/Objects/Ladder/h.svg", + "staticwebassets/emojis/Objects/Laptop/c.svg", + "staticwebassets/emojis/Objects/Laptop/f.svg", + "staticwebassets/emojis/Objects/Laptop/h.svg", + "staticwebassets/emojis/Objects/Ledger/c.svg", + "staticwebassets/emojis/Objects/Ledger/f.svg", + "staticwebassets/emojis/Objects/Ledger/h.svg", + "staticwebassets/emojis/Objects/LevelSlider/c.svg", + "staticwebassets/emojis/Objects/LevelSlider/f.svg", + "staticwebassets/emojis/Objects/LevelSlider/h.svg", + "staticwebassets/emojis/Objects/LightBulb/c.svg", + "staticwebassets/emojis/Objects/LightBulb/f.svg", + "staticwebassets/emojis/Objects/LightBulb/h.svg", + "staticwebassets/emojis/Objects/Link/c.svg", + "staticwebassets/emojis/Objects/Link/f.svg", + "staticwebassets/emojis/Objects/Link/h.svg", + "staticwebassets/emojis/Objects/LinkedPaperclips/c.svg", + "staticwebassets/emojis/Objects/LinkedPaperclips/f.svg", + "staticwebassets/emojis/Objects/LinkedPaperclips/h.svg", + "staticwebassets/emojis/Objects/Lipstick/c.svg", + "staticwebassets/emojis/Objects/Lipstick/f.svg", + "staticwebassets/emojis/Objects/Lipstick/h.svg", + "staticwebassets/emojis/Objects/Locked/c.svg", + "staticwebassets/emojis/Objects/Locked/f.svg", + "staticwebassets/emojis/Objects/Locked/h.svg", + "staticwebassets/emojis/Objects/LockedWithKey/c.svg", + "staticwebassets/emojis/Objects/LockedWithKey/f.svg", + "staticwebassets/emojis/Objects/LockedWithKey/h.svg", + "staticwebassets/emojis/Objects/LockedWithPen/c.svg", + "staticwebassets/emojis/Objects/LockedWithPen/f.svg", + "staticwebassets/emojis/Objects/LockedWithPen/h.svg", + "staticwebassets/emojis/Objects/LongDrum/c.svg", + "staticwebassets/emojis/Objects/LongDrum/f.svg", + "staticwebassets/emojis/Objects/LongDrum/h.svg", + "staticwebassets/emojis/Objects/LotionBottle/c.svg", + "staticwebassets/emojis/Objects/LotionBottle/f.svg", + "staticwebassets/emojis/Objects/LotionBottle/h.svg", + "staticwebassets/emojis/Objects/Loudspeaker/c.svg", + "staticwebassets/emojis/Objects/Loudspeaker/f.svg", + "staticwebassets/emojis/Objects/Loudspeaker/h.svg", + "staticwebassets/emojis/Objects/LowBattery/c.svg", + "staticwebassets/emojis/Objects/LowBattery/f.svg", + "staticwebassets/emojis/Objects/LowBattery/h.svg", + "staticwebassets/emojis/Objects/Magnet/c.svg", + "staticwebassets/emojis/Objects/Magnet/f.svg", + "staticwebassets/emojis/Objects/Magnet/h.svg", + "staticwebassets/emojis/Objects/MagnifyingGlassTiltedLeft/c.svg", + "staticwebassets/emojis/Objects/MagnifyingGlassTiltedLeft/f.svg", + "staticwebassets/emojis/Objects/MagnifyingGlassTiltedLeft/h.svg", + "staticwebassets/emojis/Objects/MagnifyingGlassTiltedRight/c.svg", + "staticwebassets/emojis/Objects/MagnifyingGlassTiltedRight/f.svg", + "staticwebassets/emojis/Objects/MagnifyingGlassTiltedRight/h.svg", + "staticwebassets/emojis/Objects/MansShoe/c.svg", + "staticwebassets/emojis/Objects/MansShoe/f.svg", + "staticwebassets/emojis/Objects/MansShoe/h.svg", + "staticwebassets/emojis/Objects/Megaphone/c.svg", + "staticwebassets/emojis/Objects/Megaphone/f.svg", + "staticwebassets/emojis/Objects/Megaphone/h.svg", + "staticwebassets/emojis/Objects/Memo/c.svg", + "staticwebassets/emojis/Objects/Memo/f.svg", + "staticwebassets/emojis/Objects/Memo/h.svg", + "staticwebassets/emojis/Objects/Microphone/c.svg", + "staticwebassets/emojis/Objects/Microphone/f.svg", + "staticwebassets/emojis/Objects/Microphone/h.svg", + "staticwebassets/emojis/Objects/Microscope/c.svg", + "staticwebassets/emojis/Objects/Microscope/f.svg", + "staticwebassets/emojis/Objects/Microscope/h.svg", + "staticwebassets/emojis/Objects/MilitaryHelmet/c.svg", + "staticwebassets/emojis/Objects/MilitaryHelmet/f.svg", + "staticwebassets/emojis/Objects/MilitaryHelmet/h.svg", + "staticwebassets/emojis/Objects/Mirror/c.svg", + "staticwebassets/emojis/Objects/Mirror/f.svg", + "staticwebassets/emojis/Objects/Mirror/h.svg", + "staticwebassets/emojis/Objects/Moai/c.svg", + "staticwebassets/emojis/Objects/Moai/f.svg", + "staticwebassets/emojis/Objects/Moai/h.svg", + "staticwebassets/emojis/Objects/MobilePhone/c.svg", + "staticwebassets/emojis/Objects/MobilePhone/f.svg", + "staticwebassets/emojis/Objects/MobilePhone/h.svg", + "staticwebassets/emojis/Objects/MobilePhoneWithArrow/c.svg", + "staticwebassets/emojis/Objects/MobilePhoneWithArrow/f.svg", + "staticwebassets/emojis/Objects/MobilePhoneWithArrow/h.svg", + "staticwebassets/emojis/Objects/MoneyBag/c.svg", + "staticwebassets/emojis/Objects/MoneyBag/f.svg", + "staticwebassets/emojis/Objects/MoneyBag/h.svg", + "staticwebassets/emojis/Objects/MoneyWithWings/c.svg", + "staticwebassets/emojis/Objects/MoneyWithWings/f.svg", + "staticwebassets/emojis/Objects/MoneyWithWings/h.svg", + "staticwebassets/emojis/Objects/MouseTrap/c.svg", + "staticwebassets/emojis/Objects/MouseTrap/f.svg", + "staticwebassets/emojis/Objects/MouseTrap/h.svg", + "staticwebassets/emojis/Objects/MovieCamera/c.svg", + "staticwebassets/emojis/Objects/MovieCamera/f.svg", + "staticwebassets/emojis/Objects/MovieCamera/h.svg", + "staticwebassets/emojis/Objects/MusicalKeyboard/c.svg", + "staticwebassets/emojis/Objects/MusicalKeyboard/f.svg", + "staticwebassets/emojis/Objects/MusicalKeyboard/h.svg", + "staticwebassets/emojis/Objects/MusicalNote/c.svg", + "staticwebassets/emojis/Objects/MusicalNote/f.svg", + "staticwebassets/emojis/Objects/MusicalNote/h.svg", + "staticwebassets/emojis/Objects/MusicalNotes/c.svg", + "staticwebassets/emojis/Objects/MusicalNotes/f.svg", + "staticwebassets/emojis/Objects/MusicalNotes/h.svg", + "staticwebassets/emojis/Objects/MusicalScore/c.svg", + "staticwebassets/emojis/Objects/MusicalScore/f.svg", + "staticwebassets/emojis/Objects/MusicalScore/h.svg", + "staticwebassets/emojis/Objects/MutedSpeaker/c.svg", + "staticwebassets/emojis/Objects/MutedSpeaker/f.svg", + "staticwebassets/emojis/Objects/MutedSpeaker/h.svg", + "staticwebassets/emojis/Objects/Necktie/c.svg", + "staticwebassets/emojis/Objects/Necktie/f.svg", + "staticwebassets/emojis/Objects/Necktie/h.svg", + "staticwebassets/emojis/Objects/Newspaper/c.svg", + "staticwebassets/emojis/Objects/Newspaper/f.svg", + "staticwebassets/emojis/Objects/Newspaper/h.svg", + "staticwebassets/emojis/Objects/Notebook/c.svg", + "staticwebassets/emojis/Objects/Notebook/f.svg", + "staticwebassets/emojis/Objects/Notebook/h.svg", + "staticwebassets/emojis/Objects/NotebookWithDecorativeCover/c.svg", + "staticwebassets/emojis/Objects/NotebookWithDecorativeCover/f.svg", + "staticwebassets/emojis/Objects/NotebookWithDecorativeCover/h.svg", + "staticwebassets/emojis/Objects/NutAndBolt/c.svg", + "staticwebassets/emojis/Objects/NutAndBolt/f.svg", + "staticwebassets/emojis/Objects/NutAndBolt/h.svg", + "staticwebassets/emojis/Objects/OldKey/c.svg", + "staticwebassets/emojis/Objects/OldKey/f.svg", + "staticwebassets/emojis/Objects/OldKey/h.svg", + "staticwebassets/emojis/Objects/OnePieceSwimsuit/c.svg", + "staticwebassets/emojis/Objects/OnePieceSwimsuit/f.svg", + "staticwebassets/emojis/Objects/OnePieceSwimsuit/h.svg", + "staticwebassets/emojis/Objects/OpenBook/c.svg", + "staticwebassets/emojis/Objects/OpenBook/f.svg", + "staticwebassets/emojis/Objects/OpenBook/h.svg", + "staticwebassets/emojis/Objects/OpenFileFolder/c.svg", + "staticwebassets/emojis/Objects/OpenFileFolder/f.svg", + "staticwebassets/emojis/Objects/OpenFileFolder/h.svg", + "staticwebassets/emojis/Objects/OpenMailboxWithLoweredFlag/c.svg", + "staticwebassets/emojis/Objects/OpenMailboxWithLoweredFlag/f.svg", + "staticwebassets/emojis/Objects/OpenMailboxWithLoweredFlag/h.svg", + "staticwebassets/emojis/Objects/OpenMailboxWithRaisedFlag/c.svg", + "staticwebassets/emojis/Objects/OpenMailboxWithRaisedFlag/f.svg", + "staticwebassets/emojis/Objects/OpenMailboxWithRaisedFlag/h.svg", + "staticwebassets/emojis/Objects/OpticalDisk/c.svg", + "staticwebassets/emojis/Objects/OpticalDisk/f.svg", + "staticwebassets/emojis/Objects/OpticalDisk/h.svg", + "staticwebassets/emojis/Objects/OrangeBook/c.svg", + "staticwebassets/emojis/Objects/OrangeBook/f.svg", + "staticwebassets/emojis/Objects/OrangeBook/h.svg", + "staticwebassets/emojis/Objects/OutboxTray/c.svg", + "staticwebassets/emojis/Objects/OutboxTray/f.svg", + "staticwebassets/emojis/Objects/OutboxTray/h.svg", + "staticwebassets/emojis/Objects/Package/c.svg", + "staticwebassets/emojis/Objects/Package/f.svg", + "staticwebassets/emojis/Objects/Package/h.svg", + "staticwebassets/emojis/Objects/PageFacingUp/c.svg", + "staticwebassets/emojis/Objects/PageFacingUp/f.svg", + "staticwebassets/emojis/Objects/PageFacingUp/h.svg", + "staticwebassets/emojis/Objects/PageWithCurl/c.svg", + "staticwebassets/emojis/Objects/PageWithCurl/f.svg", + "staticwebassets/emojis/Objects/PageWithCurl/h.svg", + "staticwebassets/emojis/Objects/Pager/c.svg", + "staticwebassets/emojis/Objects/Pager/f.svg", + "staticwebassets/emojis/Objects/Pager/h.svg", + "staticwebassets/emojis/Objects/Paintbrush/c.svg", + "staticwebassets/emojis/Objects/Paintbrush/f.svg", + "staticwebassets/emojis/Objects/Paintbrush/h.svg", + "staticwebassets/emojis/Objects/Pen/c.svg", + "staticwebassets/emojis/Objects/Pen/f.svg", + "staticwebassets/emojis/Objects/Pen/h.svg", + "staticwebassets/emojis/Objects/Pencil/c.svg", + "staticwebassets/emojis/Objects/Pencil/f.svg", + "staticwebassets/emojis/Objects/Pencil/h.svg", + "staticwebassets/emojis/Objects/PetriDish/c.svg", + "staticwebassets/emojis/Objects/PetriDish/f.svg", + "staticwebassets/emojis/Objects/PetriDish/h.svg", + "staticwebassets/emojis/Objects/Pick/c.svg", + "staticwebassets/emojis/Objects/Pick/f.svg", + "staticwebassets/emojis/Objects/Pick/h.svg", + "staticwebassets/emojis/Objects/Pill/c.svg", + "staticwebassets/emojis/Objects/Pill/f.svg", + "staticwebassets/emojis/Objects/Pill/h.svg", + "staticwebassets/emojis/Objects/Placard/c.svg", + "staticwebassets/emojis/Objects/Placard/f.svg", + "staticwebassets/emojis/Objects/Placard/h.svg", + "staticwebassets/emojis/Objects/Plunger/c.svg", + "staticwebassets/emojis/Objects/Plunger/f.svg", + "staticwebassets/emojis/Objects/Plunger/h.svg", + "staticwebassets/emojis/Objects/PostalHorn/c.svg", + "staticwebassets/emojis/Objects/PostalHorn/f.svg", + "staticwebassets/emojis/Objects/PostalHorn/h.svg", + "staticwebassets/emojis/Objects/Postbox/c.svg", + "staticwebassets/emojis/Objects/Postbox/f.svg", + "staticwebassets/emojis/Objects/Postbox/h.svg", + "staticwebassets/emojis/Objects/PoundBanknote/c.svg", + "staticwebassets/emojis/Objects/PoundBanknote/f.svg", + "staticwebassets/emojis/Objects/PoundBanknote/h.svg", + "staticwebassets/emojis/Objects/PrayerBeads/c.svg", + "staticwebassets/emojis/Objects/PrayerBeads/f.svg", + "staticwebassets/emojis/Objects/PrayerBeads/h.svg", + "staticwebassets/emojis/Objects/Printer/c.svg", + "staticwebassets/emojis/Objects/Printer/f.svg", + "staticwebassets/emojis/Objects/Printer/h.svg", + "staticwebassets/emojis/Objects/Purse/c.svg", + "staticwebassets/emojis/Objects/Purse/f.svg", + "staticwebassets/emojis/Objects/Purse/h.svg", + "staticwebassets/emojis/Objects/Pushpin/c.svg", + "staticwebassets/emojis/Objects/Pushpin/f.svg", + "staticwebassets/emojis/Objects/Pushpin/h.svg", + "staticwebassets/emojis/Objects/Radio/c.svg", + "staticwebassets/emojis/Objects/Radio/f.svg", + "staticwebassets/emojis/Objects/Radio/h.svg", + "staticwebassets/emojis/Objects/Razor/c.svg", + "staticwebassets/emojis/Objects/Razor/f.svg", + "staticwebassets/emojis/Objects/Razor/h.svg", + "staticwebassets/emojis/Objects/Receipt/c.svg", + "staticwebassets/emojis/Objects/Receipt/f.svg", + "staticwebassets/emojis/Objects/Receipt/h.svg", + "staticwebassets/emojis/Objects/RedPaperLantern/c.svg", + "staticwebassets/emojis/Objects/RedPaperLantern/f.svg", + "staticwebassets/emojis/Objects/RedPaperLantern/h.svg", + "staticwebassets/emojis/Objects/RescueWorkersHelmet/c.svg", + "staticwebassets/emojis/Objects/RescueWorkersHelmet/f.svg", + "staticwebassets/emojis/Objects/RescueWorkersHelmet/h.svg", + "staticwebassets/emojis/Objects/Ring/c.svg", + "staticwebassets/emojis/Objects/Ring/f.svg", + "staticwebassets/emojis/Objects/Ring/h.svg", + "staticwebassets/emojis/Objects/RollOfPaper/c.svg", + "staticwebassets/emojis/Objects/RollOfPaper/f.svg", + "staticwebassets/emojis/Objects/RollOfPaper/h.svg", + "staticwebassets/emojis/Objects/RolledUpNewspaper/c.svg", + "staticwebassets/emojis/Objects/RolledUpNewspaper/f.svg", + "staticwebassets/emojis/Objects/RolledUpNewspaper/h.svg", + "staticwebassets/emojis/Objects/RoundPushpin/c.svg", + "staticwebassets/emojis/Objects/RoundPushpin/f.svg", + "staticwebassets/emojis/Objects/RoundPushpin/h.svg", + "staticwebassets/emojis/Objects/RunningShoe/c.svg", + "staticwebassets/emojis/Objects/RunningShoe/f.svg", + "staticwebassets/emojis/Objects/RunningShoe/h.svg", + "staticwebassets/emojis/Objects/SafetyPin/c.svg", + "staticwebassets/emojis/Objects/SafetyPin/f.svg", + "staticwebassets/emojis/Objects/SafetyPin/h.svg", + "staticwebassets/emojis/Objects/SafetyVest/c.svg", + "staticwebassets/emojis/Objects/SafetyVest/f.svg", + "staticwebassets/emojis/Objects/SafetyVest/h.svg", + "staticwebassets/emojis/Objects/Sari/c.svg", + "staticwebassets/emojis/Objects/Sari/f.svg", + "staticwebassets/emojis/Objects/Sari/h.svg", + "staticwebassets/emojis/Objects/SatelliteAntenna/c.svg", + "staticwebassets/emojis/Objects/SatelliteAntenna/f.svg", + "staticwebassets/emojis/Objects/SatelliteAntenna/h.svg", + "staticwebassets/emojis/Objects/Saxophone/c.svg", + "staticwebassets/emojis/Objects/Saxophone/f.svg", + "staticwebassets/emojis/Objects/Saxophone/h.svg", + "staticwebassets/emojis/Objects/Scarf/c.svg", + "staticwebassets/emojis/Objects/Scarf/f.svg", + "staticwebassets/emojis/Objects/Scarf/h.svg", + "staticwebassets/emojis/Objects/Scissors/c.svg", + "staticwebassets/emojis/Objects/Scissors/f.svg", + "staticwebassets/emojis/Objects/Scissors/h.svg", + "staticwebassets/emojis/Objects/Screwdriver/c.svg", + "staticwebassets/emojis/Objects/Screwdriver/f.svg", + "staticwebassets/emojis/Objects/Screwdriver/h.svg", + "staticwebassets/emojis/Objects/Scroll/c.svg", + "staticwebassets/emojis/Objects/Scroll/f.svg", + "staticwebassets/emojis/Objects/Scroll/h.svg", + "staticwebassets/emojis/Objects/Shield/c.svg", + "staticwebassets/emojis/Objects/Shield/f.svg", + "staticwebassets/emojis/Objects/Shield/h.svg", + "staticwebassets/emojis/Objects/ShoppingBags/c.svg", + "staticwebassets/emojis/Objects/ShoppingBags/f.svg", + "staticwebassets/emojis/Objects/ShoppingBags/h.svg", + "staticwebassets/emojis/Objects/ShoppingCart/c.svg", + "staticwebassets/emojis/Objects/ShoppingCart/f.svg", + "staticwebassets/emojis/Objects/ShoppingCart/h.svg", + "staticwebassets/emojis/Objects/Shorts/c.svg", + "staticwebassets/emojis/Objects/Shorts/f.svg", + "staticwebassets/emojis/Objects/Shorts/h.svg", + "staticwebassets/emojis/Objects/Shower/c.svg", + "staticwebassets/emojis/Objects/Shower/f.svg", + "staticwebassets/emojis/Objects/Shower/h.svg", + "staticwebassets/emojis/Objects/Soap/c.svg", + "staticwebassets/emojis/Objects/Soap/f.svg", + "staticwebassets/emojis/Objects/Soap/h.svg", + "staticwebassets/emojis/Objects/Socks/c.svg", + "staticwebassets/emojis/Objects/Socks/f.svg", + "staticwebassets/emojis/Objects/Socks/h.svg", + "staticwebassets/emojis/Objects/SpeakerHighVolume/c.svg", + "staticwebassets/emojis/Objects/SpeakerHighVolume/f.svg", + "staticwebassets/emojis/Objects/SpeakerHighVolume/h.svg", + "staticwebassets/emojis/Objects/SpeakerLowVolume/c.svg", + "staticwebassets/emojis/Objects/SpeakerLowVolume/f.svg", + "staticwebassets/emojis/Objects/SpeakerLowVolume/h.svg", + "staticwebassets/emojis/Objects/SpeakerMediumVolume/c.svg", + "staticwebassets/emojis/Objects/SpeakerMediumVolume/f.svg", + "staticwebassets/emojis/Objects/SpeakerMediumVolume/h.svg", + "staticwebassets/emojis/Objects/SpiralCalendar/c.svg", + "staticwebassets/emojis/Objects/SpiralCalendar/f.svg", + "staticwebassets/emojis/Objects/SpiralCalendar/h.svg", + "staticwebassets/emojis/Objects/SpiralNotepad/c.svg", + "staticwebassets/emojis/Objects/SpiralNotepad/f.svg", + "staticwebassets/emojis/Objects/SpiralNotepad/h.svg", + "staticwebassets/emojis/Objects/Sponge/c.svg", + "staticwebassets/emojis/Objects/Sponge/f.svg", + "staticwebassets/emojis/Objects/Sponge/h.svg", + "staticwebassets/emojis/Objects/Stethoscope/c.svg", + "staticwebassets/emojis/Objects/Stethoscope/f.svg", + "staticwebassets/emojis/Objects/Stethoscope/h.svg", + "staticwebassets/emojis/Objects/StraightRuler/c.svg", + "staticwebassets/emojis/Objects/StraightRuler/f.svg", + "staticwebassets/emojis/Objects/StraightRuler/h.svg", + "staticwebassets/emojis/Objects/StudioMicrophone/c.svg", + "staticwebassets/emojis/Objects/StudioMicrophone/f.svg", + "staticwebassets/emojis/Objects/StudioMicrophone/h.svg", + "staticwebassets/emojis/Objects/Sunglasses/c.svg", + "staticwebassets/emojis/Objects/Sunglasses/f.svg", + "staticwebassets/emojis/Objects/Sunglasses/h.svg", + "staticwebassets/emojis/Objects/Syringe/c.svg", + "staticwebassets/emojis/Objects/Syringe/f.svg", + "staticwebassets/emojis/Objects/Syringe/h.svg", + "staticwebassets/emojis/Objects/TShirt/c.svg", + "staticwebassets/emojis/Objects/TShirt/f.svg", + "staticwebassets/emojis/Objects/TShirt/h.svg", + "staticwebassets/emojis/Objects/TearOffCalendar/c.svg", + "staticwebassets/emojis/Objects/TearOffCalendar/f.svg", + "staticwebassets/emojis/Objects/TearOffCalendar/h.svg", + "staticwebassets/emojis/Objects/Telephone/c.svg", + "staticwebassets/emojis/Objects/Telephone/f.svg", + "staticwebassets/emojis/Objects/Telephone/h.svg", + "staticwebassets/emojis/Objects/TelephoneReceiver/c.svg", + "staticwebassets/emojis/Objects/TelephoneReceiver/f.svg", + "staticwebassets/emojis/Objects/TelephoneReceiver/h.svg", + "staticwebassets/emojis/Objects/Telescope/c.svg", + "staticwebassets/emojis/Objects/Telescope/f.svg", + "staticwebassets/emojis/Objects/Telescope/h.svg", + "staticwebassets/emojis/Objects/Television/c.svg", + "staticwebassets/emojis/Objects/Television/f.svg", + "staticwebassets/emojis/Objects/Television/h.svg", + "staticwebassets/emojis/Objects/TestTube/c.svg", + "staticwebassets/emojis/Objects/TestTube/f.svg", + "staticwebassets/emojis/Objects/TestTube/h.svg", + "staticwebassets/emojis/Objects/ThongSandal/c.svg", + "staticwebassets/emojis/Objects/ThongSandal/f.svg", + "staticwebassets/emojis/Objects/ThongSandal/h.svg", + "staticwebassets/emojis/Objects/Toilet/c.svg", + "staticwebassets/emojis/Objects/Toilet/f.svg", + "staticwebassets/emojis/Objects/Toilet/h.svg", + "staticwebassets/emojis/Objects/Toolbox/c.svg", + "staticwebassets/emojis/Objects/Toolbox/f.svg", + "staticwebassets/emojis/Objects/Toolbox/h.svg", + "staticwebassets/emojis/Objects/Toothbrush/c.svg", + "staticwebassets/emojis/Objects/Toothbrush/f.svg", + "staticwebassets/emojis/Objects/Toothbrush/h.svg", + "staticwebassets/emojis/Objects/TopHat/c.svg", + "staticwebassets/emojis/Objects/TopHat/f.svg", + "staticwebassets/emojis/Objects/TopHat/h.svg", + "staticwebassets/emojis/Objects/Trackball/c.svg", + "staticwebassets/emojis/Objects/Trackball/f.svg", + "staticwebassets/emojis/Objects/Trackball/h.svg", + "staticwebassets/emojis/Objects/TriangularRuler/c.svg", + "staticwebassets/emojis/Objects/TriangularRuler/f.svg", + "staticwebassets/emojis/Objects/TriangularRuler/h.svg", + "staticwebassets/emojis/Objects/Trumpet/c.svg", + "staticwebassets/emojis/Objects/Trumpet/f.svg", + "staticwebassets/emojis/Objects/Trumpet/h.svg", + "staticwebassets/emojis/Objects/Unlocked/c.svg", + "staticwebassets/emojis/Objects/Unlocked/f.svg", + "staticwebassets/emojis/Objects/Unlocked/h.svg", + "staticwebassets/emojis/Objects/VideoCamera/c.svg", + "staticwebassets/emojis/Objects/VideoCamera/f.svg", + "staticwebassets/emojis/Objects/VideoCamera/h.svg", + "staticwebassets/emojis/Objects/Videocassette/c.svg", + "staticwebassets/emojis/Objects/Videocassette/f.svg", + "staticwebassets/emojis/Objects/Videocassette/h.svg", + "staticwebassets/emojis/Objects/Violin/c.svg", + "staticwebassets/emojis/Objects/Violin/f.svg", + "staticwebassets/emojis/Objects/Violin/h.svg", + "staticwebassets/emojis/Objects/Wastebasket/c.svg", + "staticwebassets/emojis/Objects/Wastebasket/f.svg", + "staticwebassets/emojis/Objects/Wastebasket/h.svg", + "staticwebassets/emojis/Objects/WaterPistol/c.svg", + "staticwebassets/emojis/Objects/WaterPistol/f.svg", + "staticwebassets/emojis/Objects/WaterPistol/h.svg", + "staticwebassets/emojis/Objects/WhiteCane/c.svg", + "staticwebassets/emojis/Objects/WhiteCane/f.svg", + "staticwebassets/emojis/Objects/WhiteCane/h.svg", + "staticwebassets/emojis/Objects/Window/c.svg", + "staticwebassets/emojis/Objects/Window/f.svg", + "staticwebassets/emojis/Objects/Window/h.svg", + "staticwebassets/emojis/Objects/WomansBoot/c.svg", + "staticwebassets/emojis/Objects/WomansBoot/f.svg", + "staticwebassets/emojis/Objects/WomansBoot/h.svg", + "staticwebassets/emojis/Objects/WomansClothes/c.svg", + "staticwebassets/emojis/Objects/WomansClothes/f.svg", + "staticwebassets/emojis/Objects/WomansClothes/h.svg", + "staticwebassets/emojis/Objects/WomansHat/c.svg", + "staticwebassets/emojis/Objects/WomansHat/f.svg", + "staticwebassets/emojis/Objects/WomansHat/h.svg", + "staticwebassets/emojis/Objects/WomansSandal/c.svg", + "staticwebassets/emojis/Objects/WomansSandal/f.svg", + "staticwebassets/emojis/Objects/WomansSandal/h.svg", + "staticwebassets/emojis/Objects/Wrench/c.svg", + "staticwebassets/emojis/Objects/Wrench/f.svg", + "staticwebassets/emojis/Objects/Wrench/h.svg", + "staticwebassets/emojis/Objects/XRay/c.svg", + "staticwebassets/emojis/Objects/XRay/f.svg", + "staticwebassets/emojis/Objects/XRay/h.svg", + "staticwebassets/emojis/Objects/YenBanknote/c.svg", + "staticwebassets/emojis/Objects/YenBanknote/f.svg", + "staticwebassets/emojis/Objects/YenBanknote/h.svg", + "staticwebassets/emojis/People_Body/AnatomicalHeart/c.svg", + "staticwebassets/emojis/People_Body/AnatomicalHeart/f.svg", + "staticwebassets/emojis/People_Body/AnatomicalHeart/h.svg", + "staticwebassets/emojis/People_Body/BitingLip/c.svg", + "staticwebassets/emojis/People_Body/BitingLip/f.svg", + "staticwebassets/emojis/People_Body/BitingLip/h.svg", + "staticwebassets/emojis/People_Body/Bone/c.svg", + "staticwebassets/emojis/People_Body/Bone/f.svg", + "staticwebassets/emojis/People_Body/Bone/h.svg", + "staticwebassets/emojis/People_Body/Brain/c.svg", + "staticwebassets/emojis/People_Body/Brain/f.svg", + "staticwebassets/emojis/People_Body/Brain/h.svg", + "staticwebassets/emojis/People_Body/BustInSilhouette/c.svg", + "staticwebassets/emojis/People_Body/BustInSilhouette/f.svg", + "staticwebassets/emojis/People_Body/BustInSilhouette/h.svg", + "staticwebassets/emojis/People_Body/BustsInSilhouette/c.svg", + "staticwebassets/emojis/People_Body/BustsInSilhouette/f.svg", + "staticwebassets/emojis/People_Body/BustsInSilhouette/h.svg", + "staticwebassets/emojis/People_Body/Eye/c.svg", + "staticwebassets/emojis/People_Body/Eye/f.svg", + "staticwebassets/emojis/People_Body/Eye/h.svg", + "staticwebassets/emojis/People_Body/Eyes/c.svg", + "staticwebassets/emojis/People_Body/Eyes/f.svg", + "staticwebassets/emojis/People_Body/Eyes/h.svg", + "staticwebassets/emojis/People_Body/Footprints/c.svg", + "staticwebassets/emojis/People_Body/Footprints/f.svg", + "staticwebassets/emojis/People_Body/Footprints/h.svg", + "staticwebassets/emojis/People_Body/Handshake/c.svg", + "staticwebassets/emojis/People_Body/Handshake/f.svg", + "staticwebassets/emojis/People_Body/Handshake/h.svg", + "staticwebassets/emojis/People_Body/Lungs/c.svg", + "staticwebassets/emojis/People_Body/Lungs/f.svg", + "staticwebassets/emojis/People_Body/Lungs/h.svg", + "staticwebassets/emojis/People_Body/ManGenie/c.svg", + "staticwebassets/emojis/People_Body/ManGenie/f.svg", + "staticwebassets/emojis/People_Body/ManGenie/h.svg", + "staticwebassets/emojis/People_Body/ManWithBunnyEars/c.svg", + "staticwebassets/emojis/People_Body/ManWithBunnyEars/f.svg", + "staticwebassets/emojis/People_Body/ManWithBunnyEars/h.svg", + "staticwebassets/emojis/People_Body/ManWrestling/c.svg", + "staticwebassets/emojis/People_Body/ManWrestling/f.svg", + "staticwebassets/emojis/People_Body/ManWrestling/h.svg", + "staticwebassets/emojis/People_Body/ManZombie/c.svg", + "staticwebassets/emojis/People_Body/ManZombie/f.svg", + "staticwebassets/emojis/People_Body/ManZombie/h.svg", + "staticwebassets/emojis/People_Body/MechanicalArm/c.svg", + "staticwebassets/emojis/People_Body/MechanicalArm/f.svg", + "staticwebassets/emojis/People_Body/MechanicalArm/h.svg", + "staticwebassets/emojis/People_Body/MechanicalLeg/c.svg", + "staticwebassets/emojis/People_Body/MechanicalLeg/f.svg", + "staticwebassets/emojis/People_Body/MechanicalLeg/h.svg", + "staticwebassets/emojis/People_Body/Mouth/c.svg", + "staticwebassets/emojis/People_Body/Mouth/f.svg", + "staticwebassets/emojis/People_Body/Mouth/h.svg", + "staticwebassets/emojis/People_Body/PeopleHugging/c.svg", + "staticwebassets/emojis/People_Body/PeopleHugging/f.svg", + "staticwebassets/emojis/People_Body/PeopleHugging/h.svg", + "staticwebassets/emojis/People_Body/PersonFencing/c.svg", + "staticwebassets/emojis/People_Body/PersonFencing/f.svg", + "staticwebassets/emojis/People_Body/PersonFencing/h.svg", + "staticwebassets/emojis/People_Body/PersonGenie/c.svg", + "staticwebassets/emojis/People_Body/PersonGenie/f.svg", + "staticwebassets/emojis/People_Body/PersonGenie/h.svg", + "staticwebassets/emojis/People_Body/PersonWithBunnyEars/c.svg", + "staticwebassets/emojis/People_Body/PersonWithBunnyEars/f.svg", + "staticwebassets/emojis/People_Body/PersonWithBunnyEars/h.svg", + "staticwebassets/emojis/People_Body/PersonWrestling/c.svg", + "staticwebassets/emojis/People_Body/PersonWrestling/f.svg", + "staticwebassets/emojis/People_Body/PersonWrestling/h.svg", + "staticwebassets/emojis/People_Body/PersonZombie/c.svg", + "staticwebassets/emojis/People_Body/PersonZombie/f.svg", + "staticwebassets/emojis/People_Body/PersonZombie/h.svg", + "staticwebassets/emojis/People_Body/Skier/c.svg", + "staticwebassets/emojis/People_Body/Skier/f.svg", + "staticwebassets/emojis/People_Body/Skier/h.svg", + "staticwebassets/emojis/People_Body/SpeakingHead/c.svg", + "staticwebassets/emojis/People_Body/SpeakingHead/f.svg", + "staticwebassets/emojis/People_Body/SpeakingHead/h.svg", + "staticwebassets/emojis/People_Body/Tongue/c.svg", + "staticwebassets/emojis/People_Body/Tongue/f.svg", + "staticwebassets/emojis/People_Body/Tongue/h.svg", + "staticwebassets/emojis/People_Body/Tooth/c.svg", + "staticwebassets/emojis/People_Body/Tooth/f.svg", + "staticwebassets/emojis/People_Body/Tooth/h.svg", + "staticwebassets/emojis/People_Body/Troll/c.svg", + "staticwebassets/emojis/People_Body/Troll/f.svg", + "staticwebassets/emojis/People_Body/Troll/h.svg", + "staticwebassets/emojis/People_Body/WomanGenie/c.svg", + "staticwebassets/emojis/People_Body/WomanGenie/f.svg", + "staticwebassets/emojis/People_Body/WomanGenie/h.svg", + "staticwebassets/emojis/People_Body/WomanWithBunnyEars/c.svg", + "staticwebassets/emojis/People_Body/WomanWithBunnyEars/f.svg", + "staticwebassets/emojis/People_Body/WomanWithBunnyEars/h.svg", + "staticwebassets/emojis/People_Body/WomanWrestling/c.svg", + "staticwebassets/emojis/People_Body/WomanWrestling/f.svg", + "staticwebassets/emojis/People_Body/WomanWrestling/h.svg", + "staticwebassets/emojis/People_Body/WomanZombie/c.svg", + "staticwebassets/emojis/People_Body/WomanZombie/f.svg", + "staticwebassets/emojis/People_Body/WomanZombie/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Alien/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Alien/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Alien/h.svg", + "staticwebassets/emojis/Smileys_Emotion/AlienMonster/c.svg", + "staticwebassets/emojis/Smileys_Emotion/AlienMonster/f.svg", + "staticwebassets/emojis/Smileys_Emotion/AlienMonster/h.svg", + "staticwebassets/emojis/Smileys_Emotion/AngerSymbol/c.svg", + "staticwebassets/emojis/Smileys_Emotion/AngerSymbol/f.svg", + "staticwebassets/emojis/Smileys_Emotion/AngerSymbol/h.svg", + "staticwebassets/emojis/Smileys_Emotion/AngryFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/AngryFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/AngryFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/AngryFaceWithHorns/c.svg", + "staticwebassets/emojis/Smileys_Emotion/AngryFaceWithHorns/f.svg", + "staticwebassets/emojis/Smileys_Emotion/AngryFaceWithHorns/h.svg", + "staticwebassets/emojis/Smileys_Emotion/AnguishedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/AnguishedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/AnguishedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/AnxiousFaceWithSweat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/AnxiousFaceWithSweat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/AnxiousFaceWithSweat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/AstonishedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/AstonishedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/AstonishedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/BeamingFaceWithSmilingEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/BeamingFaceWithSmilingEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/BeamingFaceWithSmilingEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/BeatingHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/BeatingHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/BeatingHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/BlackHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/BlackHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/BlackHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/BlueHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/BlueHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/BlueHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Bomb/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Bomb/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Bomb/h.svg", + "staticwebassets/emojis/Smileys_Emotion/BrokenHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/BrokenHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/BrokenHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/BrownHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/BrownHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/BrownHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/CatWithTearsOfJoy/c.svg", + "staticwebassets/emojis/Smileys_Emotion/CatWithTearsOfJoy/f.svg", + "staticwebassets/emojis/Smileys_Emotion/CatWithTearsOfJoy/h.svg", + "staticwebassets/emojis/Smileys_Emotion/CatWithWrySmile/c.svg", + "staticwebassets/emojis/Smileys_Emotion/CatWithWrySmile/f.svg", + "staticwebassets/emojis/Smileys_Emotion/CatWithWrySmile/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ClownFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ClownFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ClownFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ColdFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ColdFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ColdFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Collision/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Collision/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Collision/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ConfoundedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ConfoundedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ConfoundedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ConfusedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ConfusedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ConfusedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/CowboyHatFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/CowboyHatFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/CowboyHatFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/CryingCat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/CryingCat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/CryingCat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/CryingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/CryingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/CryingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/DashingAway/c.svg", + "staticwebassets/emojis/Smileys_Emotion/DashingAway/f.svg", + "staticwebassets/emojis/Smileys_Emotion/DashingAway/h.svg", + "staticwebassets/emojis/Smileys_Emotion/DisappointedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/DisappointedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/DisappointedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/DisguisedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/DisguisedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/DisguisedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Dizzy/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Dizzy/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Dizzy/h.svg", + "staticwebassets/emojis/Smileys_Emotion/DottedLineFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/DottedLineFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/DottedLineFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/DowncastFaceWithSweat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/DowncastFaceWithSweat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/DowncastFaceWithSweat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/DroolingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/DroolingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/DroolingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ExplodingHead/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ExplodingHead/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ExplodingHead/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ExpressionlessFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ExpressionlessFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ExpressionlessFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/EyeInSpeechBubble/c.svg", + "staticwebassets/emojis/Smileys_Emotion/EyeInSpeechBubble/f.svg", + "staticwebassets/emojis/Smileys_Emotion/EyeInSpeechBubble/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceBlowingAKiss/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceBlowingAKiss/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceBlowingAKiss/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceExhaling/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceExhaling/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceExhaling/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceHoldingBackTears/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceHoldingBackTears/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceHoldingBackTears/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceInClouds/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceInClouds/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceInClouds/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceSavoringFood/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceSavoringFood/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceSavoringFood/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceScreamingInFear/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceScreamingInFear/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceScreamingInFear/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceVomiting/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceVomiting/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceVomiting/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithDiagonalMouth/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithDiagonalMouth/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithDiagonalMouth/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithHandOverMouth/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithHandOverMouth/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithHandOverMouth/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithHeadBandage/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithHeadBandage/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithHeadBandage/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithMedicalMask/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithMedicalMask/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithMedicalMask/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithMonocle/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithMonocle/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithMonocle/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithOpenEyesAndHandOverMouth/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithOpenEyesAndHandOverMouth/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithOpenEyesAndHandOverMouth/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithOpenMouth/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithOpenMouth/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithOpenMouth/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithPeekingEye/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithPeekingEye/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithPeekingEye/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithRaisedEyebrow/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithRaisedEyebrow/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithRaisedEyebrow/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithRollingEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithRollingEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithRollingEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSpiralEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSpiralEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSpiralEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSteamFromNose/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSteamFromNose/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSteamFromNose/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSymbolsOnMouth/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSymbolsOnMouth/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithSymbolsOnMouth/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithTearsOfJoy/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithTearsOfJoy/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithTearsOfJoy/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithThermometer/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithThermometer/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithThermometer/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithTongue/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithTongue/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithTongue/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithoutMouth/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithoutMouth/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FaceWithoutMouth/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FearfulFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FearfulFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FearfulFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FlushedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FlushedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FlushedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FrowningFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FrowningFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FrowningFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/FrowningFaceWithOpenMouth/c.svg", + "staticwebassets/emojis/Smileys_Emotion/FrowningFaceWithOpenMouth/f.svg", + "staticwebassets/emojis/Smileys_Emotion/FrowningFaceWithOpenMouth/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Ghost/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Ghost/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Ghost/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Goblin/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Goblin/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Goblin/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GreenHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GreenHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GreenHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrimacingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrimacingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrimacingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningCat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningCat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningCat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningCatWithSmilingEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningCatWithSmilingEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningCatWithSmilingEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithBigEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithBigEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithBigEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithSmilingEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithSmilingEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithSmilingEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithSweat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithSweat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningFaceWithSweat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningSquintingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningSquintingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrinningSquintingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/GrowingHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/GrowingHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/GrowingHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HearNoEvilMonkey/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HearNoEvilMonkey/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HearNoEvilMonkey/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartDecoration/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartDecoration/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartDecoration/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartExclamation/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartExclamation/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartExclamation/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartOnFire/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartOnFire/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartOnFire/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartWithArrow/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartWithArrow/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartWithArrow/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartWithRibbon/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartWithRibbon/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HeartWithRibbon/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Hole/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Hole/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Hole/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HotFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HotFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HotFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HuggingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HuggingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HuggingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HundredPoints/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HundredPoints/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HundredPoints/h.svg", + "staticwebassets/emojis/Smileys_Emotion/HushedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/HushedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/HushedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/KissMark/c.svg", + "staticwebassets/emojis/Smileys_Emotion/KissMark/f.svg", + "staticwebassets/emojis/Smileys_Emotion/KissMark/h.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingCat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingCat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingCat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFaceWithClosedEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFaceWithClosedEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFaceWithClosedEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFaceWithSmilingEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFaceWithSmilingEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/KissingFaceWithSmilingEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/KnockedOutFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/KnockedOutFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/KnockedOutFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/LeftSpeechBubble/c.svg", + "staticwebassets/emojis/Smileys_Emotion/LeftSpeechBubble/f.svg", + "staticwebassets/emojis/Smileys_Emotion/LeftSpeechBubble/h.svg", + "staticwebassets/emojis/Smileys_Emotion/LoudlyCryingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/LoudlyCryingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/LoudlyCryingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/LoveLetter/c.svg", + "staticwebassets/emojis/Smileys_Emotion/LoveLetter/f.svg", + "staticwebassets/emojis/Smileys_Emotion/LoveLetter/h.svg", + "staticwebassets/emojis/Smileys_Emotion/LyingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/LyingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/LyingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/MeltingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/MeltingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/MeltingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/MendingHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/MendingHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/MendingHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/MoneyMouthFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/MoneyMouthFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/MoneyMouthFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/NauseatedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/NauseatedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/NauseatedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/NerdFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/NerdFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/NerdFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/NeutralFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/NeutralFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/NeutralFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Ogre/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Ogre/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Ogre/h.svg", + "staticwebassets/emojis/Smileys_Emotion/OrangeHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/OrangeHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/OrangeHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PartyingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PartyingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PartyingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PensiveFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PensiveFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PensiveFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PerseveringFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PerseveringFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PerseveringFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PileOfPoo/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PileOfPoo/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PileOfPoo/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PleadingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PleadingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PleadingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PoutingCat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PoutingCat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PoutingCat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PoutingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PoutingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PoutingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/PurpleHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/PurpleHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/PurpleHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/RedHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/RedHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/RedHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/RelievedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/RelievedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/RelievedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/RevolvingHearts/c.svg", + "staticwebassets/emojis/Smileys_Emotion/RevolvingHearts/f.svg", + "staticwebassets/emojis/Smileys_Emotion/RevolvingHearts/h.svg", + "staticwebassets/emojis/Smileys_Emotion/RightAngerBubble/c.svg", + "staticwebassets/emojis/Smileys_Emotion/RightAngerBubble/f.svg", + "staticwebassets/emojis/Smileys_Emotion/RightAngerBubble/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Robot/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Robot/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Robot/h.svg", + "staticwebassets/emojis/Smileys_Emotion/RollingOnTheFloorLaughing/c.svg", + "staticwebassets/emojis/Smileys_Emotion/RollingOnTheFloorLaughing/f.svg", + "staticwebassets/emojis/Smileys_Emotion/RollingOnTheFloorLaughing/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SadButRelievedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SadButRelievedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SadButRelievedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SalutingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SalutingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SalutingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SeeNoEvilMonkey/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SeeNoEvilMonkey/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SeeNoEvilMonkey/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ShushingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ShushingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ShushingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Skull/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Skull/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Skull/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SkullAndCrossbones/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SkullAndCrossbones/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SkullAndCrossbones/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SleepingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SleepingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SleepingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SleepyFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SleepyFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SleepyFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SlightlyFrowningFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SlightlyFrowningFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SlightlyFrowningFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SlightlySmilingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SlightlySmilingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SlightlySmilingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingCatWithHeartEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingCatWithHeartEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingCatWithHeartEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHalo/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHalo/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHalo/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHeartEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHeartEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHeartEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHearts/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHearts/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHearts/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHorns/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHorns/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithHorns/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithSmilingEyes/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithSmilingEyes/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithSmilingEyes/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithSunglasses/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithSunglasses/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithSunglasses/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithTear/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithTear/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmilingFaceWithTear/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SmirkingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SmirkingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SmirkingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SneezingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SneezingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SneezingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SparklingHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SparklingHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SparklingHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SpeakNoEvilMonkey/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SpeakNoEvilMonkey/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SpeakNoEvilMonkey/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SpeechBalloon/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SpeechBalloon/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SpeechBalloon/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SquintingFaceWithTongue/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SquintingFaceWithTongue/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SquintingFaceWithTongue/h.svg", + "staticwebassets/emojis/Smileys_Emotion/StarStruck/c.svg", + "staticwebassets/emojis/Smileys_Emotion/StarStruck/f.svg", + "staticwebassets/emojis/Smileys_Emotion/StarStruck/h.svg", + "staticwebassets/emojis/Smileys_Emotion/SweatDroplets/c.svg", + "staticwebassets/emojis/Smileys_Emotion/SweatDroplets/f.svg", + "staticwebassets/emojis/Smileys_Emotion/SweatDroplets/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ThinkingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ThinkingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ThinkingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ThoughtBalloon/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ThoughtBalloon/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ThoughtBalloon/h.svg", + "staticwebassets/emojis/Smileys_Emotion/TiredFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/TiredFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/TiredFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/TwoHearts/c.svg", + "staticwebassets/emojis/Smileys_Emotion/TwoHearts/f.svg", + "staticwebassets/emojis/Smileys_Emotion/TwoHearts/h.svg", + "staticwebassets/emojis/Smileys_Emotion/UnamusedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/UnamusedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/UnamusedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/UpsideDownFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/UpsideDownFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/UpsideDownFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/WearyCat/c.svg", + "staticwebassets/emojis/Smileys_Emotion/WearyCat/f.svg", + "staticwebassets/emojis/Smileys_Emotion/WearyCat/h.svg", + "staticwebassets/emojis/Smileys_Emotion/WearyFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/WearyFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/WearyFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/WhiteHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/WhiteHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/WhiteHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/WinkingFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/WinkingFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/WinkingFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/WinkingFaceWithTongue/c.svg", + "staticwebassets/emojis/Smileys_Emotion/WinkingFaceWithTongue/f.svg", + "staticwebassets/emojis/Smileys_Emotion/WinkingFaceWithTongue/h.svg", + "staticwebassets/emojis/Smileys_Emotion/WoozyFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/WoozyFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/WoozyFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/WorriedFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/WorriedFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/WorriedFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/YawningFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/YawningFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/YawningFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/YellowHeart/c.svg", + "staticwebassets/emojis/Smileys_Emotion/YellowHeart/f.svg", + "staticwebassets/emojis/Smileys_Emotion/YellowHeart/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ZanyFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ZanyFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ZanyFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/ZipperMouthFace/c.svg", + "staticwebassets/emojis/Smileys_Emotion/ZipperMouthFace/f.svg", + "staticwebassets/emojis/Smileys_Emotion/ZipperMouthFace/h.svg", + "staticwebassets/emojis/Smileys_Emotion/Zzz/c.svg", + "staticwebassets/emojis/Smileys_Emotion/Zzz/f.svg", + "staticwebassets/emojis/Smileys_Emotion/Zzz/h.svg", + "staticwebassets/emojis/Symbols/AButtonBloodType/c.svg", + "staticwebassets/emojis/Symbols/AButtonBloodType/f.svg", + "staticwebassets/emojis/Symbols/AButtonBloodType/h.svg", + "staticwebassets/emojis/Symbols/AbButtonBloodType/c.svg", + "staticwebassets/emojis/Symbols/AbButtonBloodType/f.svg", + "staticwebassets/emojis/Symbols/AbButtonBloodType/h.svg", + "staticwebassets/emojis/Symbols/AntennaBars/c.svg", + "staticwebassets/emojis/Symbols/AntennaBars/f.svg", + "staticwebassets/emojis/Symbols/AntennaBars/h.svg", + "staticwebassets/emojis/Symbols/Aquarius/c.svg", + "staticwebassets/emojis/Symbols/Aquarius/f.svg", + "staticwebassets/emojis/Symbols/Aquarius/h.svg", + "staticwebassets/emojis/Symbols/Aries/c.svg", + "staticwebassets/emojis/Symbols/Aries/f.svg", + "staticwebassets/emojis/Symbols/Aries/h.svg", + "staticwebassets/emojis/Symbols/AtmSign/c.svg", + "staticwebassets/emojis/Symbols/AtmSign/f.svg", + "staticwebassets/emojis/Symbols/AtmSign/h.svg", + "staticwebassets/emojis/Symbols/AtomSymbol/c.svg", + "staticwebassets/emojis/Symbols/AtomSymbol/f.svg", + "staticwebassets/emojis/Symbols/AtomSymbol/h.svg", + "staticwebassets/emojis/Symbols/BButtonBloodType/c.svg", + "staticwebassets/emojis/Symbols/BButtonBloodType/f.svg", + "staticwebassets/emojis/Symbols/BButtonBloodType/h.svg", + "staticwebassets/emojis/Symbols/BabySymbol/c.svg", + "staticwebassets/emojis/Symbols/BabySymbol/f.svg", + "staticwebassets/emojis/Symbols/BabySymbol/h.svg", + "staticwebassets/emojis/Symbols/BackArrow/c.svg", + "staticwebassets/emojis/Symbols/BackArrow/f.svg", + "staticwebassets/emojis/Symbols/BackArrow/h.svg", + "staticwebassets/emojis/Symbols/BaggageClaim/c.svg", + "staticwebassets/emojis/Symbols/BaggageClaim/f.svg", + "staticwebassets/emojis/Symbols/BaggageClaim/h.svg", + "staticwebassets/emojis/Symbols/Biohazard/c.svg", + "staticwebassets/emojis/Symbols/Biohazard/f.svg", + "staticwebassets/emojis/Symbols/Biohazard/h.svg", + "staticwebassets/emojis/Symbols/BlackCircle/c.svg", + "staticwebassets/emojis/Symbols/BlackCircle/f.svg", + "staticwebassets/emojis/Symbols/BlackCircle/h.svg", + "staticwebassets/emojis/Symbols/BlackLargeSquare/c.svg", + "staticwebassets/emojis/Symbols/BlackLargeSquare/f.svg", + "staticwebassets/emojis/Symbols/BlackLargeSquare/h.svg", + "staticwebassets/emojis/Symbols/BlackMediumSmallSquare/c.svg", + "staticwebassets/emojis/Symbols/BlackMediumSmallSquare/f.svg", + "staticwebassets/emojis/Symbols/BlackMediumSmallSquare/h.svg", + "staticwebassets/emojis/Symbols/BlackMediumSquare/c.svg", + "staticwebassets/emojis/Symbols/BlackMediumSquare/f.svg", + "staticwebassets/emojis/Symbols/BlackMediumSquare/h.svg", + "staticwebassets/emojis/Symbols/BlackSmallSquare/c.svg", + "staticwebassets/emojis/Symbols/BlackSmallSquare/f.svg", + "staticwebassets/emojis/Symbols/BlackSmallSquare/h.svg", + "staticwebassets/emojis/Symbols/BlackSquareButton/c.svg", + "staticwebassets/emojis/Symbols/BlackSquareButton/f.svg", + "staticwebassets/emojis/Symbols/BlackSquareButton/h.svg", + "staticwebassets/emojis/Symbols/BlueCircle/c.svg", + "staticwebassets/emojis/Symbols/BlueCircle/f.svg", + "staticwebassets/emojis/Symbols/BlueCircle/h.svg", + "staticwebassets/emojis/Symbols/BlueSquare/c.svg", + "staticwebassets/emojis/Symbols/BlueSquare/f.svg", + "staticwebassets/emojis/Symbols/BlueSquare/h.svg", + "staticwebassets/emojis/Symbols/BrightButton/c.svg", + "staticwebassets/emojis/Symbols/BrightButton/f.svg", + "staticwebassets/emojis/Symbols/BrightButton/h.svg", + "staticwebassets/emojis/Symbols/BrownCircle/c.svg", + "staticwebassets/emojis/Symbols/BrownCircle/f.svg", + "staticwebassets/emojis/Symbols/BrownCircle/h.svg", + "staticwebassets/emojis/Symbols/BrownSquare/c.svg", + "staticwebassets/emojis/Symbols/BrownSquare/f.svg", + "staticwebassets/emojis/Symbols/BrownSquare/h.svg", + "staticwebassets/emojis/Symbols/Cancer/c.svg", + "staticwebassets/emojis/Symbols/Cancer/f.svg", + "staticwebassets/emojis/Symbols/Cancer/h.svg", + "staticwebassets/emojis/Symbols/Capricorn/c.svg", + "staticwebassets/emojis/Symbols/Capricorn/f.svg", + "staticwebassets/emojis/Symbols/Capricorn/h.svg", + "staticwebassets/emojis/Symbols/CheckBoxWithCheck/c.svg", + "staticwebassets/emojis/Symbols/CheckBoxWithCheck/f.svg", + "staticwebassets/emojis/Symbols/CheckBoxWithCheck/h.svg", + "staticwebassets/emojis/Symbols/CheckMark/c.svg", + "staticwebassets/emojis/Symbols/CheckMark/f.svg", + "staticwebassets/emojis/Symbols/CheckMark/h.svg", + "staticwebassets/emojis/Symbols/CheckMarkButton/c.svg", + "staticwebassets/emojis/Symbols/CheckMarkButton/f.svg", + "staticwebassets/emojis/Symbols/CheckMarkButton/h.svg", + "staticwebassets/emojis/Symbols/ChildrenCrossing/c.svg", + "staticwebassets/emojis/Symbols/ChildrenCrossing/f.svg", + "staticwebassets/emojis/Symbols/ChildrenCrossing/h.svg", + "staticwebassets/emojis/Symbols/Cinema/c.svg", + "staticwebassets/emojis/Symbols/Cinema/f.svg", + "staticwebassets/emojis/Symbols/Cinema/h.svg", + "staticwebassets/emojis/Symbols/CircledM/c.svg", + "staticwebassets/emojis/Symbols/CircledM/f.svg", + "staticwebassets/emojis/Symbols/CircledM/h.svg", + "staticwebassets/emojis/Symbols/ClButton/c.svg", + "staticwebassets/emojis/Symbols/ClButton/f.svg", + "staticwebassets/emojis/Symbols/ClButton/h.svg", + "staticwebassets/emojis/Symbols/ClockwiseVerticalArrows/c.svg", + "staticwebassets/emojis/Symbols/ClockwiseVerticalArrows/f.svg", + "staticwebassets/emojis/Symbols/ClockwiseVerticalArrows/h.svg", + "staticwebassets/emojis/Symbols/CoolButton/c.svg", + "staticwebassets/emojis/Symbols/CoolButton/f.svg", + "staticwebassets/emojis/Symbols/CoolButton/h.svg", + "staticwebassets/emojis/Symbols/Copyright/c.svg", + "staticwebassets/emojis/Symbols/Copyright/f.svg", + "staticwebassets/emojis/Symbols/Copyright/h.svg", + "staticwebassets/emojis/Symbols/CounterclockwiseArrowsButton/c.svg", + "staticwebassets/emojis/Symbols/CounterclockwiseArrowsButton/f.svg", + "staticwebassets/emojis/Symbols/CounterclockwiseArrowsButton/h.svg", + "staticwebassets/emojis/Symbols/CrossMark/c.svg", + "staticwebassets/emojis/Symbols/CrossMark/f.svg", + "staticwebassets/emojis/Symbols/CrossMark/h.svg", + "staticwebassets/emojis/Symbols/CrossMarkButton/c.svg", + "staticwebassets/emojis/Symbols/CrossMarkButton/f.svg", + "staticwebassets/emojis/Symbols/CrossMarkButton/h.svg", + "staticwebassets/emojis/Symbols/CurlyLoop/c.svg", + "staticwebassets/emojis/Symbols/CurlyLoop/f.svg", + "staticwebassets/emojis/Symbols/CurlyLoop/h.svg", + "staticwebassets/emojis/Symbols/CurrencyExchange/c.svg", + "staticwebassets/emojis/Symbols/CurrencyExchange/f.svg", + "staticwebassets/emojis/Symbols/CurrencyExchange/h.svg", + "staticwebassets/emojis/Symbols/Customs/c.svg", + "staticwebassets/emojis/Symbols/Customs/f.svg", + "staticwebassets/emojis/Symbols/Customs/h.svg", + "staticwebassets/emojis/Symbols/DiamondWithADot/c.svg", + "staticwebassets/emojis/Symbols/DiamondWithADot/f.svg", + "staticwebassets/emojis/Symbols/DiamondWithADot/h.svg", + "staticwebassets/emojis/Symbols/DimButton/c.svg", + "staticwebassets/emojis/Symbols/DimButton/f.svg", + "staticwebassets/emojis/Symbols/DimButton/h.svg", + "staticwebassets/emojis/Symbols/Divide/c.svg", + "staticwebassets/emojis/Symbols/Divide/f.svg", + "staticwebassets/emojis/Symbols/Divide/h.svg", + "staticwebassets/emojis/Symbols/DottedSixPointedStar/c.svg", + "staticwebassets/emojis/Symbols/DottedSixPointedStar/f.svg", + "staticwebassets/emojis/Symbols/DottedSixPointedStar/h.svg", + "staticwebassets/emojis/Symbols/DoubleCurlyLoop/c.svg", + "staticwebassets/emojis/Symbols/DoubleCurlyLoop/f.svg", + "staticwebassets/emojis/Symbols/DoubleCurlyLoop/h.svg", + "staticwebassets/emojis/Symbols/DoubleExclamationMark/c.svg", + "staticwebassets/emojis/Symbols/DoubleExclamationMark/f.svg", + "staticwebassets/emojis/Symbols/DoubleExclamationMark/h.svg", + "staticwebassets/emojis/Symbols/DownArrow/c.svg", + "staticwebassets/emojis/Symbols/DownArrow/f.svg", + "staticwebassets/emojis/Symbols/DownArrow/h.svg", + "staticwebassets/emojis/Symbols/DownLeftArrow/c.svg", + "staticwebassets/emojis/Symbols/DownLeftArrow/f.svg", + "staticwebassets/emojis/Symbols/DownLeftArrow/h.svg", + "staticwebassets/emojis/Symbols/DownRightArrow/c.svg", + "staticwebassets/emojis/Symbols/DownRightArrow/f.svg", + "staticwebassets/emojis/Symbols/DownRightArrow/h.svg", + "staticwebassets/emojis/Symbols/DownwardsButton/c.svg", + "staticwebassets/emojis/Symbols/DownwardsButton/f.svg", + "staticwebassets/emojis/Symbols/DownwardsButton/h.svg", + "staticwebassets/emojis/Symbols/EightPointedStar/c.svg", + "staticwebassets/emojis/Symbols/EightPointedStar/f.svg", + "staticwebassets/emojis/Symbols/EightPointedStar/h.svg", + "staticwebassets/emojis/Symbols/EightSpokedAsterisk/c.svg", + "staticwebassets/emojis/Symbols/EightSpokedAsterisk/f.svg", + "staticwebassets/emojis/Symbols/EightSpokedAsterisk/h.svg", + "staticwebassets/emojis/Symbols/EjectButton/c.svg", + "staticwebassets/emojis/Symbols/EjectButton/f.svg", + "staticwebassets/emojis/Symbols/EjectButton/h.svg", + "staticwebassets/emojis/Symbols/EndArrow/c.svg", + "staticwebassets/emojis/Symbols/EndArrow/f.svg", + "staticwebassets/emojis/Symbols/EndArrow/h.svg", + "staticwebassets/emojis/Symbols/ExclamationQuestionMark/c.svg", + "staticwebassets/emojis/Symbols/ExclamationQuestionMark/f.svg", + "staticwebassets/emojis/Symbols/ExclamationQuestionMark/h.svg", + "staticwebassets/emojis/Symbols/FastDownButton/c.svg", + "staticwebassets/emojis/Symbols/FastDownButton/f.svg", + "staticwebassets/emojis/Symbols/FastDownButton/h.svg", + "staticwebassets/emojis/Symbols/FastForwardButton/c.svg", + "staticwebassets/emojis/Symbols/FastForwardButton/f.svg", + "staticwebassets/emojis/Symbols/FastForwardButton/h.svg", + "staticwebassets/emojis/Symbols/FastReverseButton/c.svg", + "staticwebassets/emojis/Symbols/FastReverseButton/f.svg", + "staticwebassets/emojis/Symbols/FastReverseButton/h.svg", + "staticwebassets/emojis/Symbols/FastUpButton/c.svg", + "staticwebassets/emojis/Symbols/FastUpButton/f.svg", + "staticwebassets/emojis/Symbols/FastUpButton/h.svg", + "staticwebassets/emojis/Symbols/FemaleSign/c.svg", + "staticwebassets/emojis/Symbols/FemaleSign/f.svg", + "staticwebassets/emojis/Symbols/FemaleSign/h.svg", + "staticwebassets/emojis/Symbols/FleurDeLis/c.svg", + "staticwebassets/emojis/Symbols/FleurDeLis/f.svg", + "staticwebassets/emojis/Symbols/FleurDeLis/h.svg", + "staticwebassets/emojis/Symbols/FreeButton/c.svg", + "staticwebassets/emojis/Symbols/FreeButton/f.svg", + "staticwebassets/emojis/Symbols/FreeButton/h.svg", + "staticwebassets/emojis/Symbols/Gemini/c.svg", + "staticwebassets/emojis/Symbols/Gemini/f.svg", + "staticwebassets/emojis/Symbols/Gemini/h.svg", + "staticwebassets/emojis/Symbols/GreenCircle/c.svg", + "staticwebassets/emojis/Symbols/GreenCircle/f.svg", + "staticwebassets/emojis/Symbols/GreenCircle/h.svg", + "staticwebassets/emojis/Symbols/GreenSquare/c.svg", + "staticwebassets/emojis/Symbols/GreenSquare/f.svg", + "staticwebassets/emojis/Symbols/GreenSquare/h.svg", + "staticwebassets/emojis/Symbols/HeavyDollarSign/c.svg", + "staticwebassets/emojis/Symbols/HeavyDollarSign/f.svg", + "staticwebassets/emojis/Symbols/HeavyDollarSign/h.svg", + "staticwebassets/emojis/Symbols/HeavyEqualsSign/c.svg", + "staticwebassets/emojis/Symbols/HeavyEqualsSign/f.svg", + "staticwebassets/emojis/Symbols/HeavyEqualsSign/h.svg", + "staticwebassets/emojis/Symbols/HollowRedCircle/c.svg", + "staticwebassets/emojis/Symbols/HollowRedCircle/f.svg", + "staticwebassets/emojis/Symbols/HollowRedCircle/h.svg", + "staticwebassets/emojis/Symbols/IdButton/c.svg", + "staticwebassets/emojis/Symbols/IdButton/f.svg", + "staticwebassets/emojis/Symbols/IdButton/h.svg", + "staticwebassets/emojis/Symbols/Infinity/c.svg", + "staticwebassets/emojis/Symbols/Infinity/f.svg", + "staticwebassets/emojis/Symbols/Infinity/h.svg", + "staticwebassets/emojis/Symbols/Information/c.svg", + "staticwebassets/emojis/Symbols/Information/f.svg", + "staticwebassets/emojis/Symbols/Information/h.svg", + "staticwebassets/emojis/Symbols/InputLatinLetters/c.svg", + "staticwebassets/emojis/Symbols/InputLatinLetters/f.svg", + "staticwebassets/emojis/Symbols/InputLatinLetters/h.svg", + "staticwebassets/emojis/Symbols/InputLatinLowercase/c.svg", + "staticwebassets/emojis/Symbols/InputLatinLowercase/f.svg", + "staticwebassets/emojis/Symbols/InputLatinLowercase/h.svg", + "staticwebassets/emojis/Symbols/InputLatinUppercase/c.svg", + "staticwebassets/emojis/Symbols/InputLatinUppercase/f.svg", + "staticwebassets/emojis/Symbols/InputLatinUppercase/h.svg", + "staticwebassets/emojis/Symbols/InputNumbers/c.svg", + "staticwebassets/emojis/Symbols/InputNumbers/f.svg", + "staticwebassets/emojis/Symbols/InputNumbers/h.svg", + "staticwebassets/emojis/Symbols/InputSymbols/c.svg", + "staticwebassets/emojis/Symbols/InputSymbols/f.svg", + "staticwebassets/emojis/Symbols/InputSymbols/h.svg", + "staticwebassets/emojis/Symbols/JapaneseAcceptableButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseAcceptableButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseAcceptableButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseApplicationButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseApplicationButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseApplicationButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseBargainButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseBargainButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseBargainButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseCongratulationsButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseCongratulationsButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseCongratulationsButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseDiscountButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseDiscountButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseDiscountButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseFreeOfChargeButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseFreeOfChargeButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseFreeOfChargeButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseHereButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseHereButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseHereButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseMonthlyAmountButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseMonthlyAmountButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseMonthlyAmountButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseNoVacancyButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseNoVacancyButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseNoVacancyButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseNotFreeOfChargeButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseNotFreeOfChargeButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseNotFreeOfChargeButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseOpenForBusinessButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseOpenForBusinessButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseOpenForBusinessButton/h.svg", + "staticwebassets/emojis/Symbols/JapanesePassingGradeButton/c.svg", + "staticwebassets/emojis/Symbols/JapanesePassingGradeButton/f.svg", + "staticwebassets/emojis/Symbols/JapanesePassingGradeButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseProhibitedButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseProhibitedButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseProhibitedButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseReservedButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseReservedButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseReservedButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseSecretButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseSecretButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseSecretButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseServiceChargeButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseServiceChargeButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseServiceChargeButton/h.svg", + "staticwebassets/emojis/Symbols/JapaneseSymbolForBeginner/c.svg", + "staticwebassets/emojis/Symbols/JapaneseSymbolForBeginner/f.svg", + "staticwebassets/emojis/Symbols/JapaneseSymbolForBeginner/h.svg", + "staticwebassets/emojis/Symbols/JapaneseVacancyButton/c.svg", + "staticwebassets/emojis/Symbols/JapaneseVacancyButton/f.svg", + "staticwebassets/emojis/Symbols/JapaneseVacancyButton/h.svg", + "staticwebassets/emojis/Symbols/Keycap0/c.svg", + "staticwebassets/emojis/Symbols/Keycap0/f.svg", + "staticwebassets/emojis/Symbols/Keycap0/h.svg", + "staticwebassets/emojis/Symbols/Keycap1/c.svg", + "staticwebassets/emojis/Symbols/Keycap1/f.svg", + "staticwebassets/emojis/Symbols/Keycap1/h.svg", + "staticwebassets/emojis/Symbols/Keycap10/c.svg", + "staticwebassets/emojis/Symbols/Keycap10/f.svg", + "staticwebassets/emojis/Symbols/Keycap10/h.svg", + "staticwebassets/emojis/Symbols/Keycap2/c.svg", + "staticwebassets/emojis/Symbols/Keycap2/f.svg", + "staticwebassets/emojis/Symbols/Keycap2/h.svg", + "staticwebassets/emojis/Symbols/Keycap3/c.svg", + "staticwebassets/emojis/Symbols/Keycap3/f.svg", + "staticwebassets/emojis/Symbols/Keycap3/h.svg", + "staticwebassets/emojis/Symbols/Keycap4/c.svg", + "staticwebassets/emojis/Symbols/Keycap4/f.svg", + "staticwebassets/emojis/Symbols/Keycap4/h.svg", + "staticwebassets/emojis/Symbols/Keycap5/c.svg", + "staticwebassets/emojis/Symbols/Keycap5/f.svg", + "staticwebassets/emojis/Symbols/Keycap5/h.svg", + "staticwebassets/emojis/Symbols/Keycap6/c.svg", + "staticwebassets/emojis/Symbols/Keycap6/f.svg", + "staticwebassets/emojis/Symbols/Keycap6/h.svg", + "staticwebassets/emojis/Symbols/Keycap7/c.svg", + "staticwebassets/emojis/Symbols/Keycap7/f.svg", + "staticwebassets/emojis/Symbols/Keycap7/h.svg", + "staticwebassets/emojis/Symbols/Keycap8/c.svg", + "staticwebassets/emojis/Symbols/Keycap8/f.svg", + "staticwebassets/emojis/Symbols/Keycap8/h.svg", + "staticwebassets/emojis/Symbols/Keycap9/c.svg", + "staticwebassets/emojis/Symbols/Keycap9/f.svg", + "staticwebassets/emojis/Symbols/Keycap9/h.svg", + "staticwebassets/emojis/Symbols/KeycapAsterisk/c.svg", + "staticwebassets/emojis/Symbols/KeycapAsterisk/f.svg", + "staticwebassets/emojis/Symbols/KeycapAsterisk/h.svg", + "staticwebassets/emojis/Symbols/KeycapHashtag/c.svg", + "staticwebassets/emojis/Symbols/KeycapHashtag/f.svg", + "staticwebassets/emojis/Symbols/KeycapHashtag/h.svg", + "staticwebassets/emojis/Symbols/LargeBlueDiamond/c.svg", + "staticwebassets/emojis/Symbols/LargeBlueDiamond/f.svg", + "staticwebassets/emojis/Symbols/LargeBlueDiamond/h.svg", + "staticwebassets/emojis/Symbols/LargeOrangeDiamond/c.svg", + "staticwebassets/emojis/Symbols/LargeOrangeDiamond/f.svg", + "staticwebassets/emojis/Symbols/LargeOrangeDiamond/h.svg", + "staticwebassets/emojis/Symbols/LastTrackButton/c.svg", + "staticwebassets/emojis/Symbols/LastTrackButton/f.svg", + "staticwebassets/emojis/Symbols/LastTrackButton/h.svg", + "staticwebassets/emojis/Symbols/LatinCross/c.svg", + "staticwebassets/emojis/Symbols/LatinCross/f.svg", + "staticwebassets/emojis/Symbols/LatinCross/h.svg", + "staticwebassets/emojis/Symbols/LeftArrow/c.svg", + "staticwebassets/emojis/Symbols/LeftArrow/f.svg", + "staticwebassets/emojis/Symbols/LeftArrow/h.svg", + "staticwebassets/emojis/Symbols/LeftArrowCurvingRight/c.svg", + "staticwebassets/emojis/Symbols/LeftArrowCurvingRight/f.svg", + "staticwebassets/emojis/Symbols/LeftArrowCurvingRight/h.svg", + "staticwebassets/emojis/Symbols/LeftLuggage/c.svg", + "staticwebassets/emojis/Symbols/LeftLuggage/f.svg", + "staticwebassets/emojis/Symbols/LeftLuggage/h.svg", + "staticwebassets/emojis/Symbols/LeftRightArrow/c.svg", + "staticwebassets/emojis/Symbols/LeftRightArrow/f.svg", + "staticwebassets/emojis/Symbols/LeftRightArrow/h.svg", + "staticwebassets/emojis/Symbols/Leo/c.svg", + "staticwebassets/emojis/Symbols/Leo/f.svg", + "staticwebassets/emojis/Symbols/Leo/h.svg", + "staticwebassets/emojis/Symbols/Libra/c.svg", + "staticwebassets/emojis/Symbols/Libra/f.svg", + "staticwebassets/emojis/Symbols/Libra/h.svg", + "staticwebassets/emojis/Symbols/LitterInBinSign/c.svg", + "staticwebassets/emojis/Symbols/LitterInBinSign/f.svg", + "staticwebassets/emojis/Symbols/LitterInBinSign/h.svg", + "staticwebassets/emojis/Symbols/MaleSign/c.svg", + "staticwebassets/emojis/Symbols/MaleSign/f.svg", + "staticwebassets/emojis/Symbols/MaleSign/h.svg", + "staticwebassets/emojis/Symbols/MedicalSymbol/c.svg", + "staticwebassets/emojis/Symbols/MedicalSymbol/f.svg", + "staticwebassets/emojis/Symbols/MedicalSymbol/h.svg", + "staticwebassets/emojis/Symbols/Menorah/c.svg", + "staticwebassets/emojis/Symbols/Menorah/f.svg", + "staticwebassets/emojis/Symbols/Menorah/h.svg", + "staticwebassets/emojis/Symbols/MensRoom/c.svg", + "staticwebassets/emojis/Symbols/MensRoom/f.svg", + "staticwebassets/emojis/Symbols/MensRoom/h.svg", + "staticwebassets/emojis/Symbols/Minus/c.svg", + "staticwebassets/emojis/Symbols/Minus/f.svg", + "staticwebassets/emojis/Symbols/Minus/h.svg", + "staticwebassets/emojis/Symbols/MobilePhoneOff/c.svg", + "staticwebassets/emojis/Symbols/MobilePhoneOff/f.svg", + "staticwebassets/emojis/Symbols/MobilePhoneOff/h.svg", + "staticwebassets/emojis/Symbols/Multiply/c.svg", + "staticwebassets/emojis/Symbols/Multiply/f.svg", + "staticwebassets/emojis/Symbols/Multiply/h.svg", + "staticwebassets/emojis/Symbols/NameBadge/c.svg", + "staticwebassets/emojis/Symbols/NameBadge/f.svg", + "staticwebassets/emojis/Symbols/NameBadge/h.svg", + "staticwebassets/emojis/Symbols/NewButton/c.svg", + "staticwebassets/emojis/Symbols/NewButton/f.svg", + "staticwebassets/emojis/Symbols/NewButton/h.svg", + "staticwebassets/emojis/Symbols/NextTrackButton/c.svg", + "staticwebassets/emojis/Symbols/NextTrackButton/f.svg", + "staticwebassets/emojis/Symbols/NextTrackButton/h.svg", + "staticwebassets/emojis/Symbols/NgButton/c.svg", + "staticwebassets/emojis/Symbols/NgButton/f.svg", + "staticwebassets/emojis/Symbols/NgButton/h.svg", + "staticwebassets/emojis/Symbols/NoBicycles/c.svg", + "staticwebassets/emojis/Symbols/NoBicycles/f.svg", + "staticwebassets/emojis/Symbols/NoBicycles/h.svg", + "staticwebassets/emojis/Symbols/NoEntry/c.svg", + "staticwebassets/emojis/Symbols/NoEntry/f.svg", + "staticwebassets/emojis/Symbols/NoEntry/h.svg", + "staticwebassets/emojis/Symbols/NoLittering/c.svg", + "staticwebassets/emojis/Symbols/NoLittering/f.svg", + "staticwebassets/emojis/Symbols/NoLittering/h.svg", + "staticwebassets/emojis/Symbols/NoMobilePhones/c.svg", + "staticwebassets/emojis/Symbols/NoMobilePhones/f.svg", + "staticwebassets/emojis/Symbols/NoMobilePhones/h.svg", + "staticwebassets/emojis/Symbols/NoOneUnderEighteen/c.svg", + "staticwebassets/emojis/Symbols/NoOneUnderEighteen/f.svg", + "staticwebassets/emojis/Symbols/NoOneUnderEighteen/h.svg", + "staticwebassets/emojis/Symbols/NoPedestrians/c.svg", + "staticwebassets/emojis/Symbols/NoPedestrians/f.svg", + "staticwebassets/emojis/Symbols/NoPedestrians/h.svg", + "staticwebassets/emojis/Symbols/NoSmoking/c.svg", + "staticwebassets/emojis/Symbols/NoSmoking/f.svg", + "staticwebassets/emojis/Symbols/NoSmoking/h.svg", + "staticwebassets/emojis/Symbols/NonPotableWater/c.svg", + "staticwebassets/emojis/Symbols/NonPotableWater/f.svg", + "staticwebassets/emojis/Symbols/NonPotableWater/h.svg", + "staticwebassets/emojis/Symbols/OButtonBloodType/c.svg", + "staticwebassets/emojis/Symbols/OButtonBloodType/f.svg", + "staticwebassets/emojis/Symbols/OButtonBloodType/h.svg", + "staticwebassets/emojis/Symbols/OkButton/c.svg", + "staticwebassets/emojis/Symbols/OkButton/f.svg", + "staticwebassets/emojis/Symbols/OkButton/h.svg", + "staticwebassets/emojis/Symbols/Om/c.svg", + "staticwebassets/emojis/Symbols/Om/f.svg", + "staticwebassets/emojis/Symbols/Om/h.svg", + "staticwebassets/emojis/Symbols/On!Arrow/c.svg", + "staticwebassets/emojis/Symbols/On!Arrow/f.svg", + "staticwebassets/emojis/Symbols/On!Arrow/h.svg", + "staticwebassets/emojis/Symbols/Ophiuchus/c.svg", + "staticwebassets/emojis/Symbols/Ophiuchus/f.svg", + "staticwebassets/emojis/Symbols/Ophiuchus/h.svg", + "staticwebassets/emojis/Symbols/OrangeCircle/c.svg", + "staticwebassets/emojis/Symbols/OrangeCircle/f.svg", + "staticwebassets/emojis/Symbols/OrangeCircle/h.svg", + "staticwebassets/emojis/Symbols/OrangeSquare/c.svg", + "staticwebassets/emojis/Symbols/OrangeSquare/f.svg", + "staticwebassets/emojis/Symbols/OrangeSquare/h.svg", + "staticwebassets/emojis/Symbols/OrthodoxCross/c.svg", + "staticwebassets/emojis/Symbols/OrthodoxCross/f.svg", + "staticwebassets/emojis/Symbols/OrthodoxCross/h.svg", + "staticwebassets/emojis/Symbols/PButton/c.svg", + "staticwebassets/emojis/Symbols/PButton/f.svg", + "staticwebassets/emojis/Symbols/PButton/h.svg", + "staticwebassets/emojis/Symbols/PartAlternationMark/c.svg", + "staticwebassets/emojis/Symbols/PartAlternationMark/f.svg", + "staticwebassets/emojis/Symbols/PartAlternationMark/h.svg", + "staticwebassets/emojis/Symbols/PassportControl/c.svg", + "staticwebassets/emojis/Symbols/PassportControl/f.svg", + "staticwebassets/emojis/Symbols/PassportControl/h.svg", + "staticwebassets/emojis/Symbols/PauseButton/c.svg", + "staticwebassets/emojis/Symbols/PauseButton/f.svg", + "staticwebassets/emojis/Symbols/PauseButton/h.svg", + "staticwebassets/emojis/Symbols/PeaceSymbol/c.svg", + "staticwebassets/emojis/Symbols/PeaceSymbol/f.svg", + "staticwebassets/emojis/Symbols/PeaceSymbol/h.svg", + "staticwebassets/emojis/Symbols/Pisces/c.svg", + "staticwebassets/emojis/Symbols/Pisces/f.svg", + "staticwebassets/emojis/Symbols/Pisces/h.svg", + "staticwebassets/emojis/Symbols/PlaceOfWorship/c.svg", + "staticwebassets/emojis/Symbols/PlaceOfWorship/f.svg", + "staticwebassets/emojis/Symbols/PlaceOfWorship/h.svg", + "staticwebassets/emojis/Symbols/PlayButton/c.svg", + "staticwebassets/emojis/Symbols/PlayButton/f.svg", + "staticwebassets/emojis/Symbols/PlayButton/h.svg", + "staticwebassets/emojis/Symbols/PlayOrPauseButton/c.svg", + "staticwebassets/emojis/Symbols/PlayOrPauseButton/f.svg", + "staticwebassets/emojis/Symbols/PlayOrPauseButton/h.svg", + "staticwebassets/emojis/Symbols/Plus/c.svg", + "staticwebassets/emojis/Symbols/Plus/f.svg", + "staticwebassets/emojis/Symbols/Plus/h.svg", + "staticwebassets/emojis/Symbols/PotableWater/c.svg", + "staticwebassets/emojis/Symbols/PotableWater/f.svg", + "staticwebassets/emojis/Symbols/PotableWater/h.svg", + "staticwebassets/emojis/Symbols/Prohibited/c.svg", + "staticwebassets/emojis/Symbols/Prohibited/f.svg", + "staticwebassets/emojis/Symbols/Prohibited/h.svg", + "staticwebassets/emojis/Symbols/PurpleCircle/c.svg", + "staticwebassets/emojis/Symbols/PurpleCircle/f.svg", + "staticwebassets/emojis/Symbols/PurpleCircle/h.svg", + "staticwebassets/emojis/Symbols/PurpleSquare/c.svg", + "staticwebassets/emojis/Symbols/PurpleSquare/f.svg", + "staticwebassets/emojis/Symbols/PurpleSquare/h.svg", + "staticwebassets/emojis/Symbols/RadioButton/c.svg", + "staticwebassets/emojis/Symbols/RadioButton/f.svg", + "staticwebassets/emojis/Symbols/RadioButton/h.svg", + "staticwebassets/emojis/Symbols/Radioactive/c.svg", + "staticwebassets/emojis/Symbols/Radioactive/f.svg", + "staticwebassets/emojis/Symbols/Radioactive/h.svg", + "staticwebassets/emojis/Symbols/RecordButton/c.svg", + "staticwebassets/emojis/Symbols/RecordButton/f.svg", + "staticwebassets/emojis/Symbols/RecordButton/h.svg", + "staticwebassets/emojis/Symbols/RecyclingSymbol/c.svg", + "staticwebassets/emojis/Symbols/RecyclingSymbol/f.svg", + "staticwebassets/emojis/Symbols/RecyclingSymbol/h.svg", + "staticwebassets/emojis/Symbols/RedCircle/c.svg", + "staticwebassets/emojis/Symbols/RedCircle/f.svg", + "staticwebassets/emojis/Symbols/RedCircle/h.svg", + "staticwebassets/emojis/Symbols/RedExclamationMark/c.svg", + "staticwebassets/emojis/Symbols/RedExclamationMark/f.svg", + "staticwebassets/emojis/Symbols/RedExclamationMark/h.svg", + "staticwebassets/emojis/Symbols/RedQuestionMark/c.svg", + "staticwebassets/emojis/Symbols/RedQuestionMark/f.svg", + "staticwebassets/emojis/Symbols/RedQuestionMark/h.svg", + "staticwebassets/emojis/Symbols/RedSquare/c.svg", + "staticwebassets/emojis/Symbols/RedSquare/f.svg", + "staticwebassets/emojis/Symbols/RedSquare/h.svg", + "staticwebassets/emojis/Symbols/RedTriangle/c.svg", + "staticwebassets/emojis/Symbols/RedTriangle/f.svg", + "staticwebassets/emojis/Symbols/RedTriangle/h.svg", + "staticwebassets/emojis/Symbols/RedTrianglePointedDown/c.svg", + "staticwebassets/emojis/Symbols/RedTrianglePointedDown/f.svg", + "staticwebassets/emojis/Symbols/RedTrianglePointedDown/h.svg", + "staticwebassets/emojis/Symbols/Registered/c.svg", + "staticwebassets/emojis/Symbols/Registered/f.svg", + "staticwebassets/emojis/Symbols/Registered/h.svg", + "staticwebassets/emojis/Symbols/RepeatButton/c.svg", + "staticwebassets/emojis/Symbols/RepeatButton/f.svg", + "staticwebassets/emojis/Symbols/RepeatButton/h.svg", + "staticwebassets/emojis/Symbols/RepeatSingleButton/c.svg", + "staticwebassets/emojis/Symbols/RepeatSingleButton/f.svg", + "staticwebassets/emojis/Symbols/RepeatSingleButton/h.svg", + "staticwebassets/emojis/Symbols/Restroom/c.svg", + "staticwebassets/emojis/Symbols/Restroom/f.svg", + "staticwebassets/emojis/Symbols/Restroom/h.svg", + "staticwebassets/emojis/Symbols/ReverseButton/c.svg", + "staticwebassets/emojis/Symbols/ReverseButton/f.svg", + "staticwebassets/emojis/Symbols/ReverseButton/h.svg", + "staticwebassets/emojis/Symbols/RightArrow/c.svg", + "staticwebassets/emojis/Symbols/RightArrow/f.svg", + "staticwebassets/emojis/Symbols/RightArrow/h.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingDown/c.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingDown/f.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingDown/h.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingLeft/c.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingLeft/f.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingLeft/h.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingUp/c.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingUp/f.svg", + "staticwebassets/emojis/Symbols/RightArrowCurvingUp/h.svg", + "staticwebassets/emojis/Symbols/Sagittarius/c.svg", + "staticwebassets/emojis/Symbols/Sagittarius/f.svg", + "staticwebassets/emojis/Symbols/Sagittarius/h.svg", + "staticwebassets/emojis/Symbols/Scorpio/c.svg", + "staticwebassets/emojis/Symbols/Scorpio/f.svg", + "staticwebassets/emojis/Symbols/Scorpio/h.svg", + "staticwebassets/emojis/Symbols/ShuffleTracksButton/c.svg", + "staticwebassets/emojis/Symbols/ShuffleTracksButton/f.svg", + "staticwebassets/emojis/Symbols/ShuffleTracksButton/h.svg", + "staticwebassets/emojis/Symbols/SmallBlueDiamond/c.svg", + "staticwebassets/emojis/Symbols/SmallBlueDiamond/f.svg", + "staticwebassets/emojis/Symbols/SmallBlueDiamond/h.svg", + "staticwebassets/emojis/Symbols/SmallOrangeDiamond/c.svg", + "staticwebassets/emojis/Symbols/SmallOrangeDiamond/f.svg", + "staticwebassets/emojis/Symbols/SmallOrangeDiamond/h.svg", + "staticwebassets/emojis/Symbols/SoonArrow/c.svg", + "staticwebassets/emojis/Symbols/SoonArrow/f.svg", + "staticwebassets/emojis/Symbols/SoonArrow/h.svg", + "staticwebassets/emojis/Symbols/SosButton/c.svg", + "staticwebassets/emojis/Symbols/SosButton/f.svg", + "staticwebassets/emojis/Symbols/SosButton/h.svg", + "staticwebassets/emojis/Symbols/Sparkle/c.svg", + "staticwebassets/emojis/Symbols/Sparkle/f.svg", + "staticwebassets/emojis/Symbols/Sparkle/h.svg", + "staticwebassets/emojis/Symbols/StarAndCrescent/c.svg", + "staticwebassets/emojis/Symbols/StarAndCrescent/f.svg", + "staticwebassets/emojis/Symbols/StarAndCrescent/h.svg", + "staticwebassets/emojis/Symbols/StarOfDavid/c.svg", + "staticwebassets/emojis/Symbols/StarOfDavid/f.svg", + "staticwebassets/emojis/Symbols/StarOfDavid/h.svg", + "staticwebassets/emojis/Symbols/StopButton/c.svg", + "staticwebassets/emojis/Symbols/StopButton/f.svg", + "staticwebassets/emojis/Symbols/StopButton/h.svg", + "staticwebassets/emojis/Symbols/Taurus/c.svg", + "staticwebassets/emojis/Symbols/Taurus/f.svg", + "staticwebassets/emojis/Symbols/Taurus/h.svg", + "staticwebassets/emojis/Symbols/TopArrow/c.svg", + "staticwebassets/emojis/Symbols/TopArrow/f.svg", + "staticwebassets/emojis/Symbols/TopArrow/h.svg", + "staticwebassets/emojis/Symbols/TradeMark/c.svg", + "staticwebassets/emojis/Symbols/TradeMark/f.svg", + "staticwebassets/emojis/Symbols/TradeMark/h.svg", + "staticwebassets/emojis/Symbols/TransgenderSymbol/c.svg", + "staticwebassets/emojis/Symbols/TransgenderSymbol/f.svg", + "staticwebassets/emojis/Symbols/TransgenderSymbol/h.svg", + "staticwebassets/emojis/Symbols/TridentEmblem/c.svg", + "staticwebassets/emojis/Symbols/TridentEmblem/f.svg", + "staticwebassets/emojis/Symbols/TridentEmblem/h.svg", + "staticwebassets/emojis/Symbols/Up!Button/c.svg", + "staticwebassets/emojis/Symbols/Up!Button/f.svg", + "staticwebassets/emojis/Symbols/Up!Button/h.svg", + "staticwebassets/emojis/Symbols/UpArrow/c.svg", + "staticwebassets/emojis/Symbols/UpArrow/f.svg", + "staticwebassets/emojis/Symbols/UpArrow/h.svg", + "staticwebassets/emojis/Symbols/UpDownArrow/c.svg", + "staticwebassets/emojis/Symbols/UpDownArrow/f.svg", + "staticwebassets/emojis/Symbols/UpDownArrow/h.svg", + "staticwebassets/emojis/Symbols/UpLeftArrow/c.svg", + "staticwebassets/emojis/Symbols/UpLeftArrow/f.svg", + "staticwebassets/emojis/Symbols/UpLeftArrow/h.svg", + "staticwebassets/emojis/Symbols/UpRightArrow/c.svg", + "staticwebassets/emojis/Symbols/UpRightArrow/f.svg", + "staticwebassets/emojis/Symbols/UpRightArrow/h.svg", + "staticwebassets/emojis/Symbols/UpwardsButton/c.svg", + "staticwebassets/emojis/Symbols/UpwardsButton/f.svg", + "staticwebassets/emojis/Symbols/UpwardsButton/h.svg", + "staticwebassets/emojis/Symbols/VibrationMode/c.svg", + "staticwebassets/emojis/Symbols/VibrationMode/f.svg", + "staticwebassets/emojis/Symbols/VibrationMode/h.svg", + "staticwebassets/emojis/Symbols/Virgo/c.svg", + "staticwebassets/emojis/Symbols/Virgo/f.svg", + "staticwebassets/emojis/Symbols/Virgo/h.svg", + "staticwebassets/emojis/Symbols/VsButton/c.svg", + "staticwebassets/emojis/Symbols/VsButton/f.svg", + "staticwebassets/emojis/Symbols/VsButton/h.svg", + "staticwebassets/emojis/Symbols/Warning/c.svg", + "staticwebassets/emojis/Symbols/Warning/f.svg", + "staticwebassets/emojis/Symbols/Warning/h.svg", + "staticwebassets/emojis/Symbols/WaterCloset/c.svg", + "staticwebassets/emojis/Symbols/WaterCloset/f.svg", + "staticwebassets/emojis/Symbols/WaterCloset/h.svg", + "staticwebassets/emojis/Symbols/WavyDash/c.svg", + "staticwebassets/emojis/Symbols/WavyDash/f.svg", + "staticwebassets/emojis/Symbols/WavyDash/h.svg", + "staticwebassets/emojis/Symbols/WheelOfDharma/c.svg", + "staticwebassets/emojis/Symbols/WheelOfDharma/f.svg", + "staticwebassets/emojis/Symbols/WheelOfDharma/h.svg", + "staticwebassets/emojis/Symbols/WheelchairSymbol/c.svg", + "staticwebassets/emojis/Symbols/WheelchairSymbol/f.svg", + "staticwebassets/emojis/Symbols/WheelchairSymbol/h.svg", + "staticwebassets/emojis/Symbols/WhiteCircle/c.svg", + "staticwebassets/emojis/Symbols/WhiteCircle/f.svg", + "staticwebassets/emojis/Symbols/WhiteCircle/h.svg", + "staticwebassets/emojis/Symbols/WhiteExclamationMark/c.svg", + "staticwebassets/emojis/Symbols/WhiteExclamationMark/f.svg", + "staticwebassets/emojis/Symbols/WhiteExclamationMark/h.svg", + "staticwebassets/emojis/Symbols/WhiteLargeSquare/c.svg", + "staticwebassets/emojis/Symbols/WhiteLargeSquare/f.svg", + "staticwebassets/emojis/Symbols/WhiteLargeSquare/h.svg", + "staticwebassets/emojis/Symbols/WhiteMediumSmallSquare/c.svg", + "staticwebassets/emojis/Symbols/WhiteMediumSmallSquare/f.svg", + "staticwebassets/emojis/Symbols/WhiteMediumSmallSquare/h.svg", + "staticwebassets/emojis/Symbols/WhiteMediumSquare/c.svg", + "staticwebassets/emojis/Symbols/WhiteMediumSquare/f.svg", + "staticwebassets/emojis/Symbols/WhiteMediumSquare/h.svg", + "staticwebassets/emojis/Symbols/WhiteQuestionMark/c.svg", + "staticwebassets/emojis/Symbols/WhiteQuestionMark/f.svg", + "staticwebassets/emojis/Symbols/WhiteQuestionMark/h.svg", + "staticwebassets/emojis/Symbols/WhiteSmallSquare/c.svg", + "staticwebassets/emojis/Symbols/WhiteSmallSquare/f.svg", + "staticwebassets/emojis/Symbols/WhiteSmallSquare/h.svg", + "staticwebassets/emojis/Symbols/WhiteSquareButton/c.svg", + "staticwebassets/emojis/Symbols/WhiteSquareButton/f.svg", + "staticwebassets/emojis/Symbols/WhiteSquareButton/h.svg", + "staticwebassets/emojis/Symbols/WomensRoom/c.svg", + "staticwebassets/emojis/Symbols/WomensRoom/f.svg", + "staticwebassets/emojis/Symbols/WomensRoom/h.svg", + "staticwebassets/emojis/Symbols/YellowCircle/c.svg", + "staticwebassets/emojis/Symbols/YellowCircle/f.svg", + "staticwebassets/emojis/Symbols/YellowCircle/h.svg", + "staticwebassets/emojis/Symbols/YellowSquare/c.svg", + "staticwebassets/emojis/Symbols/YellowSquare/f.svg", + "staticwebassets/emojis/Symbols/YellowSquare/h.svg", + "staticwebassets/emojis/Symbols/YinYang/c.svg", + "staticwebassets/emojis/Symbols/YinYang/f.svg", + "staticwebassets/emojis/Symbols/YinYang/h.svg", + "staticwebassets/emojis/Travel_Places/AerialTramway/c.svg", + "staticwebassets/emojis/Travel_Places/AerialTramway/f.svg", + "staticwebassets/emojis/Travel_Places/AerialTramway/h.svg", + "staticwebassets/emojis/Travel_Places/Airplane/c.svg", + "staticwebassets/emojis/Travel_Places/Airplane/f.svg", + "staticwebassets/emojis/Travel_Places/Airplane/h.svg", + "staticwebassets/emojis/Travel_Places/AirplaneArrival/c.svg", + "staticwebassets/emojis/Travel_Places/AirplaneArrival/f.svg", + "staticwebassets/emojis/Travel_Places/AirplaneArrival/h.svg", + "staticwebassets/emojis/Travel_Places/AirplaneDeparture/c.svg", + "staticwebassets/emojis/Travel_Places/AirplaneDeparture/f.svg", + "staticwebassets/emojis/Travel_Places/AirplaneDeparture/h.svg", + "staticwebassets/emojis/Travel_Places/AlarmClock/c.svg", + "staticwebassets/emojis/Travel_Places/AlarmClock/f.svg", + "staticwebassets/emojis/Travel_Places/AlarmClock/h.svg", + "staticwebassets/emojis/Travel_Places/Ambulance/c.svg", + "staticwebassets/emojis/Travel_Places/Ambulance/f.svg", + "staticwebassets/emojis/Travel_Places/Ambulance/h.svg", + "staticwebassets/emojis/Travel_Places/Anchor/c.svg", + "staticwebassets/emojis/Travel_Places/Anchor/f.svg", + "staticwebassets/emojis/Travel_Places/Anchor/h.svg", + "staticwebassets/emojis/Travel_Places/ArticulatedLorry/c.svg", + "staticwebassets/emojis/Travel_Places/ArticulatedLorry/f.svg", + "staticwebassets/emojis/Travel_Places/ArticulatedLorry/h.svg", + "staticwebassets/emojis/Travel_Places/AutoRickshaw/c.svg", + "staticwebassets/emojis/Travel_Places/AutoRickshaw/f.svg", + "staticwebassets/emojis/Travel_Places/AutoRickshaw/h.svg", + "staticwebassets/emojis/Travel_Places/Automobile/c.svg", + "staticwebassets/emojis/Travel_Places/Automobile/f.svg", + "staticwebassets/emojis/Travel_Places/Automobile/h.svg", + "staticwebassets/emojis/Travel_Places/Bank/c.svg", + "staticwebassets/emojis/Travel_Places/Bank/f.svg", + "staticwebassets/emojis/Travel_Places/Bank/h.svg", + "staticwebassets/emojis/Travel_Places/BarberPole/c.svg", + "staticwebassets/emojis/Travel_Places/BarberPole/f.svg", + "staticwebassets/emojis/Travel_Places/BarberPole/h.svg", + "staticwebassets/emojis/Travel_Places/BeachWithUmbrella/c.svg", + "staticwebassets/emojis/Travel_Places/BeachWithUmbrella/f.svg", + "staticwebassets/emojis/Travel_Places/BeachWithUmbrella/h.svg", + "staticwebassets/emojis/Travel_Places/BellhopBell/c.svg", + "staticwebassets/emojis/Travel_Places/BellhopBell/f.svg", + "staticwebassets/emojis/Travel_Places/BellhopBell/h.svg", + "staticwebassets/emojis/Travel_Places/Bicycle/c.svg", + "staticwebassets/emojis/Travel_Places/Bicycle/f.svg", + "staticwebassets/emojis/Travel_Places/Bicycle/h.svg", + "staticwebassets/emojis/Travel_Places/Brick/c.svg", + "staticwebassets/emojis/Travel_Places/Brick/f.svg", + "staticwebassets/emojis/Travel_Places/Brick/h.svg", + "staticwebassets/emojis/Travel_Places/BridgeAtNight/c.svg", + "staticwebassets/emojis/Travel_Places/BridgeAtNight/f.svg", + "staticwebassets/emojis/Travel_Places/BridgeAtNight/h.svg", + "staticwebassets/emojis/Travel_Places/BuildingConstruction/c.svg", + "staticwebassets/emojis/Travel_Places/BuildingConstruction/f.svg", + "staticwebassets/emojis/Travel_Places/BuildingConstruction/h.svg", + "staticwebassets/emojis/Travel_Places/BulletTrain/c.svg", + "staticwebassets/emojis/Travel_Places/BulletTrain/f.svg", + "staticwebassets/emojis/Travel_Places/BulletTrain/h.svg", + "staticwebassets/emojis/Travel_Places/Bus/c.svg", + "staticwebassets/emojis/Travel_Places/Bus/f.svg", + "staticwebassets/emojis/Travel_Places/Bus/h.svg", + "staticwebassets/emojis/Travel_Places/BusStop/c.svg", + "staticwebassets/emojis/Travel_Places/BusStop/f.svg", + "staticwebassets/emojis/Travel_Places/BusStop/h.svg", + "staticwebassets/emojis/Travel_Places/Camping/c.svg", + "staticwebassets/emojis/Travel_Places/Camping/f.svg", + "staticwebassets/emojis/Travel_Places/Camping/h.svg", + "staticwebassets/emojis/Travel_Places/Canoe/c.svg", + "staticwebassets/emojis/Travel_Places/Canoe/f.svg", + "staticwebassets/emojis/Travel_Places/Canoe/h.svg", + "staticwebassets/emojis/Travel_Places/CarouselHorse/c.svg", + "staticwebassets/emojis/Travel_Places/CarouselHorse/f.svg", + "staticwebassets/emojis/Travel_Places/CarouselHorse/h.svg", + "staticwebassets/emojis/Travel_Places/Castle/c.svg", + "staticwebassets/emojis/Travel_Places/Castle/f.svg", + "staticwebassets/emojis/Travel_Places/Castle/h.svg", + "staticwebassets/emojis/Travel_Places/Church/c.svg", + "staticwebassets/emojis/Travel_Places/Church/f.svg", + "staticwebassets/emojis/Travel_Places/Church/h.svg", + "staticwebassets/emojis/Travel_Places/CircusTent/c.svg", + "staticwebassets/emojis/Travel_Places/CircusTent/f.svg", + "staticwebassets/emojis/Travel_Places/CircusTent/h.svg", + "staticwebassets/emojis/Travel_Places/Cityscape/c.svg", + "staticwebassets/emojis/Travel_Places/Cityscape/f.svg", + "staticwebassets/emojis/Travel_Places/Cityscape/h.svg", + "staticwebassets/emojis/Travel_Places/CityscapeAtDusk/c.svg", + "staticwebassets/emojis/Travel_Places/CityscapeAtDusk/f.svg", + "staticwebassets/emojis/Travel_Places/CityscapeAtDusk/h.svg", + "staticwebassets/emojis/Travel_Places/ClassicalBuilding/c.svg", + "staticwebassets/emojis/Travel_Places/ClassicalBuilding/f.svg", + "staticwebassets/emojis/Travel_Places/ClassicalBuilding/h.svg", + "staticwebassets/emojis/Travel_Places/ClosedUmbrella/c.svg", + "staticwebassets/emojis/Travel_Places/ClosedUmbrella/f.svg", + "staticwebassets/emojis/Travel_Places/ClosedUmbrella/h.svg", + "staticwebassets/emojis/Travel_Places/Cloud/c.svg", + "staticwebassets/emojis/Travel_Places/Cloud/f.svg", + "staticwebassets/emojis/Travel_Places/Cloud/h.svg", + "staticwebassets/emojis/Travel_Places/CloudWithLightning/c.svg", + "staticwebassets/emojis/Travel_Places/CloudWithLightning/f.svg", + "staticwebassets/emojis/Travel_Places/CloudWithLightning/h.svg", + "staticwebassets/emojis/Travel_Places/CloudWithLightningAndRain/c.svg", + "staticwebassets/emojis/Travel_Places/CloudWithLightningAndRain/f.svg", + "staticwebassets/emojis/Travel_Places/CloudWithLightningAndRain/h.svg", + "staticwebassets/emojis/Travel_Places/CloudWithRain/c.svg", + "staticwebassets/emojis/Travel_Places/CloudWithRain/f.svg", + "staticwebassets/emojis/Travel_Places/CloudWithRain/h.svg", + "staticwebassets/emojis/Travel_Places/CloudWithSnow/c.svg", + "staticwebassets/emojis/Travel_Places/CloudWithSnow/f.svg", + "staticwebassets/emojis/Travel_Places/CloudWithSnow/h.svg", + "staticwebassets/emojis/Travel_Places/Comet/c.svg", + "staticwebassets/emojis/Travel_Places/Comet/f.svg", + "staticwebassets/emojis/Travel_Places/Comet/h.svg", + "staticwebassets/emojis/Travel_Places/Compass/c.svg", + "staticwebassets/emojis/Travel_Places/Compass/f.svg", + "staticwebassets/emojis/Travel_Places/Compass/h.svg", + "staticwebassets/emojis/Travel_Places/Construction/c.svg", + "staticwebassets/emojis/Travel_Places/Construction/f.svg", + "staticwebassets/emojis/Travel_Places/Construction/h.svg", + "staticwebassets/emojis/Travel_Places/ConvenienceStore/c.svg", + "staticwebassets/emojis/Travel_Places/ConvenienceStore/f.svg", + "staticwebassets/emojis/Travel_Places/ConvenienceStore/h.svg", + "staticwebassets/emojis/Travel_Places/CrescentMoon/c.svg", + "staticwebassets/emojis/Travel_Places/CrescentMoon/f.svg", + "staticwebassets/emojis/Travel_Places/CrescentMoon/h.svg", + "staticwebassets/emojis/Travel_Places/Cyclone/c.svg", + "staticwebassets/emojis/Travel_Places/Cyclone/f.svg", + "staticwebassets/emojis/Travel_Places/Cyclone/h.svg", + "staticwebassets/emojis/Travel_Places/DeliveryTruck/c.svg", + "staticwebassets/emojis/Travel_Places/DeliveryTruck/f.svg", + "staticwebassets/emojis/Travel_Places/DeliveryTruck/h.svg", + "staticwebassets/emojis/Travel_Places/DepartmentStore/c.svg", + "staticwebassets/emojis/Travel_Places/DepartmentStore/f.svg", + "staticwebassets/emojis/Travel_Places/DepartmentStore/h.svg", + "staticwebassets/emojis/Travel_Places/DerelictHouse/c.svg", + "staticwebassets/emojis/Travel_Places/DerelictHouse/f.svg", + "staticwebassets/emojis/Travel_Places/DerelictHouse/h.svg", + "staticwebassets/emojis/Travel_Places/Desert/c.svg", + "staticwebassets/emojis/Travel_Places/Desert/f.svg", + "staticwebassets/emojis/Travel_Places/Desert/h.svg", + "staticwebassets/emojis/Travel_Places/DesertIsland/c.svg", + "staticwebassets/emojis/Travel_Places/DesertIsland/f.svg", + "staticwebassets/emojis/Travel_Places/DesertIsland/h.svg", + "staticwebassets/emojis/Travel_Places/Droplet/c.svg", + "staticwebassets/emojis/Travel_Places/Droplet/f.svg", + "staticwebassets/emojis/Travel_Places/Droplet/h.svg", + "staticwebassets/emojis/Travel_Places/EightOclock/c.svg", + "staticwebassets/emojis/Travel_Places/EightOclock/f.svg", + "staticwebassets/emojis/Travel_Places/EightOclock/h.svg", + "staticwebassets/emojis/Travel_Places/EightThirty/c.svg", + "staticwebassets/emojis/Travel_Places/EightThirty/f.svg", + "staticwebassets/emojis/Travel_Places/EightThirty/h.svg", + "staticwebassets/emojis/Travel_Places/ElevenOclock/c.svg", + "staticwebassets/emojis/Travel_Places/ElevenOclock/f.svg", + "staticwebassets/emojis/Travel_Places/ElevenOclock/h.svg", + "staticwebassets/emojis/Travel_Places/ElevenThirty/c.svg", + "staticwebassets/emojis/Travel_Places/ElevenThirty/f.svg", + "staticwebassets/emojis/Travel_Places/ElevenThirty/h.svg", + "staticwebassets/emojis/Travel_Places/Factory/c.svg", + "staticwebassets/emojis/Travel_Places/Factory/f.svg", + "staticwebassets/emojis/Travel_Places/Factory/h.svg", + "staticwebassets/emojis/Travel_Places/FerrisWheel/c.svg", + "staticwebassets/emojis/Travel_Places/FerrisWheel/f.svg", + "staticwebassets/emojis/Travel_Places/FerrisWheel/h.svg", + "staticwebassets/emojis/Travel_Places/Ferry/c.svg", + "staticwebassets/emojis/Travel_Places/Ferry/f.svg", + "staticwebassets/emojis/Travel_Places/Ferry/h.svg", + "staticwebassets/emojis/Travel_Places/Fire/c.svg", + "staticwebassets/emojis/Travel_Places/Fire/f.svg", + "staticwebassets/emojis/Travel_Places/Fire/h.svg", + "staticwebassets/emojis/Travel_Places/FireEngine/c.svg", + "staticwebassets/emojis/Travel_Places/FireEngine/f.svg", + "staticwebassets/emojis/Travel_Places/FireEngine/h.svg", + "staticwebassets/emojis/Travel_Places/FirstQuarterMoon/c.svg", + "staticwebassets/emojis/Travel_Places/FirstQuarterMoon/f.svg", + "staticwebassets/emojis/Travel_Places/FirstQuarterMoon/h.svg", + "staticwebassets/emojis/Travel_Places/FirstQuarterMoonFace/c.svg", + "staticwebassets/emojis/Travel_Places/FirstQuarterMoonFace/f.svg", + "staticwebassets/emojis/Travel_Places/FirstQuarterMoonFace/h.svg", + "staticwebassets/emojis/Travel_Places/FiveOclock/c.svg", + "staticwebassets/emojis/Travel_Places/FiveOclock/f.svg", + "staticwebassets/emojis/Travel_Places/FiveOclock/h.svg", + "staticwebassets/emojis/Travel_Places/FiveThirty/c.svg", + "staticwebassets/emojis/Travel_Places/FiveThirty/f.svg", + "staticwebassets/emojis/Travel_Places/FiveThirty/h.svg", + "staticwebassets/emojis/Travel_Places/FlyingSaucer/c.svg", + "staticwebassets/emojis/Travel_Places/FlyingSaucer/f.svg", + "staticwebassets/emojis/Travel_Places/FlyingSaucer/h.svg", + "staticwebassets/emojis/Travel_Places/Fog/c.svg", + "staticwebassets/emojis/Travel_Places/Fog/f.svg", + "staticwebassets/emojis/Travel_Places/Fog/h.svg", + "staticwebassets/emojis/Travel_Places/Foggy/c.svg", + "staticwebassets/emojis/Travel_Places/Foggy/f.svg", + "staticwebassets/emojis/Travel_Places/Foggy/h.svg", + "staticwebassets/emojis/Travel_Places/Fountain/c.svg", + "staticwebassets/emojis/Travel_Places/Fountain/f.svg", + "staticwebassets/emojis/Travel_Places/Fountain/h.svg", + "staticwebassets/emojis/Travel_Places/FourOclock/c.svg", + "staticwebassets/emojis/Travel_Places/FourOclock/f.svg", + "staticwebassets/emojis/Travel_Places/FourOclock/h.svg", + "staticwebassets/emojis/Travel_Places/FourThirty/c.svg", + "staticwebassets/emojis/Travel_Places/FourThirty/f.svg", + "staticwebassets/emojis/Travel_Places/FourThirty/h.svg", + "staticwebassets/emojis/Travel_Places/FuelPump/c.svg", + "staticwebassets/emojis/Travel_Places/FuelPump/f.svg", + "staticwebassets/emojis/Travel_Places/FuelPump/h.svg", + "staticwebassets/emojis/Travel_Places/FullMoon/c.svg", + "staticwebassets/emojis/Travel_Places/FullMoon/f.svg", + "staticwebassets/emojis/Travel_Places/FullMoon/h.svg", + "staticwebassets/emojis/Travel_Places/FullMoonFace/c.svg", + "staticwebassets/emojis/Travel_Places/FullMoonFace/f.svg", + "staticwebassets/emojis/Travel_Places/FullMoonFace/h.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingAmericas/c.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingAmericas/f.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingAmericas/h.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingAsiaAustralia/c.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingAsiaAustralia/f.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingAsiaAustralia/h.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingEuropeAfrica/c.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingEuropeAfrica/f.svg", + "staticwebassets/emojis/Travel_Places/GlobeShowingEuropeAfrica/h.svg", + "staticwebassets/emojis/Travel_Places/GlobeWithMeridians/c.svg", + "staticwebassets/emojis/Travel_Places/GlobeWithMeridians/f.svg", + "staticwebassets/emojis/Travel_Places/GlobeWithMeridians/h.svg", + "staticwebassets/emojis/Travel_Places/GlowingStar/c.svg", + "staticwebassets/emojis/Travel_Places/GlowingStar/f.svg", + "staticwebassets/emojis/Travel_Places/GlowingStar/h.svg", + "staticwebassets/emojis/Travel_Places/Helicopter/c.svg", + "staticwebassets/emojis/Travel_Places/Helicopter/f.svg", + "staticwebassets/emojis/Travel_Places/Helicopter/h.svg", + "staticwebassets/emojis/Travel_Places/HighSpeedTrain/c.svg", + "staticwebassets/emojis/Travel_Places/HighSpeedTrain/f.svg", + "staticwebassets/emojis/Travel_Places/HighSpeedTrain/h.svg", + "staticwebassets/emojis/Travel_Places/HighVoltage/c.svg", + "staticwebassets/emojis/Travel_Places/HighVoltage/f.svg", + "staticwebassets/emojis/Travel_Places/HighVoltage/h.svg", + "staticwebassets/emojis/Travel_Places/HinduTemple/c.svg", + "staticwebassets/emojis/Travel_Places/HinduTemple/f.svg", + "staticwebassets/emojis/Travel_Places/HinduTemple/h.svg", + "staticwebassets/emojis/Travel_Places/HorizontalTrafficLight/c.svg", + "staticwebassets/emojis/Travel_Places/HorizontalTrafficLight/f.svg", + "staticwebassets/emojis/Travel_Places/HorizontalTrafficLight/h.svg", + "staticwebassets/emojis/Travel_Places/Hospital/c.svg", + "staticwebassets/emojis/Travel_Places/Hospital/f.svg", + "staticwebassets/emojis/Travel_Places/Hospital/h.svg", + "staticwebassets/emojis/Travel_Places/HotSprings/c.svg", + "staticwebassets/emojis/Travel_Places/HotSprings/f.svg", + "staticwebassets/emojis/Travel_Places/HotSprings/h.svg", + "staticwebassets/emojis/Travel_Places/Hotel/c.svg", + "staticwebassets/emojis/Travel_Places/Hotel/f.svg", + "staticwebassets/emojis/Travel_Places/Hotel/h.svg", + "staticwebassets/emojis/Travel_Places/HourglassDone/c.svg", + "staticwebassets/emojis/Travel_Places/HourglassDone/f.svg", + "staticwebassets/emojis/Travel_Places/HourglassDone/h.svg", + "staticwebassets/emojis/Travel_Places/HourglassNotDone/c.svg", + "staticwebassets/emojis/Travel_Places/HourglassNotDone/f.svg", + "staticwebassets/emojis/Travel_Places/HourglassNotDone/h.svg", + "staticwebassets/emojis/Travel_Places/House/c.svg", + "staticwebassets/emojis/Travel_Places/House/f.svg", + "staticwebassets/emojis/Travel_Places/House/h.svg", + "staticwebassets/emojis/Travel_Places/HouseWithGarden/c.svg", + "staticwebassets/emojis/Travel_Places/HouseWithGarden/f.svg", + "staticwebassets/emojis/Travel_Places/HouseWithGarden/h.svg", + "staticwebassets/emojis/Travel_Places/Houses/c.svg", + "staticwebassets/emojis/Travel_Places/Houses/f.svg", + "staticwebassets/emojis/Travel_Places/Houses/h.svg", + "staticwebassets/emojis/Travel_Places/Hut/c.svg", + "staticwebassets/emojis/Travel_Places/Hut/f.svg", + "staticwebassets/emojis/Travel_Places/Hut/h.svg", + "staticwebassets/emojis/Travel_Places/JapaneseCastle/c.svg", + "staticwebassets/emojis/Travel_Places/JapaneseCastle/f.svg", + "staticwebassets/emojis/Travel_Places/JapaneseCastle/h.svg", + "staticwebassets/emojis/Travel_Places/JapanesePostOffice/c.svg", + "staticwebassets/emojis/Travel_Places/JapanesePostOffice/f.svg", + "staticwebassets/emojis/Travel_Places/JapanesePostOffice/h.svg", + "staticwebassets/emojis/Travel_Places/Kaaba/c.svg", + "staticwebassets/emojis/Travel_Places/Kaaba/f.svg", + "staticwebassets/emojis/Travel_Places/Kaaba/h.svg", + "staticwebassets/emojis/Travel_Places/KickScooter/c.svg", + "staticwebassets/emojis/Travel_Places/KickScooter/f.svg", + "staticwebassets/emojis/Travel_Places/KickScooter/h.svg", + "staticwebassets/emojis/Travel_Places/LastQuarterMoon/c.svg", + "staticwebassets/emojis/Travel_Places/LastQuarterMoon/f.svg", + "staticwebassets/emojis/Travel_Places/LastQuarterMoon/h.svg", + "staticwebassets/emojis/Travel_Places/LastQuarterMoonFace/c.svg", + "staticwebassets/emojis/Travel_Places/LastQuarterMoonFace/f.svg", + "staticwebassets/emojis/Travel_Places/LastQuarterMoonFace/h.svg", + "staticwebassets/emojis/Travel_Places/LightRail/c.svg", + "staticwebassets/emojis/Travel_Places/LightRail/f.svg", + "staticwebassets/emojis/Travel_Places/LightRail/h.svg", + "staticwebassets/emojis/Travel_Places/Locomotive/c.svg", + "staticwebassets/emojis/Travel_Places/Locomotive/f.svg", + "staticwebassets/emojis/Travel_Places/Locomotive/h.svg", + "staticwebassets/emojis/Travel_Places/LoveHotel/c.svg", + "staticwebassets/emojis/Travel_Places/LoveHotel/f.svg", + "staticwebassets/emojis/Travel_Places/LoveHotel/h.svg", + "staticwebassets/emojis/Travel_Places/Luggage/c.svg", + "staticwebassets/emojis/Travel_Places/Luggage/f.svg", + "staticwebassets/emojis/Travel_Places/Luggage/h.svg", + "staticwebassets/emojis/Travel_Places/MantelpieceClock/c.svg", + "staticwebassets/emojis/Travel_Places/MantelpieceClock/f.svg", + "staticwebassets/emojis/Travel_Places/MantelpieceClock/h.svg", + "staticwebassets/emojis/Travel_Places/ManualWheelchair/c.svg", + "staticwebassets/emojis/Travel_Places/ManualWheelchair/f.svg", + "staticwebassets/emojis/Travel_Places/ManualWheelchair/h.svg", + "staticwebassets/emojis/Travel_Places/MapOfJapan/c.svg", + "staticwebassets/emojis/Travel_Places/MapOfJapan/f.svg", + "staticwebassets/emojis/Travel_Places/MapOfJapan/h.svg", + "staticwebassets/emojis/Travel_Places/Metro/c.svg", + "staticwebassets/emojis/Travel_Places/Metro/f.svg", + "staticwebassets/emojis/Travel_Places/Metro/h.svg", + "staticwebassets/emojis/Travel_Places/MilkyWay/c.svg", + "staticwebassets/emojis/Travel_Places/MilkyWay/f.svg", + "staticwebassets/emojis/Travel_Places/MilkyWay/h.svg", + "staticwebassets/emojis/Travel_Places/Minibus/c.svg", + "staticwebassets/emojis/Travel_Places/Minibus/f.svg", + "staticwebassets/emojis/Travel_Places/Minibus/h.svg", + "staticwebassets/emojis/Travel_Places/Monorail/c.svg", + "staticwebassets/emojis/Travel_Places/Monorail/f.svg", + "staticwebassets/emojis/Travel_Places/Monorail/h.svg", + "staticwebassets/emojis/Travel_Places/Mosque/c.svg", + "staticwebassets/emojis/Travel_Places/Mosque/f.svg", + "staticwebassets/emojis/Travel_Places/Mosque/h.svg", + "staticwebassets/emojis/Travel_Places/MotorBoat/c.svg", + "staticwebassets/emojis/Travel_Places/MotorBoat/f.svg", + "staticwebassets/emojis/Travel_Places/MotorBoat/h.svg", + "staticwebassets/emojis/Travel_Places/MotorScooter/c.svg", + "staticwebassets/emojis/Travel_Places/MotorScooter/f.svg", + "staticwebassets/emojis/Travel_Places/MotorScooter/h.svg", + "staticwebassets/emojis/Travel_Places/Motorcycle/c.svg", + "staticwebassets/emojis/Travel_Places/Motorcycle/f.svg", + "staticwebassets/emojis/Travel_Places/Motorcycle/h.svg", + "staticwebassets/emojis/Travel_Places/MotorizedWheelchair/c.svg", + "staticwebassets/emojis/Travel_Places/MotorizedWheelchair/f.svg", + "staticwebassets/emojis/Travel_Places/MotorizedWheelchair/h.svg", + "staticwebassets/emojis/Travel_Places/Motorway/c.svg", + "staticwebassets/emojis/Travel_Places/Motorway/f.svg", + "staticwebassets/emojis/Travel_Places/Motorway/h.svg", + "staticwebassets/emojis/Travel_Places/MountFuji/c.svg", + "staticwebassets/emojis/Travel_Places/MountFuji/f.svg", + "staticwebassets/emojis/Travel_Places/MountFuji/h.svg", + "staticwebassets/emojis/Travel_Places/Mountain/c.svg", + "staticwebassets/emojis/Travel_Places/Mountain/f.svg", + "staticwebassets/emojis/Travel_Places/Mountain/h.svg", + "staticwebassets/emojis/Travel_Places/MountainCableway/c.svg", + "staticwebassets/emojis/Travel_Places/MountainCableway/f.svg", + "staticwebassets/emojis/Travel_Places/MountainCableway/h.svg", + "staticwebassets/emojis/Travel_Places/MountainRailway/c.svg", + "staticwebassets/emojis/Travel_Places/MountainRailway/f.svg", + "staticwebassets/emojis/Travel_Places/MountainRailway/h.svg", + "staticwebassets/emojis/Travel_Places/NationalPark/c.svg", + "staticwebassets/emojis/Travel_Places/NationalPark/f.svg", + "staticwebassets/emojis/Travel_Places/NationalPark/h.svg", + "staticwebassets/emojis/Travel_Places/NewMoon/c.svg", + "staticwebassets/emojis/Travel_Places/NewMoon/f.svg", + "staticwebassets/emojis/Travel_Places/NewMoon/h.svg", + "staticwebassets/emojis/Travel_Places/NewMoonFace/c.svg", + "staticwebassets/emojis/Travel_Places/NewMoonFace/f.svg", + "staticwebassets/emojis/Travel_Places/NewMoonFace/h.svg", + "staticwebassets/emojis/Travel_Places/NightWithStars/c.svg", + "staticwebassets/emojis/Travel_Places/NightWithStars/f.svg", + "staticwebassets/emojis/Travel_Places/NightWithStars/h.svg", + "staticwebassets/emojis/Travel_Places/NineOclock/c.svg", + "staticwebassets/emojis/Travel_Places/NineOclock/f.svg", + "staticwebassets/emojis/Travel_Places/NineOclock/h.svg", + "staticwebassets/emojis/Travel_Places/NineThirty/c.svg", + "staticwebassets/emojis/Travel_Places/NineThirty/f.svg", + "staticwebassets/emojis/Travel_Places/NineThirty/h.svg", + "staticwebassets/emojis/Travel_Places/OfficeBuilding/c.svg", + "staticwebassets/emojis/Travel_Places/OfficeBuilding/f.svg", + "staticwebassets/emojis/Travel_Places/OfficeBuilding/h.svg", + "staticwebassets/emojis/Travel_Places/OilDrum/c.svg", + "staticwebassets/emojis/Travel_Places/OilDrum/f.svg", + "staticwebassets/emojis/Travel_Places/OilDrum/h.svg", + "staticwebassets/emojis/Travel_Places/OncomingAutomobile/c.svg", + "staticwebassets/emojis/Travel_Places/OncomingAutomobile/f.svg", + "staticwebassets/emojis/Travel_Places/OncomingAutomobile/h.svg", + "staticwebassets/emojis/Travel_Places/OncomingBus/c.svg", + "staticwebassets/emojis/Travel_Places/OncomingBus/f.svg", + "staticwebassets/emojis/Travel_Places/OncomingBus/h.svg", + "staticwebassets/emojis/Travel_Places/OncomingPoliceCar/c.svg", + "staticwebassets/emojis/Travel_Places/OncomingPoliceCar/f.svg", + "staticwebassets/emojis/Travel_Places/OncomingPoliceCar/h.svg", + "staticwebassets/emojis/Travel_Places/OncomingTaxi/c.svg", + "staticwebassets/emojis/Travel_Places/OncomingTaxi/f.svg", + "staticwebassets/emojis/Travel_Places/OncomingTaxi/h.svg", + "staticwebassets/emojis/Travel_Places/OneOclock/c.svg", + "staticwebassets/emojis/Travel_Places/OneOclock/f.svg", + "staticwebassets/emojis/Travel_Places/OneOclock/h.svg", + "staticwebassets/emojis/Travel_Places/OneThirty/c.svg", + "staticwebassets/emojis/Travel_Places/OneThirty/f.svg", + "staticwebassets/emojis/Travel_Places/OneThirty/h.svg", + "staticwebassets/emojis/Travel_Places/Parachute/c.svg", + "staticwebassets/emojis/Travel_Places/Parachute/f.svg", + "staticwebassets/emojis/Travel_Places/Parachute/h.svg", + "staticwebassets/emojis/Travel_Places/PassengerShip/c.svg", + "staticwebassets/emojis/Travel_Places/PassengerShip/f.svg", + "staticwebassets/emojis/Travel_Places/PassengerShip/h.svg", + "staticwebassets/emojis/Travel_Places/PickupTruck/c.svg", + "staticwebassets/emojis/Travel_Places/PickupTruck/f.svg", + "staticwebassets/emojis/Travel_Places/PickupTruck/h.svg", + "staticwebassets/emojis/Travel_Places/PlaygroundSlide/c.svg", + "staticwebassets/emojis/Travel_Places/PlaygroundSlide/f.svg", + "staticwebassets/emojis/Travel_Places/PlaygroundSlide/h.svg", + "staticwebassets/emojis/Travel_Places/PoliceCar/c.svg", + "staticwebassets/emojis/Travel_Places/PoliceCar/f.svg", + "staticwebassets/emojis/Travel_Places/PoliceCar/h.svg", + "staticwebassets/emojis/Travel_Places/PoliceCarLight/c.svg", + "staticwebassets/emojis/Travel_Places/PoliceCarLight/f.svg", + "staticwebassets/emojis/Travel_Places/PoliceCarLight/h.svg", + "staticwebassets/emojis/Travel_Places/PostOffice/c.svg", + "staticwebassets/emojis/Travel_Places/PostOffice/f.svg", + "staticwebassets/emojis/Travel_Places/PostOffice/h.svg", + "staticwebassets/emojis/Travel_Places/RacingCar/c.svg", + "staticwebassets/emojis/Travel_Places/RacingCar/f.svg", + "staticwebassets/emojis/Travel_Places/RacingCar/h.svg", + "staticwebassets/emojis/Travel_Places/RailwayCar/c.svg", + "staticwebassets/emojis/Travel_Places/RailwayCar/f.svg", + "staticwebassets/emojis/Travel_Places/RailwayCar/h.svg", + "staticwebassets/emojis/Travel_Places/RailwayTrack/c.svg", + "staticwebassets/emojis/Travel_Places/RailwayTrack/f.svg", + "staticwebassets/emojis/Travel_Places/RailwayTrack/h.svg", + "staticwebassets/emojis/Travel_Places/Rainbow/c.svg", + "staticwebassets/emojis/Travel_Places/Rainbow/f.svg", + "staticwebassets/emojis/Travel_Places/Rainbow/h.svg", + "staticwebassets/emojis/Travel_Places/RingBuoy/c.svg", + "staticwebassets/emojis/Travel_Places/RingBuoy/f.svg", + "staticwebassets/emojis/Travel_Places/RingBuoy/h.svg", + "staticwebassets/emojis/Travel_Places/RingedPlanet/c.svg", + "staticwebassets/emojis/Travel_Places/RingedPlanet/f.svg", + "staticwebassets/emojis/Travel_Places/RingedPlanet/h.svg", + "staticwebassets/emojis/Travel_Places/Rock/c.svg", + "staticwebassets/emojis/Travel_Places/Rock/f.svg", + "staticwebassets/emojis/Travel_Places/Rock/h.svg", + "staticwebassets/emojis/Travel_Places/Rocket/c.svg", + "staticwebassets/emojis/Travel_Places/Rocket/f.svg", + "staticwebassets/emojis/Travel_Places/Rocket/h.svg", + "staticwebassets/emojis/Travel_Places/RollerCoaster/c.svg", + "staticwebassets/emojis/Travel_Places/RollerCoaster/f.svg", + "staticwebassets/emojis/Travel_Places/RollerCoaster/h.svg", + "staticwebassets/emojis/Travel_Places/RollerSkate/c.svg", + "staticwebassets/emojis/Travel_Places/RollerSkate/f.svg", + "staticwebassets/emojis/Travel_Places/RollerSkate/h.svg", + "staticwebassets/emojis/Travel_Places/Sailboat/c.svg", + "staticwebassets/emojis/Travel_Places/Sailboat/f.svg", + "staticwebassets/emojis/Travel_Places/Sailboat/h.svg", + "staticwebassets/emojis/Travel_Places/Satellite/c.svg", + "staticwebassets/emojis/Travel_Places/Satellite/f.svg", + "staticwebassets/emojis/Travel_Places/Satellite/h.svg", + "staticwebassets/emojis/Travel_Places/School/c.svg", + "staticwebassets/emojis/Travel_Places/School/f.svg", + "staticwebassets/emojis/Travel_Places/School/h.svg", + "staticwebassets/emojis/Travel_Places/Seat/c.svg", + "staticwebassets/emojis/Travel_Places/Seat/f.svg", + "staticwebassets/emojis/Travel_Places/Seat/h.svg", + "staticwebassets/emojis/Travel_Places/SevenOclock/c.svg", + "staticwebassets/emojis/Travel_Places/SevenOclock/f.svg", + "staticwebassets/emojis/Travel_Places/SevenOclock/h.svg", + "staticwebassets/emojis/Travel_Places/SevenThirty/c.svg", + "staticwebassets/emojis/Travel_Places/SevenThirty/f.svg", + "staticwebassets/emojis/Travel_Places/SevenThirty/h.svg", + "staticwebassets/emojis/Travel_Places/ShintoShrine/c.svg", + "staticwebassets/emojis/Travel_Places/ShintoShrine/f.svg", + "staticwebassets/emojis/Travel_Places/ShintoShrine/h.svg", + "staticwebassets/emojis/Travel_Places/Ship/c.svg", + "staticwebassets/emojis/Travel_Places/Ship/f.svg", + "staticwebassets/emojis/Travel_Places/Ship/h.svg", + "staticwebassets/emojis/Travel_Places/ShootingStar/c.svg", + "staticwebassets/emojis/Travel_Places/ShootingStar/f.svg", + "staticwebassets/emojis/Travel_Places/ShootingStar/h.svg", + "staticwebassets/emojis/Travel_Places/SixOclock/c.svg", + "staticwebassets/emojis/Travel_Places/SixOclock/f.svg", + "staticwebassets/emojis/Travel_Places/SixOclock/h.svg", + "staticwebassets/emojis/Travel_Places/SixThirty/c.svg", + "staticwebassets/emojis/Travel_Places/SixThirty/f.svg", + "staticwebassets/emojis/Travel_Places/SixThirty/h.svg", + "staticwebassets/emojis/Travel_Places/Skateboard/c.svg", + "staticwebassets/emojis/Travel_Places/Skateboard/f.svg", + "staticwebassets/emojis/Travel_Places/Skateboard/h.svg", + "staticwebassets/emojis/Travel_Places/SmallAirplane/c.svg", + "staticwebassets/emojis/Travel_Places/SmallAirplane/f.svg", + "staticwebassets/emojis/Travel_Places/SmallAirplane/h.svg", + "staticwebassets/emojis/Travel_Places/SnowCappedMountain/c.svg", + "staticwebassets/emojis/Travel_Places/SnowCappedMountain/f.svg", + "staticwebassets/emojis/Travel_Places/SnowCappedMountain/h.svg", + "staticwebassets/emojis/Travel_Places/Snowflake/c.svg", + "staticwebassets/emojis/Travel_Places/Snowflake/f.svg", + "staticwebassets/emojis/Travel_Places/Snowflake/h.svg", + "staticwebassets/emojis/Travel_Places/Snowman/c.svg", + "staticwebassets/emojis/Travel_Places/Snowman/f.svg", + "staticwebassets/emojis/Travel_Places/Snowman/h.svg", + "staticwebassets/emojis/Travel_Places/SnowmanWithoutSnow/c.svg", + "staticwebassets/emojis/Travel_Places/SnowmanWithoutSnow/f.svg", + "staticwebassets/emojis/Travel_Places/SnowmanWithoutSnow/h.svg", + "staticwebassets/emojis/Travel_Places/Speedboat/c.svg", + "staticwebassets/emojis/Travel_Places/Speedboat/f.svg", + "staticwebassets/emojis/Travel_Places/Speedboat/h.svg", + "staticwebassets/emojis/Travel_Places/SportUtilityVehicle/c.svg", + "staticwebassets/emojis/Travel_Places/SportUtilityVehicle/f.svg", + "staticwebassets/emojis/Travel_Places/SportUtilityVehicle/h.svg", + "staticwebassets/emojis/Travel_Places/Stadium/c.svg", + "staticwebassets/emojis/Travel_Places/Stadium/f.svg", + "staticwebassets/emojis/Travel_Places/Stadium/h.svg", + "staticwebassets/emojis/Travel_Places/Star/c.svg", + "staticwebassets/emojis/Travel_Places/Star/f.svg", + "staticwebassets/emojis/Travel_Places/Star/h.svg", + "staticwebassets/emojis/Travel_Places/Station/c.svg", + "staticwebassets/emojis/Travel_Places/Station/f.svg", + "staticwebassets/emojis/Travel_Places/Station/h.svg", + "staticwebassets/emojis/Travel_Places/StatueOfLiberty/c.svg", + "staticwebassets/emojis/Travel_Places/StatueOfLiberty/f.svg", + "staticwebassets/emojis/Travel_Places/StatueOfLiberty/h.svg", + "staticwebassets/emojis/Travel_Places/StopSign/c.svg", + "staticwebassets/emojis/Travel_Places/StopSign/f.svg", + "staticwebassets/emojis/Travel_Places/StopSign/h.svg", + "staticwebassets/emojis/Travel_Places/Stopwatch/c.svg", + "staticwebassets/emojis/Travel_Places/Stopwatch/f.svg", + "staticwebassets/emojis/Travel_Places/Stopwatch/h.svg", + "staticwebassets/emojis/Travel_Places/Sun/c.svg", + "staticwebassets/emojis/Travel_Places/Sun/f.svg", + "staticwebassets/emojis/Travel_Places/Sun/h.svg", + "staticwebassets/emojis/Travel_Places/SunBehindCloud/c.svg", + "staticwebassets/emojis/Travel_Places/SunBehindCloud/f.svg", + "staticwebassets/emojis/Travel_Places/SunBehindCloud/h.svg", + "staticwebassets/emojis/Travel_Places/SunBehindLargeCloud/c.svg", + "staticwebassets/emojis/Travel_Places/SunBehindLargeCloud/f.svg", + "staticwebassets/emojis/Travel_Places/SunBehindLargeCloud/h.svg", + "staticwebassets/emojis/Travel_Places/SunBehindRainCloud/c.svg", + "staticwebassets/emojis/Travel_Places/SunBehindRainCloud/f.svg", + "staticwebassets/emojis/Travel_Places/SunBehindRainCloud/h.svg", + "staticwebassets/emojis/Travel_Places/SunBehindSmallCloud/c.svg", + "staticwebassets/emojis/Travel_Places/SunBehindSmallCloud/f.svg", + "staticwebassets/emojis/Travel_Places/SunBehindSmallCloud/h.svg", + "staticwebassets/emojis/Travel_Places/SunWithFace/c.svg", + "staticwebassets/emojis/Travel_Places/SunWithFace/f.svg", + "staticwebassets/emojis/Travel_Places/SunWithFace/h.svg", + "staticwebassets/emojis/Travel_Places/Sunrise/c.svg", + "staticwebassets/emojis/Travel_Places/Sunrise/f.svg", + "staticwebassets/emojis/Travel_Places/Sunrise/h.svg", + "staticwebassets/emojis/Travel_Places/SunriseOverMountains/c.svg", + "staticwebassets/emojis/Travel_Places/SunriseOverMountains/f.svg", + "staticwebassets/emojis/Travel_Places/SunriseOverMountains/h.svg", + "staticwebassets/emojis/Travel_Places/Sunset/c.svg", + "staticwebassets/emojis/Travel_Places/Sunset/f.svg", + "staticwebassets/emojis/Travel_Places/Sunset/h.svg", + "staticwebassets/emojis/Travel_Places/SuspensionRailway/c.svg", + "staticwebassets/emojis/Travel_Places/SuspensionRailway/f.svg", + "staticwebassets/emojis/Travel_Places/SuspensionRailway/h.svg", + "staticwebassets/emojis/Travel_Places/Synagogue/c.svg", + "staticwebassets/emojis/Travel_Places/Synagogue/f.svg", + "staticwebassets/emojis/Travel_Places/Synagogue/h.svg", + "staticwebassets/emojis/Travel_Places/Taxi/c.svg", + "staticwebassets/emojis/Travel_Places/Taxi/f.svg", + "staticwebassets/emojis/Travel_Places/Taxi/h.svg", + "staticwebassets/emojis/Travel_Places/TenOclock/c.svg", + "staticwebassets/emojis/Travel_Places/TenOclock/f.svg", + "staticwebassets/emojis/Travel_Places/TenOclock/h.svg", + "staticwebassets/emojis/Travel_Places/TenThirty/c.svg", + "staticwebassets/emojis/Travel_Places/TenThirty/f.svg", + "staticwebassets/emojis/Travel_Places/TenThirty/h.svg", + "staticwebassets/emojis/Travel_Places/Tent/c.svg", + "staticwebassets/emojis/Travel_Places/Tent/f.svg", + "staticwebassets/emojis/Travel_Places/Tent/h.svg", + "staticwebassets/emojis/Travel_Places/Thermometer/c.svg", + "staticwebassets/emojis/Travel_Places/Thermometer/f.svg", + "staticwebassets/emojis/Travel_Places/Thermometer/h.svg", + "staticwebassets/emojis/Travel_Places/ThreeOclock/c.svg", + "staticwebassets/emojis/Travel_Places/ThreeOclock/f.svg", + "staticwebassets/emojis/Travel_Places/ThreeOclock/h.svg", + "staticwebassets/emojis/Travel_Places/ThreeThirty/c.svg", + "staticwebassets/emojis/Travel_Places/ThreeThirty/f.svg", + "staticwebassets/emojis/Travel_Places/ThreeThirty/h.svg", + "staticwebassets/emojis/Travel_Places/TimerClock/c.svg", + "staticwebassets/emojis/Travel_Places/TimerClock/f.svg", + "staticwebassets/emojis/Travel_Places/TimerClock/h.svg", + "staticwebassets/emojis/Travel_Places/TokyoTower/c.svg", + "staticwebassets/emojis/Travel_Places/TokyoTower/f.svg", + "staticwebassets/emojis/Travel_Places/TokyoTower/h.svg", + "staticwebassets/emojis/Travel_Places/Tornado/c.svg", + "staticwebassets/emojis/Travel_Places/Tornado/f.svg", + "staticwebassets/emojis/Travel_Places/Tornado/h.svg", + "staticwebassets/emojis/Travel_Places/Tractor/c.svg", + "staticwebassets/emojis/Travel_Places/Tractor/f.svg", + "staticwebassets/emojis/Travel_Places/Tractor/h.svg", + "staticwebassets/emojis/Travel_Places/Train/c.svg", + "staticwebassets/emojis/Travel_Places/Train/f.svg", + "staticwebassets/emojis/Travel_Places/Train/h.svg", + "staticwebassets/emojis/Travel_Places/Tram/c.svg", + "staticwebassets/emojis/Travel_Places/Tram/f.svg", + "staticwebassets/emojis/Travel_Places/Tram/h.svg", + "staticwebassets/emojis/Travel_Places/TramCar/c.svg", + "staticwebassets/emojis/Travel_Places/TramCar/f.svg", + "staticwebassets/emojis/Travel_Places/TramCar/h.svg", + "staticwebassets/emojis/Travel_Places/Trolleybus/c.svg", + "staticwebassets/emojis/Travel_Places/Trolleybus/f.svg", + "staticwebassets/emojis/Travel_Places/Trolleybus/h.svg", + "staticwebassets/emojis/Travel_Places/TwelveOclock/c.svg", + "staticwebassets/emojis/Travel_Places/TwelveOclock/f.svg", + "staticwebassets/emojis/Travel_Places/TwelveOclock/h.svg", + "staticwebassets/emojis/Travel_Places/TwelveThirty/c.svg", + "staticwebassets/emojis/Travel_Places/TwelveThirty/f.svg", + "staticwebassets/emojis/Travel_Places/TwelveThirty/h.svg", + "staticwebassets/emojis/Travel_Places/TwoOclock/c.svg", + "staticwebassets/emojis/Travel_Places/TwoOclock/f.svg", + "staticwebassets/emojis/Travel_Places/TwoOclock/h.svg", + "staticwebassets/emojis/Travel_Places/TwoThirty/c.svg", + "staticwebassets/emojis/Travel_Places/TwoThirty/f.svg", + "staticwebassets/emojis/Travel_Places/TwoThirty/h.svg", + "staticwebassets/emojis/Travel_Places/Umbrella/c.svg", + "staticwebassets/emojis/Travel_Places/Umbrella/f.svg", + "staticwebassets/emojis/Travel_Places/Umbrella/h.svg", + "staticwebassets/emojis/Travel_Places/UmbrellaOnGround/c.svg", + "staticwebassets/emojis/Travel_Places/UmbrellaOnGround/f.svg", + "staticwebassets/emojis/Travel_Places/UmbrellaOnGround/h.svg", + "staticwebassets/emojis/Travel_Places/UmbrellaWithRainDrops/c.svg", + "staticwebassets/emojis/Travel_Places/UmbrellaWithRainDrops/f.svg", + "staticwebassets/emojis/Travel_Places/UmbrellaWithRainDrops/h.svg", + "staticwebassets/emojis/Travel_Places/VerticalTrafficLight/c.svg", + "staticwebassets/emojis/Travel_Places/VerticalTrafficLight/f.svg", + "staticwebassets/emojis/Travel_Places/VerticalTrafficLight/h.svg", + "staticwebassets/emojis/Travel_Places/Volcano/c.svg", + "staticwebassets/emojis/Travel_Places/Volcano/f.svg", + "staticwebassets/emojis/Travel_Places/Volcano/h.svg", + "staticwebassets/emojis/Travel_Places/WaningCrescentMoon/c.svg", + "staticwebassets/emojis/Travel_Places/WaningCrescentMoon/f.svg", + "staticwebassets/emojis/Travel_Places/WaningCrescentMoon/h.svg", + "staticwebassets/emojis/Travel_Places/WaningGibbousMoon/c.svg", + "staticwebassets/emojis/Travel_Places/WaningGibbousMoon/f.svg", + "staticwebassets/emojis/Travel_Places/WaningGibbousMoon/h.svg", + "staticwebassets/emojis/Travel_Places/Watch/c.svg", + "staticwebassets/emojis/Travel_Places/Watch/f.svg", + "staticwebassets/emojis/Travel_Places/Watch/h.svg", + "staticwebassets/emojis/Travel_Places/WaterWave/c.svg", + "staticwebassets/emojis/Travel_Places/WaterWave/f.svg", + "staticwebassets/emojis/Travel_Places/WaterWave/h.svg", + "staticwebassets/emojis/Travel_Places/WaxingCrescentMoon/c.svg", + "staticwebassets/emojis/Travel_Places/WaxingCrescentMoon/f.svg", + "staticwebassets/emojis/Travel_Places/WaxingCrescentMoon/h.svg", + "staticwebassets/emojis/Travel_Places/WaxingGibbousMoon/c.svg", + "staticwebassets/emojis/Travel_Places/WaxingGibbousMoon/f.svg", + "staticwebassets/emojis/Travel_Places/WaxingGibbousMoon/h.svg", + "staticwebassets/emojis/Travel_Places/Wedding/c.svg", + "staticwebassets/emojis/Travel_Places/Wedding/f.svg", + "staticwebassets/emojis/Travel_Places/Wedding/h.svg", + "staticwebassets/emojis/Travel_Places/Wheel/c.svg", + "staticwebassets/emojis/Travel_Places/Wheel/f.svg", + "staticwebassets/emojis/Travel_Places/Wheel/h.svg", + "staticwebassets/emojis/Travel_Places/WindFace/c.svg", + "staticwebassets/emojis/Travel_Places/WindFace/f.svg", + "staticwebassets/emojis/Travel_Places/WindFace/h.svg", + "staticwebassets/emojis/Travel_Places/Wood/c.svg", + "staticwebassets/emojis/Travel_Places/Wood/f.svg", + "staticwebassets/emojis/Travel_Places/Wood/h.svg", + "staticwebassets/emojis/Travel_Places/WorldMap/c.svg", + "staticwebassets/emojis/Travel_Places/WorldMap/f.svg", + "staticwebassets/emojis/Travel_Places/WorldMap/h.svg", + "staticwebassets/icons/AccessTime/20_f.svg", + "staticwebassets/icons/AccessTime/20_r.svg", + "staticwebassets/icons/AccessTime/24_f.svg", + "staticwebassets/icons/AccessTime/24_r.svg", + "staticwebassets/icons/Accessibility/16_f.svg", + "staticwebassets/icons/Accessibility/16_r.svg", + "staticwebassets/icons/Accessibility/20_f.svg", + "staticwebassets/icons/Accessibility/20_r.svg", + "staticwebassets/icons/Accessibility/24_f.svg", + "staticwebassets/icons/Accessibility/24_r.svg", + "staticwebassets/icons/Accessibility/28_f.svg", + "staticwebassets/icons/Accessibility/28_r.svg", + "staticwebassets/icons/Accessibility/32_f.svg", + "staticwebassets/icons/Accessibility/32_r.svg", + "staticwebassets/icons/Accessibility/48_f.svg", + "staticwebassets/icons/Accessibility/48_r.svg", + "staticwebassets/icons/AccessibilityCheckmark/20_f.svg", + "staticwebassets/icons/AccessibilityCheckmark/20_r.svg", + "staticwebassets/icons/AccessibilityCheckmark/24_f.svg", + "staticwebassets/icons/AccessibilityCheckmark/24_r.svg", + "staticwebassets/icons/AccessibilityCheckmark/28_f.svg", + "staticwebassets/icons/AccessibilityCheckmark/28_r.svg", + "staticwebassets/icons/AccessibilityCheckmark/32_f.svg", + "staticwebassets/icons/AccessibilityCheckmark/32_r.svg", + "staticwebassets/icons/AccessibilityCheckmark/48_f.svg", + "staticwebassets/icons/AccessibilityCheckmark/48_r.svg", + "staticwebassets/icons/Add/12_f.svg", + "staticwebassets/icons/Add/12_r.svg", + "staticwebassets/icons/Add/16_f.svg", + "staticwebassets/icons/Add/16_r.svg", + "staticwebassets/icons/Add/20_f.svg", + "staticwebassets/icons/Add/20_r.svg", + "staticwebassets/icons/Add/24_f.svg", + "staticwebassets/icons/Add/24_r.svg", + "staticwebassets/icons/Add/28_f.svg", + "staticwebassets/icons/Add/28_r.svg", + "staticwebassets/icons/Add/32_f.svg", + "staticwebassets/icons/Add/32_r.svg", + "staticwebassets/icons/Add/48_f.svg", + "staticwebassets/icons/Add/48_r.svg", + "staticwebassets/icons/AddCircle/12_f.svg", + "staticwebassets/icons/AddCircle/12_r.svg", + "staticwebassets/icons/AddCircle/16_f.svg", + "staticwebassets/icons/AddCircle/16_r.svg", + "staticwebassets/icons/AddCircle/20_f.svg", + "staticwebassets/icons/AddCircle/20_r.svg", + "staticwebassets/icons/AddCircle/24_f.svg", + "staticwebassets/icons/AddCircle/24_r.svg", + "staticwebassets/icons/AddCircle/28_f.svg", + "staticwebassets/icons/AddCircle/28_r.svg", + "staticwebassets/icons/AddCircle/32_f.svg", + "staticwebassets/icons/AddCircle/32_r.svg", + "staticwebassets/icons/AddSquare/20_f.svg", + "staticwebassets/icons/AddSquare/20_r.svg", + "staticwebassets/icons/AddSquare/24_f.svg", + "staticwebassets/icons/AddSquare/24_r.svg", + "staticwebassets/icons/AddSquareMultiple/16_f.svg", + "staticwebassets/icons/AddSquareMultiple/16_r.svg", + "staticwebassets/icons/AddSquareMultiple/20_f.svg", + "staticwebassets/icons/AddSquareMultiple/20_r.svg", + "staticwebassets/icons/AddSubtractCircle/16_f.svg", + "staticwebassets/icons/AddSubtractCircle/16_r.svg", + "staticwebassets/icons/AddSubtractCircle/20_f.svg", + "staticwebassets/icons/AddSubtractCircle/20_r.svg", + "staticwebassets/icons/AddSubtractCircle/24_f.svg", + "staticwebassets/icons/AddSubtractCircle/24_r.svg", + "staticwebassets/icons/AddSubtractCircle/28_f.svg", + "staticwebassets/icons/AddSubtractCircle/28_r.svg", + "staticwebassets/icons/AddSubtractCircle/48_f.svg", + "staticwebassets/icons/AddSubtractCircle/48_r.svg", + "staticwebassets/icons/Airplane/20_f.svg", + "staticwebassets/icons/Airplane/20_r.svg", + "staticwebassets/icons/Airplane/24_f.svg", + "staticwebassets/icons/Airplane/24_r.svg", + "staticwebassets/icons/AirplaneTakeOff/16_f.svg", + "staticwebassets/icons/AirplaneTakeOff/16_r.svg", + "staticwebassets/icons/AirplaneTakeOff/20_f.svg", + "staticwebassets/icons/AirplaneTakeOff/20_r.svg", + "staticwebassets/icons/AirplaneTakeOff/24_f.svg", + "staticwebassets/icons/AirplaneTakeOff/24_r.svg", + "staticwebassets/icons/Album/20_f.svg", + "staticwebassets/icons/Album/20_r.svg", + "staticwebassets/icons/Album/24_f.svg", + "staticwebassets/icons/Album/24_r.svg", + "staticwebassets/icons/AlbumAdd/20_f.svg", + "staticwebassets/icons/AlbumAdd/20_r.svg", + "staticwebassets/icons/AlbumAdd/24_f.svg", + "staticwebassets/icons/AlbumAdd/24_r.svg", + "staticwebassets/icons/Alert/12_f.svg", + "staticwebassets/icons/Alert/12_r.svg", + "staticwebassets/icons/Alert/16_f.svg", + "staticwebassets/icons/Alert/16_r.svg", + "staticwebassets/icons/Alert/20_f.svg", + "staticwebassets/icons/Alert/20_r.svg", + "staticwebassets/icons/Alert/24_f.svg", + "staticwebassets/icons/Alert/24_r.svg", + "staticwebassets/icons/Alert/28_f.svg", + "staticwebassets/icons/Alert/28_r.svg", + "staticwebassets/icons/Alert/32_f.svg", + "staticwebassets/icons/Alert/32_r.svg", + "staticwebassets/icons/Alert/48_f.svg", + "staticwebassets/icons/Alert/48_r.svg", + "staticwebassets/icons/AlertBadge/16_f.svg", + "staticwebassets/icons/AlertBadge/16_r.svg", + "staticwebassets/icons/AlertBadge/20_f.svg", + "staticwebassets/icons/AlertBadge/20_r.svg", + "staticwebassets/icons/AlertBadge/24_f.svg", + "staticwebassets/icons/AlertBadge/24_r.svg", + "staticwebassets/icons/AlertOff/16_f.svg", + "staticwebassets/icons/AlertOff/16_r.svg", + "staticwebassets/icons/AlertOff/20_f.svg", + "staticwebassets/icons/AlertOff/20_r.svg", + "staticwebassets/icons/AlertOff/24_f.svg", + "staticwebassets/icons/AlertOff/24_r.svg", + "staticwebassets/icons/AlertOff/28_f.svg", + "staticwebassets/icons/AlertOff/28_r.svg", + "staticwebassets/icons/AlertOn/20_f.svg", + "staticwebassets/icons/AlertOn/20_r.svg", + "staticwebassets/icons/AlertOn/24_f.svg", + "staticwebassets/icons/AlertOn/24_r.svg", + "staticwebassets/icons/AlertSnooze/12_f.svg", + "staticwebassets/icons/AlertSnooze/12_r.svg", + "staticwebassets/icons/AlertSnooze/16_f.svg", + "staticwebassets/icons/AlertSnooze/16_r.svg", + "staticwebassets/icons/AlertSnooze/20_f.svg", + "staticwebassets/icons/AlertSnooze/20_r.svg", + "staticwebassets/icons/AlertSnooze/24_f.svg", + "staticwebassets/icons/AlertSnooze/24_r.svg", + "staticwebassets/icons/AlertUrgent/16_f.svg", + "staticwebassets/icons/AlertUrgent/16_r.svg", + "staticwebassets/icons/AlertUrgent/20_f.svg", + "staticwebassets/icons/AlertUrgent/20_r.svg", + "staticwebassets/icons/AlertUrgent/24_f.svg", + "staticwebassets/icons/AlertUrgent/24_r.svg", + "staticwebassets/icons/AlignBottom/16_f.svg", + "staticwebassets/icons/AlignBottom/16_r.svg", + "staticwebassets/icons/AlignBottom/20_f.svg", + "staticwebassets/icons/AlignBottom/20_r.svg", + "staticwebassets/icons/AlignBottom/24_f.svg", + "staticwebassets/icons/AlignBottom/24_r.svg", + "staticwebassets/icons/AlignBottom/28_f.svg", + "staticwebassets/icons/AlignBottom/28_r.svg", + "staticwebassets/icons/AlignBottom/32_f.svg", + "staticwebassets/icons/AlignBottom/32_r.svg", + "staticwebassets/icons/AlignBottom/48_f.svg", + "staticwebassets/icons/AlignBottom/48_r.svg", + "staticwebassets/icons/AlignCenterHorizontal/16_f.svg", + "staticwebassets/icons/AlignCenterHorizontal/16_r.svg", + "staticwebassets/icons/AlignCenterHorizontal/20_f.svg", + "staticwebassets/icons/AlignCenterHorizontal/20_r.svg", + "staticwebassets/icons/AlignCenterHorizontal/24_f.svg", + "staticwebassets/icons/AlignCenterHorizontal/24_r.svg", + "staticwebassets/icons/AlignCenterHorizontal/28_f.svg", + "staticwebassets/icons/AlignCenterHorizontal/28_r.svg", + "staticwebassets/icons/AlignCenterHorizontal/32_f.svg", + "staticwebassets/icons/AlignCenterHorizontal/32_r.svg", + "staticwebassets/icons/AlignCenterHorizontal/48_f.svg", + "staticwebassets/icons/AlignCenterHorizontal/48_r.svg", + "staticwebassets/icons/AlignCenterVertical/16_f.svg", + "staticwebassets/icons/AlignCenterVertical/16_r.svg", + "staticwebassets/icons/AlignCenterVertical/20_f.svg", + "staticwebassets/icons/AlignCenterVertical/20_r.svg", + "staticwebassets/icons/AlignCenterVertical/24_f.svg", + "staticwebassets/icons/AlignCenterVertical/24_r.svg", + "staticwebassets/icons/AlignCenterVertical/28_f.svg", + "staticwebassets/icons/AlignCenterVertical/28_r.svg", + "staticwebassets/icons/AlignCenterVertical/32_f.svg", + "staticwebassets/icons/AlignCenterVertical/32_r.svg", + "staticwebassets/icons/AlignCenterVertical/48_f.svg", + "staticwebassets/icons/AlignCenterVertical/48_r.svg", + "staticwebassets/icons/AlignDistributeBottom/16_f.svg", + "staticwebassets/icons/AlignDistributeBottom/16_r.svg", + "staticwebassets/icons/AlignDistributeLeft/16_f.svg", + "staticwebassets/icons/AlignDistributeLeft/16_r.svg", + "staticwebassets/icons/AlignDistributeRight/16_f.svg", + "staticwebassets/icons/AlignDistributeRight/16_r.svg", + "staticwebassets/icons/AlignDistributeTop/16_f.svg", + "staticwebassets/icons/AlignDistributeTop/16_r.svg", + "staticwebassets/icons/AlignEndHorizontal/20_f.svg", + "staticwebassets/icons/AlignEndHorizontal/20_r.svg", + "staticwebassets/icons/AlignEndVertical/20_f.svg", + "staticwebassets/icons/AlignEndVertical/20_r.svg", + "staticwebassets/icons/AlignLeft/16_f.svg", + "staticwebassets/icons/AlignLeft/16_r.svg", + "staticwebassets/icons/AlignLeft/20_f.svg", + "staticwebassets/icons/AlignLeft/20_r.svg", + "staticwebassets/icons/AlignLeft/24_f.svg", + "staticwebassets/icons/AlignLeft/24_r.svg", + "staticwebassets/icons/AlignLeft/28_f.svg", + "staticwebassets/icons/AlignLeft/28_r.svg", + "staticwebassets/icons/AlignLeft/32_f.svg", + "staticwebassets/icons/AlignLeft/32_r.svg", + "staticwebassets/icons/AlignLeft/48_f.svg", + "staticwebassets/icons/AlignLeft/48_r.svg", + "staticwebassets/icons/AlignRight/16_f.svg", + "staticwebassets/icons/AlignRight/16_r.svg", + "staticwebassets/icons/AlignRight/20_f.svg", + "staticwebassets/icons/AlignRight/20_r.svg", + "staticwebassets/icons/AlignRight/24_f.svg", + "staticwebassets/icons/AlignRight/24_r.svg", + "staticwebassets/icons/AlignRight/28_f.svg", + "staticwebassets/icons/AlignRight/28_r.svg", + "staticwebassets/icons/AlignRight/32_f.svg", + "staticwebassets/icons/AlignRight/32_r.svg", + "staticwebassets/icons/AlignRight/48_f.svg", + "staticwebassets/icons/AlignRight/48_r.svg", + "staticwebassets/icons/AlignSpaceAroundHorizontal/20_f.svg", + "staticwebassets/icons/AlignSpaceAroundHorizontal/20_r.svg", + "staticwebassets/icons/AlignSpaceAroundVertical/20_f.svg", + "staticwebassets/icons/AlignSpaceAroundVertical/20_r.svg", + "staticwebassets/icons/AlignSpaceBetweenHorizontal/20_f.svg", + "staticwebassets/icons/AlignSpaceBetweenHorizontal/20_r.svg", + "staticwebassets/icons/AlignSpaceBetweenVertical/20_f.svg", + "staticwebassets/icons/AlignSpaceBetweenVertical/20_r.svg", + "staticwebassets/icons/AlignSpaceEvenlyHorizontal/20_f.svg", + "staticwebassets/icons/AlignSpaceEvenlyHorizontal/20_r.svg", + "staticwebassets/icons/AlignSpaceEvenlyVertical/20_f.svg", + "staticwebassets/icons/AlignSpaceEvenlyVertical/20_r.svg", + "staticwebassets/icons/AlignSpaceFitVertical/20_f.svg", + "staticwebassets/icons/AlignSpaceFitVertical/20_r.svg", + "staticwebassets/icons/AlignStartHorizontal/20_f.svg", + "staticwebassets/icons/AlignStartHorizontal/20_r.svg", + "staticwebassets/icons/AlignStartVertical/20_f.svg", + "staticwebassets/icons/AlignStartVertical/20_r.svg", + "staticwebassets/icons/AlignStretchHorizontal/16_f.svg", + "staticwebassets/icons/AlignStretchHorizontal/16_r.svg", + "staticwebassets/icons/AlignStretchHorizontal/20_f.svg", + "staticwebassets/icons/AlignStretchHorizontal/20_r.svg", + "staticwebassets/icons/AlignStretchVertical/16_f.svg", + "staticwebassets/icons/AlignStretchVertical/16_r.svg", + "staticwebassets/icons/AlignStretchVertical/20_f.svg", + "staticwebassets/icons/AlignStretchVertical/20_r.svg", + "staticwebassets/icons/AlignTop/16_f.svg", + "staticwebassets/icons/AlignTop/16_r.svg", + "staticwebassets/icons/AlignTop/20_f.svg", + "staticwebassets/icons/AlignTop/20_r.svg", + "staticwebassets/icons/AlignTop/24_f.svg", + "staticwebassets/icons/AlignTop/24_r.svg", + "staticwebassets/icons/AlignTop/28_f.svg", + "staticwebassets/icons/AlignTop/28_r.svg", + "staticwebassets/icons/AlignTop/32_f.svg", + "staticwebassets/icons/AlignTop/32_r.svg", + "staticwebassets/icons/AlignTop/48_f.svg", + "staticwebassets/icons/AlignTop/48_r.svg", + "staticwebassets/icons/AnimalCat/16_f.svg", + "staticwebassets/icons/AnimalCat/16_r.svg", + "staticwebassets/icons/AnimalCat/20_f.svg", + "staticwebassets/icons/AnimalCat/20_r.svg", + "staticwebassets/icons/AnimalCat/24_f.svg", + "staticwebassets/icons/AnimalCat/24_r.svg", + "staticwebassets/icons/AnimalCat/28_f.svg", + "staticwebassets/icons/AnimalCat/28_r.svg", + "staticwebassets/icons/AnimalDog/16_f.svg", + "staticwebassets/icons/AnimalDog/16_r.svg", + "staticwebassets/icons/AnimalDog/20_f.svg", + "staticwebassets/icons/AnimalDog/20_r.svg", + "staticwebassets/icons/AnimalDog/24_f.svg", + "staticwebassets/icons/AnimalDog/24_r.svg", + "staticwebassets/icons/AnimalRabbit/16_f.svg", + "staticwebassets/icons/AnimalRabbit/16_r.svg", + "staticwebassets/icons/AnimalRabbit/20_f.svg", + "staticwebassets/icons/AnimalRabbit/20_r.svg", + "staticwebassets/icons/AnimalRabbit/24_f.svg", + "staticwebassets/icons/AnimalRabbit/24_r.svg", + "staticwebassets/icons/AnimalRabbit/28_f.svg", + "staticwebassets/icons/AnimalRabbit/28_r.svg", + "staticwebassets/icons/AnimalRabbit/32_f.svg", + "staticwebassets/icons/AnimalRabbit/32_r.svg", + "staticwebassets/icons/AnimalRabbitOff/20_f.svg", + "staticwebassets/icons/AnimalRabbitOff/20_r.svg", + "staticwebassets/icons/AnimalRabbitOff/32_f.svg", + "staticwebassets/icons/AnimalRabbitOff/32_r.svg", + "staticwebassets/icons/AnimalTurtle/16_f.svg", + "staticwebassets/icons/AnimalTurtle/16_r.svg", + "staticwebassets/icons/AnimalTurtle/20_f.svg", + "staticwebassets/icons/AnimalTurtle/20_r.svg", + "staticwebassets/icons/AnimalTurtle/24_f.svg", + "staticwebassets/icons/AnimalTurtle/24_r.svg", + "staticwebassets/icons/AnimalTurtle/28_f.svg", + "staticwebassets/icons/AnimalTurtle/28_r.svg", + "staticwebassets/icons/AppFolder/16_f.svg", + "staticwebassets/icons/AppFolder/16_r.svg", + "staticwebassets/icons/AppFolder/20_f.svg", + "staticwebassets/icons/AppFolder/20_r.svg", + "staticwebassets/icons/AppFolder/24_f.svg", + "staticwebassets/icons/AppFolder/24_r.svg", + "staticwebassets/icons/AppFolder/28_f.svg", + "staticwebassets/icons/AppFolder/28_r.svg", + "staticwebassets/icons/AppFolder/32_f.svg", + "staticwebassets/icons/AppFolder/32_r.svg", + "staticwebassets/icons/AppFolder/48_f.svg", + "staticwebassets/icons/AppFolder/48_r.svg", + "staticwebassets/icons/AppGeneric/20_f.svg", + "staticwebassets/icons/AppGeneric/20_r.svg", + "staticwebassets/icons/AppGeneric/24_f.svg", + "staticwebassets/icons/AppGeneric/24_r.svg", + "staticwebassets/icons/AppGeneric/32_f.svg", + "staticwebassets/icons/AppGeneric/32_r.svg", + "staticwebassets/icons/AppGeneric/48_f.svg", + "staticwebassets/icons/AppGeneric/48_r.svg", + "staticwebassets/icons/AppRecent/20_f.svg", + "staticwebassets/icons/AppRecent/20_r.svg", + "staticwebassets/icons/AppRecent/24_f.svg", + "staticwebassets/icons/AppRecent/24_r.svg", + "staticwebassets/icons/AppStore/24_f.svg", + "staticwebassets/icons/AppStore/24_r.svg", + "staticwebassets/icons/AppTitle/20_f.svg", + "staticwebassets/icons/AppTitle/20_r.svg", + "staticwebassets/icons/AppTitle/24_f.svg", + "staticwebassets/icons/AppTitle/24_r.svg", + "staticwebassets/icons/ApprovalsApp/16_f.svg", + "staticwebassets/icons/ApprovalsApp/16_r.svg", + "staticwebassets/icons/ApprovalsApp/20_f.svg", + "staticwebassets/icons/ApprovalsApp/20_r.svg", + "staticwebassets/icons/ApprovalsApp/24_f.svg", + "staticwebassets/icons/ApprovalsApp/24_r.svg", + "staticwebassets/icons/ApprovalsApp/28_f.svg", + "staticwebassets/icons/ApprovalsApp/28_r.svg", + "staticwebassets/icons/ApprovalsApp/32_f.svg", + "staticwebassets/icons/ApprovalsApp/32_r.svg", + "staticwebassets/icons/Apps/16_f.svg", + "staticwebassets/icons/Apps/16_r.svg", + "staticwebassets/icons/Apps/20_f.svg", + "staticwebassets/icons/Apps/20_r.svg", + "staticwebassets/icons/Apps/24_f.svg", + "staticwebassets/icons/Apps/24_r.svg", + "staticwebassets/icons/Apps/28_f.svg", + "staticwebassets/icons/Apps/28_r.svg", + "staticwebassets/icons/Apps/32_f.svg", + "staticwebassets/icons/Apps/32_r.svg", + "staticwebassets/icons/Apps/48_f.svg", + "staticwebassets/icons/Apps/48_r.svg", + "staticwebassets/icons/AppsAddIn/16_f.svg", + "staticwebassets/icons/AppsAddIn/16_r.svg", + "staticwebassets/icons/AppsAddIn/20_f.svg", + "staticwebassets/icons/AppsAddIn/20_r.svg", + "staticwebassets/icons/AppsAddIn/24_f.svg", + "staticwebassets/icons/AppsAddIn/24_r.svg", + "staticwebassets/icons/AppsAddIn/28_f.svg", + "staticwebassets/icons/AppsAddIn/28_r.svg", + "staticwebassets/icons/AppsList/20_f.svg", + "staticwebassets/icons/AppsList/20_r.svg", + "staticwebassets/icons/AppsList/24_f.svg", + "staticwebassets/icons/AppsList/24_r.svg", + "staticwebassets/icons/AppsListDetail/20_f.svg", + "staticwebassets/icons/AppsListDetail/20_r.svg", + "staticwebassets/icons/AppsListDetail/24_f.svg", + "staticwebassets/icons/AppsListDetail/24_r.svg", + "staticwebassets/icons/Archive/16_f.svg", + "staticwebassets/icons/Archive/16_r.svg", + "staticwebassets/icons/Archive/20_f.svg", + "staticwebassets/icons/Archive/20_r.svg", + "staticwebassets/icons/Archive/24_f.svg", + "staticwebassets/icons/Archive/24_r.svg", + "staticwebassets/icons/Archive/28_f.svg", + "staticwebassets/icons/Archive/28_r.svg", + "staticwebassets/icons/Archive/32_f.svg", + "staticwebassets/icons/Archive/32_r.svg", + "staticwebassets/icons/Archive/48_f.svg", + "staticwebassets/icons/Archive/48_r.svg", + "staticwebassets/icons/ArchiveArrowBack/16_f.svg", + "staticwebassets/icons/ArchiveArrowBack/16_r.svg", + "staticwebassets/icons/ArchiveArrowBack/20_f.svg", + "staticwebassets/icons/ArchiveArrowBack/20_r.svg", + "staticwebassets/icons/ArchiveArrowBack/24_f.svg", + "staticwebassets/icons/ArchiveArrowBack/24_r.svg", + "staticwebassets/icons/ArchiveArrowBack/28_f.svg", + "staticwebassets/icons/ArchiveArrowBack/28_r.svg", + "staticwebassets/icons/ArchiveArrowBack/32_f.svg", + "staticwebassets/icons/ArchiveArrowBack/32_r.svg", + "staticwebassets/icons/ArchiveArrowBack/48_f.svg", + "staticwebassets/icons/ArchiveArrowBack/48_r.svg", + "staticwebassets/icons/ArchiveMultiple/16_f.svg", + "staticwebassets/icons/ArchiveMultiple/16_r.svg", + "staticwebassets/icons/ArchiveMultiple/20_f.svg", + "staticwebassets/icons/ArchiveMultiple/20_r.svg", + "staticwebassets/icons/ArchiveMultiple/24_f.svg", + "staticwebassets/icons/ArchiveMultiple/24_r.svg", + "staticwebassets/icons/ArchiveSettings/16_f.svg", + "staticwebassets/icons/ArchiveSettings/16_r.svg", + "staticwebassets/icons/ArchiveSettings/20_f.svg", + "staticwebassets/icons/ArchiveSettings/20_r.svg", + "staticwebassets/icons/ArchiveSettings/24_f.svg", + "staticwebassets/icons/ArchiveSettings/24_r.svg", + "staticwebassets/icons/ArchiveSettings/28_f.svg", + "staticwebassets/icons/ArchiveSettings/28_r.svg", + "staticwebassets/icons/ArrowAutofitContent/20_f.svg", + "staticwebassets/icons/ArrowAutofitContent/20_r.svg", + "staticwebassets/icons/ArrowAutofitContent/24_f.svg", + "staticwebassets/icons/ArrowAutofitContent/24_r.svg", + "staticwebassets/icons/ArrowAutofitDown/20_f.svg", + "staticwebassets/icons/ArrowAutofitDown/20_r.svg", + "staticwebassets/icons/ArrowAutofitDown/24_f.svg", + "staticwebassets/icons/ArrowAutofitDown/24_r.svg", + "staticwebassets/icons/ArrowAutofitHeight/20_f.svg", + "staticwebassets/icons/ArrowAutofitHeight/20_r.svg", + "staticwebassets/icons/ArrowAutofitHeight/24_f.svg", + "staticwebassets/icons/ArrowAutofitHeight/24_r.svg", + "staticwebassets/icons/ArrowAutofitHeightDotted/20_f.svg", + "staticwebassets/icons/ArrowAutofitHeightDotted/20_r.svg", + "staticwebassets/icons/ArrowAutofitHeightDotted/24_f.svg", + "staticwebassets/icons/ArrowAutofitHeightDotted/24_r.svg", + "staticwebassets/icons/ArrowAutofitHeightIn/20_f.svg", + "staticwebassets/icons/ArrowAutofitHeightIn/20_r.svg", + "staticwebassets/icons/ArrowAutofitHeightIn/24_f.svg", + "staticwebassets/icons/ArrowAutofitHeightIn/24_r.svg", + "staticwebassets/icons/ArrowAutofitUp/20_f.svg", + "staticwebassets/icons/ArrowAutofitUp/20_r.svg", + "staticwebassets/icons/ArrowAutofitUp/24_f.svg", + "staticwebassets/icons/ArrowAutofitUp/24_r.svg", + "staticwebassets/icons/ArrowAutofitWidth/20_f.svg", + "staticwebassets/icons/ArrowAutofitWidth/20_r.svg", + "staticwebassets/icons/ArrowAutofitWidth/24_f.svg", + "staticwebassets/icons/ArrowAutofitWidth/24_r.svg", + "staticwebassets/icons/ArrowAutofitWidthDotted/20_f.svg", + "staticwebassets/icons/ArrowAutofitWidthDotted/20_r.svg", + "staticwebassets/icons/ArrowAutofitWidthDotted/24_f.svg", + "staticwebassets/icons/ArrowAutofitWidthDotted/24_r.svg", + "staticwebassets/icons/ArrowBetweenDown/20_f.svg", + "staticwebassets/icons/ArrowBetweenDown/20_r.svg", + "staticwebassets/icons/ArrowBetweenDown/24_f.svg", + "staticwebassets/icons/ArrowBetweenDown/24_r.svg", + "staticwebassets/icons/ArrowBetweenUp/20_f.svg", + "staticwebassets/icons/ArrowBetweenUp/20_r.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/12_f.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/12_r.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/16_f.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/16_r.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/20_f.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/20_r.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/24_f.svg", + "staticwebassets/icons/ArrowBidirectionalUpDown/24_r.svg", + "staticwebassets/icons/ArrowBounce/16_f.svg", + "staticwebassets/icons/ArrowBounce/16_r.svg", + "staticwebassets/icons/ArrowBounce/20_f.svg", + "staticwebassets/icons/ArrowBounce/20_r.svg", + "staticwebassets/icons/ArrowBounce/24_f.svg", + "staticwebassets/icons/ArrowBounce/24_r.svg", + "staticwebassets/icons/ArrowCircleDown/12_f.svg", + "staticwebassets/icons/ArrowCircleDown/12_r.svg", + "staticwebassets/icons/ArrowCircleDown/16_f.svg", + "staticwebassets/icons/ArrowCircleDown/16_r.svg", + "staticwebassets/icons/ArrowCircleDown/20_f.svg", + "staticwebassets/icons/ArrowCircleDown/20_r.svg", + "staticwebassets/icons/ArrowCircleDown/24_f.svg", + "staticwebassets/icons/ArrowCircleDown/24_r.svg", + "staticwebassets/icons/ArrowCircleDown/28_f.svg", + "staticwebassets/icons/ArrowCircleDown/28_r.svg", + "staticwebassets/icons/ArrowCircleDown/32_f.svg", + "staticwebassets/icons/ArrowCircleDown/32_r.svg", + "staticwebassets/icons/ArrowCircleDown/48_f.svg", + "staticwebassets/icons/ArrowCircleDown/48_r.svg", + "staticwebassets/icons/ArrowCircleDownDouble/20_f.svg", + "staticwebassets/icons/ArrowCircleDownDouble/20_r.svg", + "staticwebassets/icons/ArrowCircleDownDouble/24_f.svg", + "staticwebassets/icons/ArrowCircleDownDouble/24_r.svg", + "staticwebassets/icons/ArrowCircleDownRight/16_f.svg", + "staticwebassets/icons/ArrowCircleDownRight/16_r.svg", + "staticwebassets/icons/ArrowCircleDownRight/20_f.svg", + "staticwebassets/icons/ArrowCircleDownRight/20_r.svg", + "staticwebassets/icons/ArrowCircleDownRight/24_f.svg", + "staticwebassets/icons/ArrowCircleDownRight/24_r.svg", + "staticwebassets/icons/ArrowCircleDownSplit/20_f.svg", + "staticwebassets/icons/ArrowCircleDownSplit/20_r.svg", + "staticwebassets/icons/ArrowCircleDownSplit/24_f.svg", + "staticwebassets/icons/ArrowCircleDownSplit/24_r.svg", + "staticwebassets/icons/ArrowCircleDownUp/20_f.svg", + "staticwebassets/icons/ArrowCircleDownUp/20_r.svg", + "staticwebassets/icons/ArrowCircleLeft/12_f.svg", + "staticwebassets/icons/ArrowCircleLeft/12_r.svg", + "staticwebassets/icons/ArrowCircleLeft/16_f.svg", + "staticwebassets/icons/ArrowCircleLeft/16_r.svg", + "staticwebassets/icons/ArrowCircleLeft/20_f.svg", + "staticwebassets/icons/ArrowCircleLeft/20_r.svg", + "staticwebassets/icons/ArrowCircleLeft/24_f.svg", + "staticwebassets/icons/ArrowCircleLeft/24_r.svg", + "staticwebassets/icons/ArrowCircleLeft/28_f.svg", + "staticwebassets/icons/ArrowCircleLeft/28_r.svg", + "staticwebassets/icons/ArrowCircleLeft/32_f.svg", + "staticwebassets/icons/ArrowCircleLeft/32_r.svg", + "staticwebassets/icons/ArrowCircleLeft/48_f.svg", + "staticwebassets/icons/ArrowCircleLeft/48_r.svg", + "staticwebassets/icons/ArrowCircleRight/12_f.svg", + "staticwebassets/icons/ArrowCircleRight/12_r.svg", + "staticwebassets/icons/ArrowCircleRight/16_f.svg", + "staticwebassets/icons/ArrowCircleRight/16_r.svg", + "staticwebassets/icons/ArrowCircleRight/20_f.svg", + "staticwebassets/icons/ArrowCircleRight/20_r.svg", + "staticwebassets/icons/ArrowCircleRight/24_f.svg", + "staticwebassets/icons/ArrowCircleRight/24_r.svg", + "staticwebassets/icons/ArrowCircleRight/28_f.svg", + "staticwebassets/icons/ArrowCircleRight/28_r.svg", + "staticwebassets/icons/ArrowCircleRight/32_f.svg", + "staticwebassets/icons/ArrowCircleRight/32_r.svg", + "staticwebassets/icons/ArrowCircleRight/48_f.svg", + "staticwebassets/icons/ArrowCircleRight/48_r.svg", + "staticwebassets/icons/ArrowCircleUp/12_f.svg", + "staticwebassets/icons/ArrowCircleUp/12_r.svg", + "staticwebassets/icons/ArrowCircleUp/16_f.svg", + "staticwebassets/icons/ArrowCircleUp/16_r.svg", + "staticwebassets/icons/ArrowCircleUp/20_f.svg", + "staticwebassets/icons/ArrowCircleUp/20_r.svg", + "staticwebassets/icons/ArrowCircleUp/24_f.svg", + "staticwebassets/icons/ArrowCircleUp/24_r.svg", + "staticwebassets/icons/ArrowCircleUp/28_f.svg", + "staticwebassets/icons/ArrowCircleUp/28_r.svg", + "staticwebassets/icons/ArrowCircleUp/32_f.svg", + "staticwebassets/icons/ArrowCircleUp/32_r.svg", + "staticwebassets/icons/ArrowCircleUp/48_f.svg", + "staticwebassets/icons/ArrowCircleUp/48_r.svg", + "staticwebassets/icons/ArrowCircleUpLeft/20_f.svg", + "staticwebassets/icons/ArrowCircleUpLeft/20_r.svg", + "staticwebassets/icons/ArrowCircleUpLeft/24_f.svg", + "staticwebassets/icons/ArrowCircleUpLeft/24_r.svg", + "staticwebassets/icons/ArrowCircleUpRight/20_f.svg", + "staticwebassets/icons/ArrowCircleUpRight/20_r.svg", + "staticwebassets/icons/ArrowCircleUpRight/24_f.svg", + "staticwebassets/icons/ArrowCircleUpRight/24_r.svg", + "staticwebassets/icons/ArrowClockwise/12_f.svg", + "staticwebassets/icons/ArrowClockwise/12_r.svg", + "staticwebassets/icons/ArrowClockwise/16_f.svg", + "staticwebassets/icons/ArrowClockwise/16_r.svg", + "staticwebassets/icons/ArrowClockwise/20_f.svg", + "staticwebassets/icons/ArrowClockwise/20_r.svg", + "staticwebassets/icons/ArrowClockwise/24_f.svg", + "staticwebassets/icons/ArrowClockwise/24_r.svg", + "staticwebassets/icons/ArrowClockwise/28_f.svg", + "staticwebassets/icons/ArrowClockwise/28_r.svg", + "staticwebassets/icons/ArrowClockwise/32_f.svg", + "staticwebassets/icons/ArrowClockwise/32_r.svg", + "staticwebassets/icons/ArrowClockwise/48_f.svg", + "staticwebassets/icons/ArrowClockwise/48_r.svg", + "staticwebassets/icons/ArrowClockwiseDashes/20_f.svg", + "staticwebassets/icons/ArrowClockwiseDashes/20_r.svg", + "staticwebassets/icons/ArrowClockwiseDashes/24_f.svg", + "staticwebassets/icons/ArrowClockwiseDashes/24_r.svg", + "staticwebassets/icons/ArrowCollapseAll/20_f.svg", + "staticwebassets/icons/ArrowCollapseAll/20_r.svg", + "staticwebassets/icons/ArrowCollapseAll/24_f.svg", + "staticwebassets/icons/ArrowCollapseAll/24_r.svg", + "staticwebassets/icons/ArrowCounterclockwise/12_f.svg", + "staticwebassets/icons/ArrowCounterclockwise/12_r.svg", + "staticwebassets/icons/ArrowCounterclockwise/16_f.svg", + "staticwebassets/icons/ArrowCounterclockwise/16_r.svg", + "staticwebassets/icons/ArrowCounterclockwise/20_f.svg", + "staticwebassets/icons/ArrowCounterclockwise/20_r.svg", + "staticwebassets/icons/ArrowCounterclockwise/24_f.svg", + "staticwebassets/icons/ArrowCounterclockwise/24_r.svg", + "staticwebassets/icons/ArrowCounterclockwise/28_f.svg", + "staticwebassets/icons/ArrowCounterclockwise/28_r.svg", + "staticwebassets/icons/ArrowCounterclockwise/32_f.svg", + "staticwebassets/icons/ArrowCounterclockwise/32_r.svg", + "staticwebassets/icons/ArrowCounterclockwise/48_f.svg", + "staticwebassets/icons/ArrowCounterclockwise/48_r.svg", + "staticwebassets/icons/ArrowCounterclockwiseDashes/20_f.svg", + "staticwebassets/icons/ArrowCounterclockwiseDashes/20_r.svg", + "staticwebassets/icons/ArrowCounterclockwiseDashes/24_f.svg", + "staticwebassets/icons/ArrowCounterclockwiseDashes/24_r.svg", + "staticwebassets/icons/ArrowCurveDownLeft/16_f.svg", + "staticwebassets/icons/ArrowCurveDownLeft/16_r.svg", + "staticwebassets/icons/ArrowCurveDownLeft/20_f.svg", + "staticwebassets/icons/ArrowCurveDownLeft/20_r.svg", + "staticwebassets/icons/ArrowCurveDownLeft/24_f.svg", + "staticwebassets/icons/ArrowCurveDownLeft/24_r.svg", + "staticwebassets/icons/ArrowCurveDownLeft/28_f.svg", + "staticwebassets/icons/ArrowCurveDownLeft/28_r.svg", + "staticwebassets/icons/ArrowCurveDownRight/20_f.svg", + "staticwebassets/icons/ArrowCurveDownRight/20_r.svg", + "staticwebassets/icons/ArrowCurveUpLeft/20_f.svg", + "staticwebassets/icons/ArrowCurveUpLeft/20_r.svg", + "staticwebassets/icons/ArrowCurveUpRight/20_f.svg", + "staticwebassets/icons/ArrowCurveUpRight/20_r.svg", + "staticwebassets/icons/ArrowDown/12_f.svg", + "staticwebassets/icons/ArrowDown/12_r.svg", + "staticwebassets/icons/ArrowDown/16_f.svg", + "staticwebassets/icons/ArrowDown/16_r.svg", + "staticwebassets/icons/ArrowDown/20_f.svg", + "staticwebassets/icons/ArrowDown/20_r.svg", + "staticwebassets/icons/ArrowDown/24_f.svg", + "staticwebassets/icons/ArrowDown/24_r.svg", + "staticwebassets/icons/ArrowDown/28_f.svg", + "staticwebassets/icons/ArrowDown/28_r.svg", + "staticwebassets/icons/ArrowDown/32_f.svg", + "staticwebassets/icons/ArrowDown/32_r.svg", + "staticwebassets/icons/ArrowDown/48_f.svg", + "staticwebassets/icons/ArrowDown/48_r.svg", + "staticwebassets/icons/ArrowDownLeft/16_f.svg", + "staticwebassets/icons/ArrowDownLeft/16_r.svg", + "staticwebassets/icons/ArrowDownLeft/20_f.svg", + "staticwebassets/icons/ArrowDownLeft/20_r.svg", + "staticwebassets/icons/ArrowDownLeft/24_f.svg", + "staticwebassets/icons/ArrowDownLeft/24_r.svg", + "staticwebassets/icons/ArrowDownLeft/32_f.svg", + "staticwebassets/icons/ArrowDownLeft/32_r.svg", + "staticwebassets/icons/ArrowDownLeft/48_f.svg", + "staticwebassets/icons/ArrowDownLeft/48_r.svg", + "staticwebassets/icons/ArrowDownload/16_f.svg", + "staticwebassets/icons/ArrowDownload/16_r.svg", + "staticwebassets/icons/ArrowDownload/20_f.svg", + "staticwebassets/icons/ArrowDownload/20_r.svg", + "staticwebassets/icons/ArrowDownload/24_f.svg", + "staticwebassets/icons/ArrowDownload/24_r.svg", + "staticwebassets/icons/ArrowDownload/48_f.svg", + "staticwebassets/icons/ArrowDownload/48_r.svg", + "staticwebassets/icons/ArrowEject/20_f.svg", + "staticwebassets/icons/ArrowEject/20_r.svg", + "staticwebassets/icons/ArrowEnter/16_f.svg", + "staticwebassets/icons/ArrowEnter/16_r.svg", + "staticwebassets/icons/ArrowEnter/20_f.svg", + "staticwebassets/icons/ArrowEnter/20_r.svg", + "staticwebassets/icons/ArrowEnterLeft/20_f.svg", + "staticwebassets/icons/ArrowEnterLeft/20_r.svg", + "staticwebassets/icons/ArrowEnterLeft/24_f.svg", + "staticwebassets/icons/ArrowEnterLeft/24_r.svg", + "staticwebassets/icons/ArrowEnterUp/20_f.svg", + "staticwebassets/icons/ArrowEnterUp/20_r.svg", + "staticwebassets/icons/ArrowEnterUp/24_f.svg", + "staticwebassets/icons/ArrowEnterUp/24_r.svg", + "staticwebassets/icons/ArrowExit/20_f.svg", + "staticwebassets/icons/ArrowExit/20_r.svg", + "staticwebassets/icons/ArrowExpand/20_f.svg", + "staticwebassets/icons/ArrowExpand/20_r.svg", + "staticwebassets/icons/ArrowExpand/24_f.svg", + "staticwebassets/icons/ArrowExpand/24_r.svg", + "staticwebassets/icons/ArrowExportLTR/16_f.svg", + "staticwebassets/icons/ArrowExportLTR/16_r.svg", + "staticwebassets/icons/ArrowExportLTR/20_f.svg", + "staticwebassets/icons/ArrowExportLTR/20_r.svg", + "staticwebassets/icons/ArrowExportLTR/24_f.svg", + "staticwebassets/icons/ArrowExportLTR/24_r.svg", + "staticwebassets/icons/ArrowExportRTL/16_f.svg", + "staticwebassets/icons/ArrowExportRTL/16_r.svg", + "staticwebassets/icons/ArrowExportRTL/20_f.svg", + "staticwebassets/icons/ArrowExportRTL/20_r.svg", + "staticwebassets/icons/ArrowExportRTL/24_f.svg", + "staticwebassets/icons/ArrowExportRTL/24_r.svg", + "staticwebassets/icons/ArrowExportUp/20_f.svg", + "staticwebassets/icons/ArrowExportUp/20_r.svg", + "staticwebassets/icons/ArrowExportUp/24_f.svg", + "staticwebassets/icons/ArrowExportUp/24_r.svg", + "staticwebassets/icons/ArrowFit/16_f.svg", + "staticwebassets/icons/ArrowFit/16_r.svg", + "staticwebassets/icons/ArrowFit/20_f.svg", + "staticwebassets/icons/ArrowFit/20_r.svg", + "staticwebassets/icons/ArrowFitIn/16_f.svg", + "staticwebassets/icons/ArrowFitIn/16_r.svg", + "staticwebassets/icons/ArrowFitIn/20_f.svg", + "staticwebassets/icons/ArrowFitIn/20_r.svg", + "staticwebassets/icons/ArrowForward/16_f.svg", + "staticwebassets/icons/ArrowForward/16_r.svg", + "staticwebassets/icons/ArrowForward/20_f.svg", + "staticwebassets/icons/ArrowForward/20_r.svg", + "staticwebassets/icons/ArrowForward/24_f.svg", + "staticwebassets/icons/ArrowForward/24_r.svg", + "staticwebassets/icons/ArrowForward/28_f.svg", + "staticwebassets/icons/ArrowForward/28_r.svg", + "staticwebassets/icons/ArrowForward/48_f.svg", + "staticwebassets/icons/ArrowForward/48_r.svg", + "staticwebassets/icons/ArrowForwardDownLightning/20_f.svg", + "staticwebassets/icons/ArrowForwardDownLightning/20_r.svg", + "staticwebassets/icons/ArrowForwardDownLightning/24_f.svg", + "staticwebassets/icons/ArrowForwardDownLightning/24_r.svg", + "staticwebassets/icons/ArrowForwardDownPerson/20_f.svg", + "staticwebassets/icons/ArrowForwardDownPerson/20_r.svg", + "staticwebassets/icons/ArrowForwardDownPerson/24_f.svg", + "staticwebassets/icons/ArrowForwardDownPerson/24_r.svg", + "staticwebassets/icons/ArrowHookDownLeft/16_f.svg", + "staticwebassets/icons/ArrowHookDownLeft/16_r.svg", + "staticwebassets/icons/ArrowHookDownLeft/20_f.svg", + "staticwebassets/icons/ArrowHookDownLeft/20_r.svg", + "staticwebassets/icons/ArrowHookDownLeft/24_f.svg", + "staticwebassets/icons/ArrowHookDownLeft/24_r.svg", + "staticwebassets/icons/ArrowHookDownLeft/28_f.svg", + "staticwebassets/icons/ArrowHookDownLeft/28_r.svg", + "staticwebassets/icons/ArrowHookDownRight/16_f.svg", + "staticwebassets/icons/ArrowHookDownRight/16_r.svg", + "staticwebassets/icons/ArrowHookDownRight/20_f.svg", + "staticwebassets/icons/ArrowHookDownRight/20_r.svg", + "staticwebassets/icons/ArrowHookDownRight/24_f.svg", + "staticwebassets/icons/ArrowHookDownRight/24_r.svg", + "staticwebassets/icons/ArrowHookDownRight/28_f.svg", + "staticwebassets/icons/ArrowHookDownRight/28_r.svg", + "staticwebassets/icons/ArrowHookUpLeft/16_f.svg", + "staticwebassets/icons/ArrowHookUpLeft/16_r.svg", + "staticwebassets/icons/ArrowHookUpLeft/20_f.svg", + "staticwebassets/icons/ArrowHookUpLeft/20_r.svg", + "staticwebassets/icons/ArrowHookUpLeft/24_f.svg", + "staticwebassets/icons/ArrowHookUpLeft/24_r.svg", + "staticwebassets/icons/ArrowHookUpLeft/28_f.svg", + "staticwebassets/icons/ArrowHookUpLeft/28_r.svg", + "staticwebassets/icons/ArrowHookUpRight/16_f.svg", + "staticwebassets/icons/ArrowHookUpRight/16_r.svg", + "staticwebassets/icons/ArrowHookUpRight/20_f.svg", + "staticwebassets/icons/ArrowHookUpRight/20_r.svg", + "staticwebassets/icons/ArrowHookUpRight/24_f.svg", + "staticwebassets/icons/ArrowHookUpRight/24_r.svg", + "staticwebassets/icons/ArrowHookUpRight/28_f.svg", + "staticwebassets/icons/ArrowHookUpRight/28_r.svg", + "staticwebassets/icons/ArrowImport/20_f.svg", + "staticwebassets/icons/ArrowImport/20_r.svg", + "staticwebassets/icons/ArrowImport/24_f.svg", + "staticwebassets/icons/ArrowImport/24_r.svg", + "staticwebassets/icons/ArrowJoin/20_f.svg", + "staticwebassets/icons/ArrowJoin/20_r.svg", + "staticwebassets/icons/ArrowLeft/12_f.svg", + "staticwebassets/icons/ArrowLeft/12_r.svg", + "staticwebassets/icons/ArrowLeft/16_f.svg", + "staticwebassets/icons/ArrowLeft/16_r.svg", + "staticwebassets/icons/ArrowLeft/20_f.svg", + "staticwebassets/icons/ArrowLeft/20_r.svg", + "staticwebassets/icons/ArrowLeft/24_f.svg", + "staticwebassets/icons/ArrowLeft/24_r.svg", + "staticwebassets/icons/ArrowLeft/28_f.svg", + "staticwebassets/icons/ArrowLeft/28_r.svg", + "staticwebassets/icons/ArrowLeft/32_f.svg", + "staticwebassets/icons/ArrowLeft/32_r.svg", + "staticwebassets/icons/ArrowLeft/48_f.svg", + "staticwebassets/icons/ArrowLeft/48_r.svg", + "staticwebassets/icons/ArrowMaximize/16_f.svg", + "staticwebassets/icons/ArrowMaximize/16_r.svg", + "staticwebassets/icons/ArrowMaximize/20_f.svg", + "staticwebassets/icons/ArrowMaximize/20_r.svg", + "staticwebassets/icons/ArrowMaximize/24_f.svg", + "staticwebassets/icons/ArrowMaximize/24_r.svg", + "staticwebassets/icons/ArrowMaximize/28_f.svg", + "staticwebassets/icons/ArrowMaximize/28_r.svg", + "staticwebassets/icons/ArrowMaximize/32_f.svg", + "staticwebassets/icons/ArrowMaximize/32_r.svg", + "staticwebassets/icons/ArrowMaximize/48_f.svg", + "staticwebassets/icons/ArrowMaximize/48_r.svg", + "staticwebassets/icons/ArrowMaximizeVertical/20_f.svg", + "staticwebassets/icons/ArrowMaximizeVertical/20_r.svg", + "staticwebassets/icons/ArrowMaximizeVertical/24_f.svg", + "staticwebassets/icons/ArrowMaximizeVertical/24_r.svg", + "staticwebassets/icons/ArrowMaximizeVertical/48_f.svg", + "staticwebassets/icons/ArrowMaximizeVertical/48_r.svg", + "staticwebassets/icons/ArrowMinimize/16_f.svg", + "staticwebassets/icons/ArrowMinimize/16_r.svg", + "staticwebassets/icons/ArrowMinimize/20_f.svg", + "staticwebassets/icons/ArrowMinimize/20_r.svg", + "staticwebassets/icons/ArrowMinimize/24_f.svg", + "staticwebassets/icons/ArrowMinimize/24_r.svg", + "staticwebassets/icons/ArrowMinimize/28_f.svg", + "staticwebassets/icons/ArrowMinimize/28_r.svg", + "staticwebassets/icons/ArrowMinimizeVertical/20_f.svg", + "staticwebassets/icons/ArrowMinimizeVertical/20_r.svg", + "staticwebassets/icons/ArrowMinimizeVertical/24_f.svg", + "staticwebassets/icons/ArrowMinimizeVertical/24_r.svg", + "staticwebassets/icons/ArrowMove/20_f.svg", + "staticwebassets/icons/ArrowMove/20_r.svg", + "staticwebassets/icons/ArrowMove/24_f.svg", + "staticwebassets/icons/ArrowMove/24_r.svg", + "staticwebassets/icons/ArrowMoveInward/20_f.svg", + "staticwebassets/icons/ArrowMoveInward/20_r.svg", + "staticwebassets/icons/ArrowNext/12_f.svg", + "staticwebassets/icons/ArrowNext/12_r.svg", + "staticwebassets/icons/ArrowNext/16_f.svg", + "staticwebassets/icons/ArrowNext/16_r.svg", + "staticwebassets/icons/ArrowNext/20_f.svg", + "staticwebassets/icons/ArrowNext/20_r.svg", + "staticwebassets/icons/ArrowNext/24_f.svg", + "staticwebassets/icons/ArrowNext/24_r.svg", + "staticwebassets/icons/ArrowOutlineUpRight/20_f.svg", + "staticwebassets/icons/ArrowOutlineUpRight/20_r.svg", + "staticwebassets/icons/ArrowOutlineUpRight/24_f.svg", + "staticwebassets/icons/ArrowOutlineUpRight/24_r.svg", + "staticwebassets/icons/ArrowOutlineUpRight/32_f.svg", + "staticwebassets/icons/ArrowOutlineUpRight/32_r.svg", + "staticwebassets/icons/ArrowOutlineUpRight/48_f.svg", + "staticwebassets/icons/ArrowOutlineUpRight/48_r.svg", + "staticwebassets/icons/ArrowParagraph/16_f.svg", + "staticwebassets/icons/ArrowParagraph/16_r.svg", + "staticwebassets/icons/ArrowParagraph/20_f.svg", + "staticwebassets/icons/ArrowParagraph/20_r.svg", + "staticwebassets/icons/ArrowParagraph/24_f.svg", + "staticwebassets/icons/ArrowParagraph/24_r.svg", + "staticwebassets/icons/ArrowPrevious/12_f.svg", + "staticwebassets/icons/ArrowPrevious/12_r.svg", + "staticwebassets/icons/ArrowPrevious/16_f.svg", + "staticwebassets/icons/ArrowPrevious/16_r.svg", + "staticwebassets/icons/ArrowPrevious/20_f.svg", + "staticwebassets/icons/ArrowPrevious/20_r.svg", + "staticwebassets/icons/ArrowPrevious/24_f.svg", + "staticwebassets/icons/ArrowPrevious/24_r.svg", + "staticwebassets/icons/ArrowRedo/16_f.svg", + "staticwebassets/icons/ArrowRedo/16_r.svg", + "staticwebassets/icons/ArrowRedo/20_f.svg", + "staticwebassets/icons/ArrowRedo/20_r.svg", + "staticwebassets/icons/ArrowRedo/24_f.svg", + "staticwebassets/icons/ArrowRedo/24_r.svg", + "staticwebassets/icons/ArrowRedo/28_f.svg", + "staticwebassets/icons/ArrowRedo/28_r.svg", + "staticwebassets/icons/ArrowRedo/32_f.svg", + "staticwebassets/icons/ArrowRedo/32_r.svg", + "staticwebassets/icons/ArrowRedo/48_f.svg", + "staticwebassets/icons/ArrowRedo/48_r.svg", + "staticwebassets/icons/ArrowRedoTempLTR/16_f.svg", + "staticwebassets/icons/ArrowRedoTempLTR/16_r.svg", + "staticwebassets/icons/ArrowRedoTempLTR/20_f.svg", + "staticwebassets/icons/ArrowRedoTempLTR/20_r.svg", + "staticwebassets/icons/ArrowRedoTempLTR/24_f.svg", + "staticwebassets/icons/ArrowRedoTempLTR/24_r.svg", + "staticwebassets/icons/ArrowRedoTempLTR/28_f.svg", + "staticwebassets/icons/ArrowRedoTempLTR/28_r.svg", + "staticwebassets/icons/ArrowRedoTempLTR/32_f.svg", + "staticwebassets/icons/ArrowRedoTempLTR/32_r.svg", + "staticwebassets/icons/ArrowRedoTempLTR/48_f.svg", + "staticwebassets/icons/ArrowRedoTempLTR/48_r.svg", + "staticwebassets/icons/ArrowRedoTempRTL/16_f.svg", + "staticwebassets/icons/ArrowRedoTempRTL/16_r.svg", + "staticwebassets/icons/ArrowRedoTempRTL/20_f.svg", + "staticwebassets/icons/ArrowRedoTempRTL/20_r.svg", + "staticwebassets/icons/ArrowRedoTempRTL/24_f.svg", + "staticwebassets/icons/ArrowRedoTempRTL/24_r.svg", + "staticwebassets/icons/ArrowRedoTempRTL/28_f.svg", + "staticwebassets/icons/ArrowRedoTempRTL/28_r.svg", + "staticwebassets/icons/ArrowRedoTempRTL/32_f.svg", + "staticwebassets/icons/ArrowRedoTempRTL/32_r.svg", + "staticwebassets/icons/ArrowRedoTempRTL/48_f.svg", + "staticwebassets/icons/ArrowRedoTempRTL/48_r.svg", + "staticwebassets/icons/ArrowRepeat1/16_f.svg", + "staticwebassets/icons/ArrowRepeat1/16_r.svg", + "staticwebassets/icons/ArrowRepeat1/20_f.svg", + "staticwebassets/icons/ArrowRepeat1/20_r.svg", + "staticwebassets/icons/ArrowRepeat1/24_f.svg", + "staticwebassets/icons/ArrowRepeat1/24_r.svg", + "staticwebassets/icons/ArrowRepeatAll/16_f.svg", + "staticwebassets/icons/ArrowRepeatAll/16_r.svg", + "staticwebassets/icons/ArrowRepeatAll/20_f.svg", + "staticwebassets/icons/ArrowRepeatAll/20_r.svg", + "staticwebassets/icons/ArrowRepeatAll/24_f.svg", + "staticwebassets/icons/ArrowRepeatAll/24_r.svg", + "staticwebassets/icons/ArrowRepeatAllOff/16_f.svg", + "staticwebassets/icons/ArrowRepeatAllOff/16_r.svg", + "staticwebassets/icons/ArrowRepeatAllOff/20_f.svg", + "staticwebassets/icons/ArrowRepeatAllOff/20_r.svg", + "staticwebassets/icons/ArrowRepeatAllOff/24_f.svg", + "staticwebassets/icons/ArrowRepeatAllOff/24_r.svg", + "staticwebassets/icons/ArrowReply/16_f.svg", + "staticwebassets/icons/ArrowReply/16_r.svg", + "staticwebassets/icons/ArrowReply/20_f.svg", + "staticwebassets/icons/ArrowReply/20_r.svg", + "staticwebassets/icons/ArrowReply/24_f.svg", + "staticwebassets/icons/ArrowReply/24_r.svg", + "staticwebassets/icons/ArrowReply/28_f.svg", + "staticwebassets/icons/ArrowReply/28_r.svg", + "staticwebassets/icons/ArrowReply/48_f.svg", + "staticwebassets/icons/ArrowReply/48_r.svg", + "staticwebassets/icons/ArrowReplyAll/16_f.svg", + "staticwebassets/icons/ArrowReplyAll/16_r.svg", + "staticwebassets/icons/ArrowReplyAll/20_f.svg", + "staticwebassets/icons/ArrowReplyAll/20_r.svg", + "staticwebassets/icons/ArrowReplyAll/24_f.svg", + "staticwebassets/icons/ArrowReplyAll/24_r.svg", + "staticwebassets/icons/ArrowReplyAll/28_f.svg", + "staticwebassets/icons/ArrowReplyAll/28_r.svg", + "staticwebassets/icons/ArrowReplyAll/48_f.svg", + "staticwebassets/icons/ArrowReplyAll/48_r.svg", + "staticwebassets/icons/ArrowReplyDown/16_f.svg", + "staticwebassets/icons/ArrowReplyDown/16_r.svg", + "staticwebassets/icons/ArrowReplyDown/20_f.svg", + "staticwebassets/icons/ArrowReplyDown/20_r.svg", + "staticwebassets/icons/ArrowReplyDown/24_f.svg", + "staticwebassets/icons/ArrowReplyDown/24_r.svg", + "staticwebassets/icons/ArrowReset/20_f.svg", + "staticwebassets/icons/ArrowReset/20_r.svg", + "staticwebassets/icons/ArrowReset/24_f.svg", + "staticwebassets/icons/ArrowReset/24_r.svg", + "staticwebassets/icons/ArrowReset/32_f.svg", + "staticwebassets/icons/ArrowReset/32_r.svg", + "staticwebassets/icons/ArrowReset/48_f.svg", + "staticwebassets/icons/ArrowReset/48_r.svg", + "staticwebassets/icons/ArrowRight/12_f.svg", + "staticwebassets/icons/ArrowRight/12_r.svg", + "staticwebassets/icons/ArrowRight/16_f.svg", + "staticwebassets/icons/ArrowRight/16_r.svg", + "staticwebassets/icons/ArrowRight/20_f.svg", + "staticwebassets/icons/ArrowRight/20_r.svg", + "staticwebassets/icons/ArrowRight/24_f.svg", + "staticwebassets/icons/ArrowRight/24_r.svg", + "staticwebassets/icons/ArrowRight/28_f.svg", + "staticwebassets/icons/ArrowRight/28_r.svg", + "staticwebassets/icons/ArrowRight/32_f.svg", + "staticwebassets/icons/ArrowRight/32_r.svg", + "staticwebassets/icons/ArrowRight/48_f.svg", + "staticwebassets/icons/ArrowRight/48_r.svg", + "staticwebassets/icons/ArrowRotateClockwise/16_f.svg", + "staticwebassets/icons/ArrowRotateClockwise/16_r.svg", + "staticwebassets/icons/ArrowRotateClockwise/20_f.svg", + "staticwebassets/icons/ArrowRotateClockwise/20_r.svg", + "staticwebassets/icons/ArrowRotateClockwise/24_f.svg", + "staticwebassets/icons/ArrowRotateClockwise/24_r.svg", + "staticwebassets/icons/ArrowRotateCounterclockwise/20_f.svg", + "staticwebassets/icons/ArrowRotateCounterclockwise/20_r.svg", + "staticwebassets/icons/ArrowRotateCounterclockwise/24_f.svg", + "staticwebassets/icons/ArrowRotateCounterclockwise/24_r.svg", + "staticwebassets/icons/ArrowRouting/20_f.svg", + "staticwebassets/icons/ArrowRouting/20_r.svg", + "staticwebassets/icons/ArrowRouting/24_f.svg", + "staticwebassets/icons/ArrowRouting/24_r.svg", + "staticwebassets/icons/ArrowRoutingRectangleMultiple/20_f.svg", + "staticwebassets/icons/ArrowRoutingRectangleMultiple/20_r.svg", + "staticwebassets/icons/ArrowRoutingRectangleMultiple/24_f.svg", + "staticwebassets/icons/ArrowRoutingRectangleMultiple/24_r.svg", + "staticwebassets/icons/ArrowShuffle/16_f.svg", + "staticwebassets/icons/ArrowShuffle/16_r.svg", + "staticwebassets/icons/ArrowShuffle/20_f.svg", + "staticwebassets/icons/ArrowShuffle/20_r.svg", + "staticwebassets/icons/ArrowShuffle/24_f.svg", + "staticwebassets/icons/ArrowShuffle/24_r.svg", + "staticwebassets/icons/ArrowShuffle/28_f.svg", + "staticwebassets/icons/ArrowShuffle/28_r.svg", + "staticwebassets/icons/ArrowShuffle/32_f.svg", + "staticwebassets/icons/ArrowShuffle/32_r.svg", + "staticwebassets/icons/ArrowShuffle/48_f.svg", + "staticwebassets/icons/ArrowShuffle/48_r.svg", + "staticwebassets/icons/ArrowShuffleOff/16_f.svg", + "staticwebassets/icons/ArrowShuffleOff/16_r.svg", + "staticwebassets/icons/ArrowShuffleOff/20_f.svg", + "staticwebassets/icons/ArrowShuffleOff/20_r.svg", + "staticwebassets/icons/ArrowShuffleOff/24_f.svg", + "staticwebassets/icons/ArrowShuffleOff/24_r.svg", + "staticwebassets/icons/ArrowShuffleOff/28_f.svg", + "staticwebassets/icons/ArrowShuffleOff/28_r.svg", + "staticwebassets/icons/ArrowShuffleOff/32_f.svg", + "staticwebassets/icons/ArrowShuffleOff/32_r.svg", + "staticwebassets/icons/ArrowShuffleOff/48_f.svg", + "staticwebassets/icons/ArrowShuffleOff/48_r.svg", + "staticwebassets/icons/ArrowSort/16_f.svg", + "staticwebassets/icons/ArrowSort/16_r.svg", + "staticwebassets/icons/ArrowSort/20_f.svg", + "staticwebassets/icons/ArrowSort/20_r.svg", + "staticwebassets/icons/ArrowSort/24_f.svg", + "staticwebassets/icons/ArrowSort/24_r.svg", + "staticwebassets/icons/ArrowSort/28_f.svg", + "staticwebassets/icons/ArrowSort/28_r.svg", + "staticwebassets/icons/ArrowSortDown/16_f.svg", + "staticwebassets/icons/ArrowSortDown/16_r.svg", + "staticwebassets/icons/ArrowSortDown/20_f.svg", + "staticwebassets/icons/ArrowSortDown/20_r.svg", + "staticwebassets/icons/ArrowSortDown/24_f.svg", + "staticwebassets/icons/ArrowSortDown/24_r.svg", + "staticwebassets/icons/ArrowSortDownLines/16_f.svg", + "staticwebassets/icons/ArrowSortDownLines/16_r.svg", + "staticwebassets/icons/ArrowSortDownLines/20_f.svg", + "staticwebassets/icons/ArrowSortDownLines/20_r.svg", + "staticwebassets/icons/ArrowSortDownLines/24_f.svg", + "staticwebassets/icons/ArrowSortDownLines/24_r.svg", + "staticwebassets/icons/ArrowSortUp/16_f.svg", + "staticwebassets/icons/ArrowSortUp/16_r.svg", + "staticwebassets/icons/ArrowSortUp/20_f.svg", + "staticwebassets/icons/ArrowSortUp/20_r.svg", + "staticwebassets/icons/ArrowSortUp/24_f.svg", + "staticwebassets/icons/ArrowSortUp/24_r.svg", + "staticwebassets/icons/ArrowSplit/16_f.svg", + "staticwebassets/icons/ArrowSplit/16_r.svg", + "staticwebassets/icons/ArrowSplit/20_f.svg", + "staticwebassets/icons/ArrowSplit/20_r.svg", + "staticwebassets/icons/ArrowSplit/24_f.svg", + "staticwebassets/icons/ArrowSplit/24_r.svg", + "staticwebassets/icons/ArrowSprint/16_f.svg", + "staticwebassets/icons/ArrowSprint/16_r.svg", + "staticwebassets/icons/ArrowSprint/20_f.svg", + "staticwebassets/icons/ArrowSprint/20_r.svg", + "staticwebassets/icons/ArrowSquareDown/20_f.svg", + "staticwebassets/icons/ArrowSquareDown/20_r.svg", + "staticwebassets/icons/ArrowSquareDown/24_f.svg", + "staticwebassets/icons/ArrowSquareDown/24_r.svg", + "staticwebassets/icons/ArrowStepBack/16_f.svg", + "staticwebassets/icons/ArrowStepBack/16_r.svg", + "staticwebassets/icons/ArrowStepBack/20_f.svg", + "staticwebassets/icons/ArrowStepBack/20_r.svg", + "staticwebassets/icons/ArrowStepIn/12_f.svg", + "staticwebassets/icons/ArrowStepIn/12_r.svg", + "staticwebassets/icons/ArrowStepIn/16_f.svg", + "staticwebassets/icons/ArrowStepIn/16_r.svg", + "staticwebassets/icons/ArrowStepIn/20_f.svg", + "staticwebassets/icons/ArrowStepIn/20_r.svg", + "staticwebassets/icons/ArrowStepIn/24_f.svg", + "staticwebassets/icons/ArrowStepIn/24_r.svg", + "staticwebassets/icons/ArrowStepIn/28_f.svg", + "staticwebassets/icons/ArrowStepIn/28_r.svg", + "staticwebassets/icons/ArrowStepInLeft/12_f.svg", + "staticwebassets/icons/ArrowStepInLeft/12_r.svg", + "staticwebassets/icons/ArrowStepInLeft/16_f.svg", + "staticwebassets/icons/ArrowStepInLeft/16_r.svg", + "staticwebassets/icons/ArrowStepInLeft/20_f.svg", + "staticwebassets/icons/ArrowStepInLeft/20_r.svg", + "staticwebassets/icons/ArrowStepInLeft/24_f.svg", + "staticwebassets/icons/ArrowStepInLeft/24_r.svg", + "staticwebassets/icons/ArrowStepInLeft/28_f.svg", + "staticwebassets/icons/ArrowStepInLeft/28_r.svg", + "staticwebassets/icons/ArrowStepInRight/12_f.svg", + "staticwebassets/icons/ArrowStepInRight/12_r.svg", + "staticwebassets/icons/ArrowStepInRight/16_f.svg", + "staticwebassets/icons/ArrowStepInRight/16_r.svg", + "staticwebassets/icons/ArrowStepInRight/20_f.svg", + "staticwebassets/icons/ArrowStepInRight/20_r.svg", + "staticwebassets/icons/ArrowStepInRight/24_f.svg", + "staticwebassets/icons/ArrowStepInRight/24_r.svg", + "staticwebassets/icons/ArrowStepInRight/28_f.svg", + "staticwebassets/icons/ArrowStepInRight/28_r.svg", + "staticwebassets/icons/ArrowStepOut/12_f.svg", + "staticwebassets/icons/ArrowStepOut/12_r.svg", + "staticwebassets/icons/ArrowStepOut/16_f.svg", + "staticwebassets/icons/ArrowStepOut/16_r.svg", + "staticwebassets/icons/ArrowStepOut/20_f.svg", + "staticwebassets/icons/ArrowStepOut/20_r.svg", + "staticwebassets/icons/ArrowStepOut/24_f.svg", + "staticwebassets/icons/ArrowStepOut/24_r.svg", + "staticwebassets/icons/ArrowStepOut/28_f.svg", + "staticwebassets/icons/ArrowStepOut/28_r.svg", + "staticwebassets/icons/ArrowStepOver/16_f.svg", + "staticwebassets/icons/ArrowStepOver/16_r.svg", + "staticwebassets/icons/ArrowStepOver/20_f.svg", + "staticwebassets/icons/ArrowStepOver/20_r.svg", + "staticwebassets/icons/ArrowSwap/20_f.svg", + "staticwebassets/icons/ArrowSwap/20_r.svg", + "staticwebassets/icons/ArrowSwap/24_f.svg", + "staticwebassets/icons/ArrowSwap/24_r.svg", + "staticwebassets/icons/ArrowSync/12_f.svg", + "staticwebassets/icons/ArrowSync/12_r.svg", + "staticwebassets/icons/ArrowSync/16_f.svg", + "staticwebassets/icons/ArrowSync/16_r.svg", + "staticwebassets/icons/ArrowSync/20_f.svg", + "staticwebassets/icons/ArrowSync/20_r.svg", + "staticwebassets/icons/ArrowSync/24_f.svg", + "staticwebassets/icons/ArrowSync/24_r.svg", + "staticwebassets/icons/ArrowSyncCheckmark/20_f.svg", + "staticwebassets/icons/ArrowSyncCheckmark/20_r.svg", + "staticwebassets/icons/ArrowSyncCheckmark/24_f.svg", + "staticwebassets/icons/ArrowSyncCheckmark/24_r.svg", + "staticwebassets/icons/ArrowSyncCircle/16_f.svg", + "staticwebassets/icons/ArrowSyncCircle/16_r.svg", + "staticwebassets/icons/ArrowSyncCircle/20_f.svg", + "staticwebassets/icons/ArrowSyncCircle/20_r.svg", + "staticwebassets/icons/ArrowSyncCircle/24_f.svg", + "staticwebassets/icons/ArrowSyncCircle/24_r.svg", + "staticwebassets/icons/ArrowSyncDismiss/20_f.svg", + "staticwebassets/icons/ArrowSyncDismiss/20_r.svg", + "staticwebassets/icons/ArrowSyncDismiss/24_f.svg", + "staticwebassets/icons/ArrowSyncDismiss/24_r.svg", + "staticwebassets/icons/ArrowSyncOff/12_f.svg", + "staticwebassets/icons/ArrowSyncOff/12_r.svg", + "staticwebassets/icons/ArrowSyncOff/16_f.svg", + "staticwebassets/icons/ArrowSyncOff/16_r.svg", + "staticwebassets/icons/ArrowSyncOff/20_f.svg", + "staticwebassets/icons/ArrowSyncOff/20_r.svg", + "staticwebassets/icons/ArrowTrending/12_f.svg", + "staticwebassets/icons/ArrowTrending/12_r.svg", + "staticwebassets/icons/ArrowTrending/16_f.svg", + "staticwebassets/icons/ArrowTrending/16_r.svg", + "staticwebassets/icons/ArrowTrending/20_f.svg", + "staticwebassets/icons/ArrowTrending/20_r.svg", + "staticwebassets/icons/ArrowTrending/24_f.svg", + "staticwebassets/icons/ArrowTrending/24_r.svg", + "staticwebassets/icons/ArrowTrendingCheckmark/20_f.svg", + "staticwebassets/icons/ArrowTrendingCheckmark/20_r.svg", + "staticwebassets/icons/ArrowTrendingCheckmark/24_f.svg", + "staticwebassets/icons/ArrowTrendingCheckmark/24_r.svg", + "staticwebassets/icons/ArrowTrendingDown/16_f.svg", + "staticwebassets/icons/ArrowTrendingDown/16_r.svg", + "staticwebassets/icons/ArrowTrendingDown/20_f.svg", + "staticwebassets/icons/ArrowTrendingDown/20_r.svg", + "staticwebassets/icons/ArrowTrendingDown/24_f.svg", + "staticwebassets/icons/ArrowTrendingDown/24_r.svg", + "staticwebassets/icons/ArrowTrendingLines/20_f.svg", + "staticwebassets/icons/ArrowTrendingLines/20_r.svg", + "staticwebassets/icons/ArrowTrendingLines/24_f.svg", + "staticwebassets/icons/ArrowTrendingLines/24_r.svg", + "staticwebassets/icons/ArrowTrendingSettings/20_f.svg", + "staticwebassets/icons/ArrowTrendingSettings/20_r.svg", + "staticwebassets/icons/ArrowTrendingSettings/24_f.svg", + "staticwebassets/icons/ArrowTrendingSettings/24_r.svg", + "staticwebassets/icons/ArrowTrendingSparkle/20_f.svg", + "staticwebassets/icons/ArrowTrendingSparkle/20_r.svg", + "staticwebassets/icons/ArrowTrendingSparkle/24_f.svg", + "staticwebassets/icons/ArrowTrendingSparkle/24_r.svg", + "staticwebassets/icons/ArrowTrendingText/20_f.svg", + "staticwebassets/icons/ArrowTrendingText/20_r.svg", + "staticwebassets/icons/ArrowTrendingText/24_f.svg", + "staticwebassets/icons/ArrowTrendingText/24_r.svg", + "staticwebassets/icons/ArrowTrendingWrench/20_f.svg", + "staticwebassets/icons/ArrowTrendingWrench/20_r.svg", + "staticwebassets/icons/ArrowTrendingWrench/24_f.svg", + "staticwebassets/icons/ArrowTrendingWrench/24_r.svg", + "staticwebassets/icons/ArrowTurnBidirectionalDownRight/20_f.svg", + "staticwebassets/icons/ArrowTurnBidirectionalDownRight/20_r.svg", + "staticwebassets/icons/ArrowTurnBidirectionalDownRight/24_f.svg", + "staticwebassets/icons/ArrowTurnBidirectionalDownRight/24_r.svg", + "staticwebassets/icons/ArrowTurnDownLeft/20_f.svg", + "staticwebassets/icons/ArrowTurnDownLeft/20_r.svg", + "staticwebassets/icons/ArrowTurnDownLeft/48_f.svg", + "staticwebassets/icons/ArrowTurnDownLeft/48_r.svg", + "staticwebassets/icons/ArrowTurnDownRight/20_f.svg", + "staticwebassets/icons/ArrowTurnDownRight/20_r.svg", + "staticwebassets/icons/ArrowTurnDownRight/48_f.svg", + "staticwebassets/icons/ArrowTurnDownRight/48_r.svg", + "staticwebassets/icons/ArrowTurnDownUp/20_f.svg", + "staticwebassets/icons/ArrowTurnDownUp/20_r.svg", + "staticwebassets/icons/ArrowTurnDownUp/48_f.svg", + "staticwebassets/icons/ArrowTurnDownUp/48_r.svg", + "staticwebassets/icons/ArrowTurnLeftDown/20_f.svg", + "staticwebassets/icons/ArrowTurnLeftDown/20_r.svg", + "staticwebassets/icons/ArrowTurnLeftDown/48_f.svg", + "staticwebassets/icons/ArrowTurnLeftDown/48_r.svg", + "staticwebassets/icons/ArrowTurnLeftRight/20_f.svg", + "staticwebassets/icons/ArrowTurnLeftRight/20_r.svg", + "staticwebassets/icons/ArrowTurnLeftRight/48_f.svg", + "staticwebassets/icons/ArrowTurnLeftRight/48_r.svg", + "staticwebassets/icons/ArrowTurnLeftUp/20_f.svg", + "staticwebassets/icons/ArrowTurnLeftUp/20_r.svg", + "staticwebassets/icons/ArrowTurnLeftUp/48_f.svg", + "staticwebassets/icons/ArrowTurnLeftUp/48_r.svg", + "staticwebassets/icons/ArrowTurnRight/20_f.svg", + "staticwebassets/icons/ArrowTurnRight/20_r.svg", + "staticwebassets/icons/ArrowTurnRight/24_f.svg", + "staticwebassets/icons/ArrowTurnRight/24_r.svg", + "staticwebassets/icons/ArrowTurnRight/48_f.svg", + "staticwebassets/icons/ArrowTurnRight/48_r.svg", + "staticwebassets/icons/ArrowTurnRightDown/20_f.svg", + "staticwebassets/icons/ArrowTurnRightDown/20_r.svg", + "staticwebassets/icons/ArrowTurnRightDown/48_f.svg", + "staticwebassets/icons/ArrowTurnRightDown/48_r.svg", + "staticwebassets/icons/ArrowTurnRightLeft/20_f.svg", + "staticwebassets/icons/ArrowTurnRightLeft/20_r.svg", + "staticwebassets/icons/ArrowTurnRightLeft/48_f.svg", + "staticwebassets/icons/ArrowTurnRightLeft/48_r.svg", + "staticwebassets/icons/ArrowTurnRightUp/20_f.svg", + "staticwebassets/icons/ArrowTurnRightUp/20_r.svg", + "staticwebassets/icons/ArrowTurnRightUp/48_f.svg", + "staticwebassets/icons/ArrowTurnRightUp/48_r.svg", + "staticwebassets/icons/ArrowTurnUpDown/20_f.svg", + "staticwebassets/icons/ArrowTurnUpDown/20_r.svg", + "staticwebassets/icons/ArrowTurnUpDown/48_f.svg", + "staticwebassets/icons/ArrowTurnUpDown/48_r.svg", + "staticwebassets/icons/ArrowTurnUpLeft/20_f.svg", + "staticwebassets/icons/ArrowTurnUpLeft/20_r.svg", + "staticwebassets/icons/ArrowTurnUpLeft/48_f.svg", + "staticwebassets/icons/ArrowTurnUpLeft/48_r.svg", + "staticwebassets/icons/ArrowUndo/16_f.svg", + "staticwebassets/icons/ArrowUndo/16_r.svg", + "staticwebassets/icons/ArrowUndo/20_f.svg", + "staticwebassets/icons/ArrowUndo/20_r.svg", + "staticwebassets/icons/ArrowUndo/24_f.svg", + "staticwebassets/icons/ArrowUndo/24_r.svg", + "staticwebassets/icons/ArrowUndo/28_f.svg", + "staticwebassets/icons/ArrowUndo/28_r.svg", + "staticwebassets/icons/ArrowUndo/32_f.svg", + "staticwebassets/icons/ArrowUndo/32_r.svg", + "staticwebassets/icons/ArrowUndo/48_f.svg", + "staticwebassets/icons/ArrowUndo/48_r.svg", + "staticwebassets/icons/ArrowUndoTempLTR/16_f.svg", + "staticwebassets/icons/ArrowUndoTempLTR/16_r.svg", + "staticwebassets/icons/ArrowUndoTempLTR/20_f.svg", + "staticwebassets/icons/ArrowUndoTempLTR/20_r.svg", + "staticwebassets/icons/ArrowUndoTempLTR/24_f.svg", + "staticwebassets/icons/ArrowUndoTempLTR/24_r.svg", + "staticwebassets/icons/ArrowUndoTempLTR/28_f.svg", + "staticwebassets/icons/ArrowUndoTempLTR/28_r.svg", + "staticwebassets/icons/ArrowUndoTempLTR/32_f.svg", + "staticwebassets/icons/ArrowUndoTempLTR/32_r.svg", + "staticwebassets/icons/ArrowUndoTempLTR/48_f.svg", + "staticwebassets/icons/ArrowUndoTempLTR/48_r.svg", + "staticwebassets/icons/ArrowUndoTempRTL/16_f.svg", + "staticwebassets/icons/ArrowUndoTempRTL/16_r.svg", + "staticwebassets/icons/ArrowUndoTempRTL/20_f.svg", + "staticwebassets/icons/ArrowUndoTempRTL/20_r.svg", + "staticwebassets/icons/ArrowUndoTempRTL/24_f.svg", + "staticwebassets/icons/ArrowUndoTempRTL/24_r.svg", + "staticwebassets/icons/ArrowUndoTempRTL/28_f.svg", + "staticwebassets/icons/ArrowUndoTempRTL/28_r.svg", + "staticwebassets/icons/ArrowUndoTempRTL/32_f.svg", + "staticwebassets/icons/ArrowUndoTempRTL/32_r.svg", + "staticwebassets/icons/ArrowUndoTempRTL/48_f.svg", + "staticwebassets/icons/ArrowUndoTempRTL/48_r.svg", + "staticwebassets/icons/ArrowUp/12_f.svg", + "staticwebassets/icons/ArrowUp/12_r.svg", + "staticwebassets/icons/ArrowUp/16_f.svg", + "staticwebassets/icons/ArrowUp/16_r.svg", + "staticwebassets/icons/ArrowUp/20_f.svg", + "staticwebassets/icons/ArrowUp/20_r.svg", + "staticwebassets/icons/ArrowUp/24_f.svg", + "staticwebassets/icons/ArrowUp/24_r.svg", + "staticwebassets/icons/ArrowUp/28_f.svg", + "staticwebassets/icons/ArrowUp/28_r.svg", + "staticwebassets/icons/ArrowUp/32_f.svg", + "staticwebassets/icons/ArrowUp/32_r.svg", + "staticwebassets/icons/ArrowUp/48_f.svg", + "staticwebassets/icons/ArrowUp/48_r.svg", + "staticwebassets/icons/ArrowUpLeft/16_f.svg", + "staticwebassets/icons/ArrowUpLeft/16_r.svg", + "staticwebassets/icons/ArrowUpLeft/20_f.svg", + "staticwebassets/icons/ArrowUpLeft/20_r.svg", + "staticwebassets/icons/ArrowUpLeft/24_f.svg", + "staticwebassets/icons/ArrowUpLeft/24_r.svg", + "staticwebassets/icons/ArrowUpLeft/48_f.svg", + "staticwebassets/icons/ArrowUpLeft/48_r.svg", + "staticwebassets/icons/ArrowUpRight/16_f.svg", + "staticwebassets/icons/ArrowUpRight/16_r.svg", + "staticwebassets/icons/ArrowUpRight/20_f.svg", + "staticwebassets/icons/ArrowUpRight/20_r.svg", + "staticwebassets/icons/ArrowUpRight/24_f.svg", + "staticwebassets/icons/ArrowUpRight/24_r.svg", + "staticwebassets/icons/ArrowUpRight/32_f.svg", + "staticwebassets/icons/ArrowUpRight/32_r.svg", + "staticwebassets/icons/ArrowUpRight/48_f.svg", + "staticwebassets/icons/ArrowUpRight/48_r.svg", + "staticwebassets/icons/ArrowUpload/16_f.svg", + "staticwebassets/icons/ArrowUpload/16_r.svg", + "staticwebassets/icons/ArrowUpload/20_f.svg", + "staticwebassets/icons/ArrowUpload/20_r.svg", + "staticwebassets/icons/ArrowUpload/24_f.svg", + "staticwebassets/icons/ArrowUpload/24_r.svg", + "staticwebassets/icons/ArrowWrap/20_f.svg", + "staticwebassets/icons/ArrowWrap/20_r.svg", + "staticwebassets/icons/ArrowWrapOff/20_f.svg", + "staticwebassets/icons/ArrowWrapOff/20_r.svg", + "staticwebassets/icons/ArrowsBidirectional/20_f.svg", + "staticwebassets/icons/ArrowsBidirectional/20_r.svg", + "staticwebassets/icons/ArrowsBidirectional/24_f.svg", + "staticwebassets/icons/ArrowsBidirectional/24_r.svg", + "staticwebassets/icons/Attach/12_f.svg", + "staticwebassets/icons/Attach/12_r.svg", + "staticwebassets/icons/Attach/16_f.svg", + "staticwebassets/icons/Attach/16_r.svg", + "staticwebassets/icons/Attach/20_f.svg", + "staticwebassets/icons/Attach/20_r.svg", + "staticwebassets/icons/Attach/24_f.svg", + "staticwebassets/icons/Attach/24_r.svg", + "staticwebassets/icons/AttachArrowRight/20_f.svg", + "staticwebassets/icons/AttachArrowRight/20_r.svg", + "staticwebassets/icons/AttachArrowRight/24_f.svg", + "staticwebassets/icons/AttachArrowRight/24_r.svg", + "staticwebassets/icons/AttachText/20_f.svg", + "staticwebassets/icons/AttachText/20_r.svg", + "staticwebassets/icons/AttachText/24_f.svg", + "staticwebassets/icons/AttachText/24_r.svg", + "staticwebassets/icons/AutoFitHeight/20_f.svg", + "staticwebassets/icons/AutoFitHeight/20_r.svg", + "staticwebassets/icons/AutoFitHeight/24_f.svg", + "staticwebassets/icons/AutoFitHeight/24_r.svg", + "staticwebassets/icons/AutoFitWidth/20_f.svg", + "staticwebassets/icons/AutoFitWidth/20_r.svg", + "staticwebassets/icons/AutoFitWidth/24_f.svg", + "staticwebassets/icons/AutoFitWidth/24_r.svg", + "staticwebassets/icons/AutoSum/16_f.svg", + "staticwebassets/icons/AutoSum/16_r.svg", + "staticwebassets/icons/AutoSum/20_f.svg", + "staticwebassets/icons/AutoSum/20_r.svg", + "staticwebassets/icons/AutoSum/24_f.svg", + "staticwebassets/icons/AutoSum/24_r.svg", + "staticwebassets/icons/Autocorrect/20_f.svg", + "staticwebassets/icons/Autocorrect/20_r.svg", + "staticwebassets/icons/Autocorrect/24_f.svg", + "staticwebassets/icons/Autocorrect/24_r.svg", + "staticwebassets/icons/Backpack/12_f.svg", + "staticwebassets/icons/Backpack/12_r.svg", + "staticwebassets/icons/Backpack/16_f.svg", + "staticwebassets/icons/Backpack/16_r.svg", + "staticwebassets/icons/Backpack/20_f.svg", + "staticwebassets/icons/Backpack/20_r.svg", + "staticwebassets/icons/Backpack/24_f.svg", + "staticwebassets/icons/Backpack/24_r.svg", + "staticwebassets/icons/Backpack/28_f.svg", + "staticwebassets/icons/Backpack/28_r.svg", + "staticwebassets/icons/Backpack/32_f.svg", + "staticwebassets/icons/Backpack/32_r.svg", + "staticwebassets/icons/Backpack/48_f.svg", + "staticwebassets/icons/Backpack/48_r.svg", + "staticwebassets/icons/BackpackAdd/20_f.svg", + "staticwebassets/icons/BackpackAdd/20_r.svg", + "staticwebassets/icons/BackpackAdd/24_f.svg", + "staticwebassets/icons/BackpackAdd/24_r.svg", + "staticwebassets/icons/BackpackAdd/28_f.svg", + "staticwebassets/icons/BackpackAdd/28_r.svg", + "staticwebassets/icons/BackpackAdd/48_f.svg", + "staticwebassets/icons/BackpackAdd/48_r.svg", + "staticwebassets/icons/Backspace/16_f.svg", + "staticwebassets/icons/Backspace/16_r.svg", + "staticwebassets/icons/Backspace/20_f.svg", + "staticwebassets/icons/Backspace/20_r.svg", + "staticwebassets/icons/Backspace/24_f.svg", + "staticwebassets/icons/Backspace/24_r.svg", + "staticwebassets/icons/Badge/20_f.svg", + "staticwebassets/icons/Badge/20_r.svg", + "staticwebassets/icons/Badge/24_f.svg", + "staticwebassets/icons/Badge/24_r.svg", + "staticwebassets/icons/Balloon/12_f.svg", + "staticwebassets/icons/Balloon/12_r.svg", + "staticwebassets/icons/Balloon/16_f.svg", + "staticwebassets/icons/Balloon/16_r.svg", + "staticwebassets/icons/Balloon/20_f.svg", + "staticwebassets/icons/Balloon/20_r.svg", + "staticwebassets/icons/Balloon/24_f.svg", + "staticwebassets/icons/Balloon/24_r.svg", + "staticwebassets/icons/BarcodeScanner/20_f.svg", + "staticwebassets/icons/BarcodeScanner/20_r.svg", + "staticwebassets/icons/BarcodeScanner/24_f.svg", + "staticwebassets/icons/BarcodeScanner/24_r.svg", + "staticwebassets/icons/Battery0/20_f.svg", + "staticwebassets/icons/Battery0/20_r.svg", + "staticwebassets/icons/Battery0/24_f.svg", + "staticwebassets/icons/Battery0/24_r.svg", + "staticwebassets/icons/Battery1/20_f.svg", + "staticwebassets/icons/Battery1/20_r.svg", + "staticwebassets/icons/Battery1/24_f.svg", + "staticwebassets/icons/Battery1/24_r.svg", + "staticwebassets/icons/Battery10/20_f.svg", + "staticwebassets/icons/Battery10/20_r.svg", + "staticwebassets/icons/Battery10/24_f.svg", + "staticwebassets/icons/Battery10/24_r.svg", + "staticwebassets/icons/Battery2/20_f.svg", + "staticwebassets/icons/Battery2/20_r.svg", + "staticwebassets/icons/Battery2/24_f.svg", + "staticwebassets/icons/Battery2/24_r.svg", + "staticwebassets/icons/Battery3/20_f.svg", + "staticwebassets/icons/Battery3/20_r.svg", + "staticwebassets/icons/Battery3/24_f.svg", + "staticwebassets/icons/Battery3/24_r.svg", + "staticwebassets/icons/Battery4/20_f.svg", + "staticwebassets/icons/Battery4/20_r.svg", + "staticwebassets/icons/Battery4/24_f.svg", + "staticwebassets/icons/Battery4/24_r.svg", + "staticwebassets/icons/Battery5/20_f.svg", + "staticwebassets/icons/Battery5/20_r.svg", + "staticwebassets/icons/Battery5/24_f.svg", + "staticwebassets/icons/Battery5/24_r.svg", + "staticwebassets/icons/Battery6/20_f.svg", + "staticwebassets/icons/Battery6/20_r.svg", + "staticwebassets/icons/Battery6/24_f.svg", + "staticwebassets/icons/Battery6/24_r.svg", + "staticwebassets/icons/Battery7/20_f.svg", + "staticwebassets/icons/Battery7/20_r.svg", + "staticwebassets/icons/Battery7/24_f.svg", + "staticwebassets/icons/Battery7/24_r.svg", + "staticwebassets/icons/Battery8/20_f.svg", + "staticwebassets/icons/Battery8/20_r.svg", + "staticwebassets/icons/Battery8/24_f.svg", + "staticwebassets/icons/Battery8/24_r.svg", + "staticwebassets/icons/Battery9/20_f.svg", + "staticwebassets/icons/Battery9/20_r.svg", + "staticwebassets/icons/Battery9/24_f.svg", + "staticwebassets/icons/Battery9/24_r.svg", + "staticwebassets/icons/BatteryCharge/20_f.svg", + "staticwebassets/icons/BatteryCharge/20_r.svg", + "staticwebassets/icons/BatteryCharge/24_f.svg", + "staticwebassets/icons/BatteryCharge/24_r.svg", + "staticwebassets/icons/BatteryCheckmark/20_f.svg", + "staticwebassets/icons/BatteryCheckmark/20_r.svg", + "staticwebassets/icons/BatteryCheckmark/24_f.svg", + "staticwebassets/icons/BatteryCheckmark/24_r.svg", + "staticwebassets/icons/BatterySaver/20_f.svg", + "staticwebassets/icons/BatterySaver/20_r.svg", + "staticwebassets/icons/BatterySaver/24_f.svg", + "staticwebassets/icons/BatterySaver/24_r.svg", + "staticwebassets/icons/BatteryWarning/20_f.svg", + "staticwebassets/icons/BatteryWarning/20_r.svg", + "staticwebassets/icons/BatteryWarning/24_f.svg", + "staticwebassets/icons/BatteryWarning/24_r.svg", + "staticwebassets/icons/Beach/16_f.svg", + "staticwebassets/icons/Beach/16_r.svg", + "staticwebassets/icons/Beach/20_f.svg", + "staticwebassets/icons/Beach/20_r.svg", + "staticwebassets/icons/Beach/24_f.svg", + "staticwebassets/icons/Beach/24_r.svg", + "staticwebassets/icons/Beach/28_f.svg", + "staticwebassets/icons/Beach/28_r.svg", + "staticwebassets/icons/Beach/32_f.svg", + "staticwebassets/icons/Beach/32_r.svg", + "staticwebassets/icons/Beach/48_f.svg", + "staticwebassets/icons/Beach/48_r.svg", + "staticwebassets/icons/Beaker/16_f.svg", + "staticwebassets/icons/Beaker/16_r.svg", + "staticwebassets/icons/Beaker/20_f.svg", + "staticwebassets/icons/Beaker/20_r.svg", + "staticwebassets/icons/Beaker/24_f.svg", + "staticwebassets/icons/Beaker/24_r.svg", + "staticwebassets/icons/Beaker/32_f.svg", + "staticwebassets/icons/Beaker/32_r.svg", + "staticwebassets/icons/BeakerEdit/20_f.svg", + "staticwebassets/icons/BeakerEdit/20_r.svg", + "staticwebassets/icons/BeakerEdit/24_f.svg", + "staticwebassets/icons/BeakerEdit/24_r.svg", + "staticwebassets/icons/BeakerOff/20_f.svg", + "staticwebassets/icons/BeakerOff/20_r.svg", + "staticwebassets/icons/BeakerOff/32_f.svg", + "staticwebassets/icons/BeakerOff/32_r.svg", + "staticwebassets/icons/BeakerSettings/16_f.svg", + "staticwebassets/icons/BeakerSettings/16_r.svg", + "staticwebassets/icons/BeakerSettings/20_f.svg", + "staticwebassets/icons/BeakerSettings/20_r.svg", + "staticwebassets/icons/Bed/16_f.svg", + "staticwebassets/icons/Bed/16_r.svg", + "staticwebassets/icons/Bed/20_f.svg", + "staticwebassets/icons/Bed/20_r.svg", + "staticwebassets/icons/Bed/24_f.svg", + "staticwebassets/icons/Bed/24_r.svg", + "staticwebassets/icons/BezierCurveSquare/12_f.svg", + "staticwebassets/icons/BezierCurveSquare/12_r.svg", + "staticwebassets/icons/BezierCurveSquare/20_f.svg", + "staticwebassets/icons/BezierCurveSquare/20_r.svg", + "staticwebassets/icons/BinFull/20_f.svg", + "staticwebassets/icons/BinFull/20_r.svg", + "staticwebassets/icons/BinFull/24_f.svg", + "staticwebassets/icons/BinFull/24_r.svg", + "staticwebassets/icons/BinderTriangle/16_f.svg", + "staticwebassets/icons/BinderTriangle/16_r.svg", + "staticwebassets/icons/BinderTriangle/20_f.svg", + "staticwebassets/icons/BinderTriangle/20_r.svg", + "staticwebassets/icons/BinderTriangle/24_f.svg", + "staticwebassets/icons/BinderTriangle/24_r.svg", + "staticwebassets/icons/BinderTriangle/32_f.svg", + "staticwebassets/icons/BinderTriangle/32_r.svg", + "staticwebassets/icons/Bluetooth/16_f.svg", + "staticwebassets/icons/Bluetooth/16_r.svg", + "staticwebassets/icons/Bluetooth/20_f.svg", + "staticwebassets/icons/Bluetooth/20_r.svg", + "staticwebassets/icons/Bluetooth/24_f.svg", + "staticwebassets/icons/Bluetooth/24_r.svg", + "staticwebassets/icons/Bluetooth/28_f.svg", + "staticwebassets/icons/Bluetooth/28_r.svg", + "staticwebassets/icons/Bluetooth/32_f.svg", + "staticwebassets/icons/Bluetooth/32_r.svg", + "staticwebassets/icons/Bluetooth/48_f.svg", + "staticwebassets/icons/Bluetooth/48_r.svg", + "staticwebassets/icons/BluetoothConnected/20_f.svg", + "staticwebassets/icons/BluetoothConnected/20_r.svg", + "staticwebassets/icons/BluetoothConnected/24_f.svg", + "staticwebassets/icons/BluetoothConnected/24_r.svg", + "staticwebassets/icons/BluetoothDisabled/20_f.svg", + "staticwebassets/icons/BluetoothDisabled/20_r.svg", + "staticwebassets/icons/BluetoothDisabled/24_f.svg", + "staticwebassets/icons/BluetoothDisabled/24_r.svg", + "staticwebassets/icons/BluetoothSearching/20_f.svg", + "staticwebassets/icons/BluetoothSearching/20_r.svg", + "staticwebassets/icons/BluetoothSearching/24_f.svg", + "staticwebassets/icons/BluetoothSearching/24_r.svg", + "staticwebassets/icons/Blur/16_f.svg", + "staticwebassets/icons/Blur/16_r.svg", + "staticwebassets/icons/Blur/20_f.svg", + "staticwebassets/icons/Blur/20_r.svg", + "staticwebassets/icons/Blur/24_f.svg", + "staticwebassets/icons/Blur/24_r.svg", + "staticwebassets/icons/Blur/28_f.svg", + "staticwebassets/icons/Blur/28_r.svg", + "staticwebassets/icons/Board/16_f.svg", + "staticwebassets/icons/Board/16_r.svg", + "staticwebassets/icons/Board/20_f.svg", + "staticwebassets/icons/Board/20_r.svg", + "staticwebassets/icons/Board/24_f.svg", + "staticwebassets/icons/Board/24_r.svg", + "staticwebassets/icons/Board/28_f.svg", + "staticwebassets/icons/Board/28_r.svg", + "staticwebassets/icons/BoardGames/20_f.svg", + "staticwebassets/icons/BoardGames/20_r.svg", + "staticwebassets/icons/BoardHeart/16_f.svg", + "staticwebassets/icons/BoardHeart/16_r.svg", + "staticwebassets/icons/BoardHeart/20_f.svg", + "staticwebassets/icons/BoardHeart/20_r.svg", + "staticwebassets/icons/BoardHeart/24_f.svg", + "staticwebassets/icons/BoardHeart/24_r.svg", + "staticwebassets/icons/BoardSplit/16_f.svg", + "staticwebassets/icons/BoardSplit/16_r.svg", + "staticwebassets/icons/BoardSplit/20_f.svg", + "staticwebassets/icons/BoardSplit/20_r.svg", + "staticwebassets/icons/BoardSplit/24_f.svg", + "staticwebassets/icons/BoardSplit/24_r.svg", + "staticwebassets/icons/BoardSplit/28_f.svg", + "staticwebassets/icons/BoardSplit/28_r.svg", + "staticwebassets/icons/BoardSplit/48_f.svg", + "staticwebassets/icons/BoardSplit/48_r.svg", + "staticwebassets/icons/Book/20_f.svg", + "staticwebassets/icons/Book/20_r.svg", + "staticwebassets/icons/Book/24_f.svg", + "staticwebassets/icons/Book/24_r.svg", + "staticwebassets/icons/BookAdd/20_f.svg", + "staticwebassets/icons/BookAdd/20_r.svg", + "staticwebassets/icons/BookAdd/24_f.svg", + "staticwebassets/icons/BookAdd/24_r.svg", + "staticwebassets/icons/BookArrowClockwise/20_f.svg", + "staticwebassets/icons/BookArrowClockwise/20_r.svg", + "staticwebassets/icons/BookArrowClockwise/24_f.svg", + "staticwebassets/icons/BookArrowClockwise/24_r.svg", + "staticwebassets/icons/BookClock/20_f.svg", + "staticwebassets/icons/BookClock/20_r.svg", + "staticwebassets/icons/BookClock/24_f.svg", + "staticwebassets/icons/BookClock/24_r.svg", + "staticwebassets/icons/BookCoins/20_f.svg", + "staticwebassets/icons/BookCoins/20_r.svg", + "staticwebassets/icons/BookCoins/24_f.svg", + "staticwebassets/icons/BookCoins/24_r.svg", + "staticwebassets/icons/BookCompass/20_f.svg", + "staticwebassets/icons/BookCompass/20_r.svg", + "staticwebassets/icons/BookCompass/24_f.svg", + "staticwebassets/icons/BookCompass/24_r.svg", + "staticwebassets/icons/BookContacts/20_f.svg", + "staticwebassets/icons/BookContacts/20_r.svg", + "staticwebassets/icons/BookContacts/24_f.svg", + "staticwebassets/icons/BookContacts/24_r.svg", + "staticwebassets/icons/BookContacts/28_f.svg", + "staticwebassets/icons/BookContacts/28_r.svg", + "staticwebassets/icons/BookContacts/32_f.svg", + "staticwebassets/icons/BookContacts/32_r.svg", + "staticwebassets/icons/BookDatabase/20_f.svg", + "staticwebassets/icons/BookDatabase/20_r.svg", + "staticwebassets/icons/BookDatabase/24_f.svg", + "staticwebassets/icons/BookDatabase/24_r.svg", + "staticwebassets/icons/BookDefault/20_f.svg", + "staticwebassets/icons/BookDismiss/16_f.svg", + "staticwebassets/icons/BookDismiss/16_r.svg", + "staticwebassets/icons/BookDismiss/20_f.svg", + "staticwebassets/icons/BookDismiss/20_r.svg", + "staticwebassets/icons/BookExclamationMark/20_f.svg", + "staticwebassets/icons/BookExclamationMark/20_r.svg", + "staticwebassets/icons/BookExclamationMark/24_f.svg", + "staticwebassets/icons/BookExclamationMark/24_r.svg", + "staticwebassets/icons/BookGlobe/20_f.svg", + "staticwebassets/icons/BookGlobe/20_r.svg", + "staticwebassets/icons/BookGlobe/24_f.svg", + "staticwebassets/icons/BookGlobe/24_r.svg", + "staticwebassets/icons/BookInformation/20_f.svg", + "staticwebassets/icons/BookInformation/20_r.svg", + "staticwebassets/icons/BookInformation/24_f.svg", + "staticwebassets/icons/BookInformation/24_r.svg", + "staticwebassets/icons/BookLetter/20_f.svg", + "staticwebassets/icons/BookLetter/20_r.svg", + "staticwebassets/icons/BookLetter/24_f.svg", + "staticwebassets/icons/BookLetter/24_r.svg", + "staticwebassets/icons/BookNumber/16_f.svg", + "staticwebassets/icons/BookNumber/16_r.svg", + "staticwebassets/icons/BookNumber/20_f.svg", + "staticwebassets/icons/BookNumber/20_r.svg", + "staticwebassets/icons/BookNumber/24_f.svg", + "staticwebassets/icons/BookNumber/24_r.svg", + "staticwebassets/icons/BookOpen/16_f.svg", + "staticwebassets/icons/BookOpen/16_r.svg", + "staticwebassets/icons/BookOpen/20_f.svg", + "staticwebassets/icons/BookOpen/20_r.svg", + "staticwebassets/icons/BookOpen/24_f.svg", + "staticwebassets/icons/BookOpen/24_r.svg", + "staticwebassets/icons/BookOpen/28_f.svg", + "staticwebassets/icons/BookOpen/28_r.svg", + "staticwebassets/icons/BookOpen/32_f.svg", + "staticwebassets/icons/BookOpen/32_r.svg", + "staticwebassets/icons/BookOpen/48_f.svg", + "staticwebassets/icons/BookOpen/48_r.svg", + "staticwebassets/icons/BookOpenGlobe/20_f.svg", + "staticwebassets/icons/BookOpenGlobe/20_r.svg", + "staticwebassets/icons/BookOpenGlobe/24_f.svg", + "staticwebassets/icons/BookOpenGlobe/24_r.svg", + "staticwebassets/icons/BookOpenMicrophone/20_f.svg", + "staticwebassets/icons/BookOpenMicrophone/20_r.svg", + "staticwebassets/icons/BookOpenMicrophone/24_f.svg", + "staticwebassets/icons/BookOpenMicrophone/24_r.svg", + "staticwebassets/icons/BookOpenMicrophone/28_f.svg", + "staticwebassets/icons/BookOpenMicrophone/28_r.svg", + "staticwebassets/icons/BookOpenMicrophone/32_f.svg", + "staticwebassets/icons/BookOpenMicrophone/32_r.svg", + "staticwebassets/icons/BookOpenMicrophone/48_f.svg", + "staticwebassets/icons/BookOpenMicrophone/48_r.svg", + "staticwebassets/icons/BookPulse/20_f.svg", + "staticwebassets/icons/BookPulse/20_r.svg", + "staticwebassets/icons/BookPulse/24_f.svg", + "staticwebassets/icons/BookPulse/24_r.svg", + "staticwebassets/icons/BookQuestionMark/20_f.svg", + "staticwebassets/icons/BookQuestionMark/20_r.svg", + "staticwebassets/icons/BookQuestionMark/24_f.svg", + "staticwebassets/icons/BookQuestionMark/24_r.svg", + "staticwebassets/icons/BookQuestionMark/ar/24_f.svg", + "staticwebassets/icons/BookQuestionMark/ar/24_r.svg", + "staticwebassets/icons/BookQuestionMarkRTL/20_f.svg", + "staticwebassets/icons/BookQuestionMarkRTL/20_r.svg", + "staticwebassets/icons/BookQuestionMarkRTL/24_f.svg", + "staticwebassets/icons/BookQuestionMarkRTL/24_r.svg", + "staticwebassets/icons/BookSearch/20_f.svg", + "staticwebassets/icons/BookSearch/20_r.svg", + "staticwebassets/icons/BookSearch/24_f.svg", + "staticwebassets/icons/BookSearch/24_r.svg", + "staticwebassets/icons/BookStar/20_f.svg", + "staticwebassets/icons/BookStar/20_r.svg", + "staticwebassets/icons/BookStar/24_f.svg", + "staticwebassets/icons/BookStar/24_r.svg", + "staticwebassets/icons/BookTemplate/20_f.svg", + "staticwebassets/icons/BookTemplate/20_r.svg", + "staticwebassets/icons/BookTheta/20_f.svg", + "staticwebassets/icons/BookTheta/20_r.svg", + "staticwebassets/icons/BookTheta/24_f.svg", + "staticwebassets/icons/BookTheta/24_r.svg", + "staticwebassets/icons/BookToolbox/20_f.svg", + "staticwebassets/icons/BookToolbox/20_r.svg", + "staticwebassets/icons/BookToolbox/24_f.svg", + "staticwebassets/icons/BookToolbox/24_r.svg", + "staticwebassets/icons/Bookmark/16_f.svg", + "staticwebassets/icons/Bookmark/16_r.svg", + "staticwebassets/icons/Bookmark/20_f.svg", + "staticwebassets/icons/Bookmark/20_r.svg", + "staticwebassets/icons/Bookmark/24_f.svg", + "staticwebassets/icons/Bookmark/24_r.svg", + "staticwebassets/icons/Bookmark/28_f.svg", + "staticwebassets/icons/Bookmark/28_r.svg", + "staticwebassets/icons/Bookmark/32_f.svg", + "staticwebassets/icons/Bookmark/32_r.svg", + "staticwebassets/icons/BookmarkAdd/20_f.svg", + "staticwebassets/icons/BookmarkAdd/20_r.svg", + "staticwebassets/icons/BookmarkAdd/24_f.svg", + "staticwebassets/icons/BookmarkAdd/24_r.svg", + "staticwebassets/icons/BookmarkMultiple/16_f.svg", + "staticwebassets/icons/BookmarkMultiple/16_r.svg", + "staticwebassets/icons/BookmarkMultiple/20_f.svg", + "staticwebassets/icons/BookmarkMultiple/20_r.svg", + "staticwebassets/icons/BookmarkMultiple/24_f.svg", + "staticwebassets/icons/BookmarkMultiple/24_r.svg", + "staticwebassets/icons/BookmarkMultiple/28_f.svg", + "staticwebassets/icons/BookmarkMultiple/28_r.svg", + "staticwebassets/icons/BookmarkMultiple/32_f.svg", + "staticwebassets/icons/BookmarkMultiple/32_r.svg", + "staticwebassets/icons/BookmarkMultiple/48_f.svg", + "staticwebassets/icons/BookmarkMultiple/48_r.svg", + "staticwebassets/icons/BookmarkOff/20_f.svg", + "staticwebassets/icons/BookmarkOff/20_r.svg", + "staticwebassets/icons/BookmarkOff/24_f.svg", + "staticwebassets/icons/BookmarkOff/24_r.svg", + "staticwebassets/icons/BookmarkSearch/20_f.svg", + "staticwebassets/icons/BookmarkSearch/20_r.svg", + "staticwebassets/icons/BookmarkSearch/24_f.svg", + "staticwebassets/icons/BookmarkSearch/24_r.svg", + "staticwebassets/icons/BorderAll/16_f.svg", + "staticwebassets/icons/BorderAll/16_r.svg", + "staticwebassets/icons/BorderAll/20_f.svg", + "staticwebassets/icons/BorderAll/20_r.svg", + "staticwebassets/icons/BorderAll/24_f.svg", + "staticwebassets/icons/BorderAll/24_r.svg", + "staticwebassets/icons/BorderBottom/20_f.svg", + "staticwebassets/icons/BorderBottom/20_r.svg", + "staticwebassets/icons/BorderBottom/24_f.svg", + "staticwebassets/icons/BorderBottom/24_r.svg", + "staticwebassets/icons/BorderBottomDouble/20_f.svg", + "staticwebassets/icons/BorderBottomDouble/20_r.svg", + "staticwebassets/icons/BorderBottomDouble/24_f.svg", + "staticwebassets/icons/BorderBottomDouble/24_r.svg", + "staticwebassets/icons/BorderBottomThick/20_f.svg", + "staticwebassets/icons/BorderBottomThick/20_r.svg", + "staticwebassets/icons/BorderBottomThick/24_f.svg", + "staticwebassets/icons/BorderBottomThick/24_r.svg", + "staticwebassets/icons/BorderLeft/20_f.svg", + "staticwebassets/icons/BorderLeft/20_r.svg", + "staticwebassets/icons/BorderLeft/24_f.svg", + "staticwebassets/icons/BorderLeft/24_r.svg", + "staticwebassets/icons/BorderLeftRight/20_f.svg", + "staticwebassets/icons/BorderLeftRight/20_r.svg", + "staticwebassets/icons/BorderLeftRight/24_f.svg", + "staticwebassets/icons/BorderLeftRight/24_r.svg", + "staticwebassets/icons/BorderNone/20_f.svg", + "staticwebassets/icons/BorderNone/20_r.svg", + "staticwebassets/icons/BorderNone/24_f.svg", + "staticwebassets/icons/BorderNone/24_r.svg", + "staticwebassets/icons/BorderOutside/20_f.svg", + "staticwebassets/icons/BorderOutside/20_r.svg", + "staticwebassets/icons/BorderOutside/24_f.svg", + "staticwebassets/icons/BorderOutside/24_r.svg", + "staticwebassets/icons/BorderOutsideThick/20_f.svg", + "staticwebassets/icons/BorderOutsideThick/20_r.svg", + "staticwebassets/icons/BorderOutsideThick/24_f.svg", + "staticwebassets/icons/BorderOutsideThick/24_r.svg", + "staticwebassets/icons/BorderRight/20_f.svg", + "staticwebassets/icons/BorderRight/20_r.svg", + "staticwebassets/icons/BorderRight/24_f.svg", + "staticwebassets/icons/BorderRight/24_r.svg", + "staticwebassets/icons/BorderTop/20_f.svg", + "staticwebassets/icons/BorderTop/20_r.svg", + "staticwebassets/icons/BorderTop/24_f.svg", + "staticwebassets/icons/BorderTop/24_r.svg", + "staticwebassets/icons/BorderTopBottom/20_f.svg", + "staticwebassets/icons/BorderTopBottom/20_r.svg", + "staticwebassets/icons/BorderTopBottom/24_f.svg", + "staticwebassets/icons/BorderTopBottom/24_r.svg", + "staticwebassets/icons/BorderTopBottomDouble/20_f.svg", + "staticwebassets/icons/BorderTopBottomDouble/20_r.svg", + "staticwebassets/icons/BorderTopBottomDouble/24_f.svg", + "staticwebassets/icons/BorderTopBottomDouble/24_r.svg", + "staticwebassets/icons/BorderTopBottomThick/20_f.svg", + "staticwebassets/icons/BorderTopBottomThick/20_r.svg", + "staticwebassets/icons/BorderTopBottomThick/24_f.svg", + "staticwebassets/icons/BorderTopBottomThick/24_r.svg", + "staticwebassets/icons/Bot/20_f.svg", + "staticwebassets/icons/Bot/20_r.svg", + "staticwebassets/icons/Bot/24_f.svg", + "staticwebassets/icons/Bot/24_r.svg", + "staticwebassets/icons/BotAdd/20_f.svg", + "staticwebassets/icons/BotAdd/20_r.svg", + "staticwebassets/icons/BotAdd/24_f.svg", + "staticwebassets/icons/BotAdd/24_r.svg", + "staticwebassets/icons/BotSparkle/20_f.svg", + "staticwebassets/icons/BotSparkle/20_r.svg", + "staticwebassets/icons/BotSparkle/24_f.svg", + "staticwebassets/icons/BotSparkle/24_r.svg", + "staticwebassets/icons/BowTie/20_f.svg", + "staticwebassets/icons/BowTie/20_r.svg", + "staticwebassets/icons/BowTie/24_f.svg", + "staticwebassets/icons/BowTie/24_r.svg", + "staticwebassets/icons/BowlChopsticks/16_f.svg", + "staticwebassets/icons/BowlChopsticks/16_r.svg", + "staticwebassets/icons/BowlChopsticks/20_f.svg", + "staticwebassets/icons/BowlChopsticks/20_r.svg", + "staticwebassets/icons/BowlChopsticks/24_f.svg", + "staticwebassets/icons/BowlChopsticks/24_r.svg", + "staticwebassets/icons/BowlChopsticks/28_f.svg", + "staticwebassets/icons/BowlChopsticks/28_r.svg", + "staticwebassets/icons/BowlSalad/20_f.svg", + "staticwebassets/icons/BowlSalad/20_r.svg", + "staticwebassets/icons/BowlSalad/24_f.svg", + "staticwebassets/icons/BowlSalad/24_r.svg", + "staticwebassets/icons/Box/16_f.svg", + "staticwebassets/icons/Box/16_r.svg", + "staticwebassets/icons/Box/20_f.svg", + "staticwebassets/icons/Box/20_r.svg", + "staticwebassets/icons/Box/24_f.svg", + "staticwebassets/icons/Box/24_r.svg", + "staticwebassets/icons/BoxArrowLeft/20_f.svg", + "staticwebassets/icons/BoxArrowLeft/20_r.svg", + "staticwebassets/icons/BoxArrowLeft/24_f.svg", + "staticwebassets/icons/BoxArrowLeft/24_r.svg", + "staticwebassets/icons/BoxArrowUp/20_f.svg", + "staticwebassets/icons/BoxArrowUp/20_r.svg", + "staticwebassets/icons/BoxArrowUp/24_f.svg", + "staticwebassets/icons/BoxArrowUp/24_r.svg", + "staticwebassets/icons/BoxCheckmark/20_f.svg", + "staticwebassets/icons/BoxCheckmark/20_r.svg", + "staticwebassets/icons/BoxCheckmark/24_f.svg", + "staticwebassets/icons/BoxCheckmark/24_r.svg", + "staticwebassets/icons/BoxDismiss/20_f.svg", + "staticwebassets/icons/BoxDismiss/20_r.svg", + "staticwebassets/icons/BoxDismiss/24_f.svg", + "staticwebassets/icons/BoxDismiss/24_r.svg", + "staticwebassets/icons/BoxEdit/20_f.svg", + "staticwebassets/icons/BoxEdit/20_r.svg", + "staticwebassets/icons/BoxEdit/24_f.svg", + "staticwebassets/icons/BoxEdit/24_r.svg", + "staticwebassets/icons/BoxMultiple/20_f.svg", + "staticwebassets/icons/BoxMultiple/20_r.svg", + "staticwebassets/icons/BoxMultiple/24_f.svg", + "staticwebassets/icons/BoxMultiple/24_r.svg", + "staticwebassets/icons/BoxMultipleArrowLeft/20_f.svg", + "staticwebassets/icons/BoxMultipleArrowLeft/20_r.svg", + "staticwebassets/icons/BoxMultipleArrowLeft/24_f.svg", + "staticwebassets/icons/BoxMultipleArrowLeft/24_r.svg", + "staticwebassets/icons/BoxMultipleArrowRight/20_f.svg", + "staticwebassets/icons/BoxMultipleArrowRight/20_r.svg", + "staticwebassets/icons/BoxMultipleArrowRight/24_f.svg", + "staticwebassets/icons/BoxMultipleArrowRight/24_r.svg", + "staticwebassets/icons/BoxMultipleCheckmark/20_f.svg", + "staticwebassets/icons/BoxMultipleCheckmark/20_r.svg", + "staticwebassets/icons/BoxMultipleCheckmark/24_f.svg", + "staticwebassets/icons/BoxMultipleCheckmark/24_r.svg", + "staticwebassets/icons/BoxMultipleSearch/20_f.svg", + "staticwebassets/icons/BoxMultipleSearch/20_r.svg", + "staticwebassets/icons/BoxMultipleSearch/24_f.svg", + "staticwebassets/icons/BoxMultipleSearch/24_r.svg", + "staticwebassets/icons/BoxSearch/16_f.svg", + "staticwebassets/icons/BoxSearch/16_r.svg", + "staticwebassets/icons/BoxSearch/20_f.svg", + "staticwebassets/icons/BoxSearch/20_r.svg", + "staticwebassets/icons/BoxSearch/24_f.svg", + "staticwebassets/icons/BoxSearch/24_r.svg", + "staticwebassets/icons/BoxToolbox/20_f.svg", + "staticwebassets/icons/BoxToolbox/20_r.svg", + "staticwebassets/icons/BoxToolbox/24_f.svg", + "staticwebassets/icons/BoxToolbox/24_r.svg", + "staticwebassets/icons/Braces/16_f.svg", + "staticwebassets/icons/Braces/16_r.svg", + "staticwebassets/icons/Braces/20_f.svg", + "staticwebassets/icons/Braces/20_r.svg", + "staticwebassets/icons/Braces/24_f.svg", + "staticwebassets/icons/Braces/24_r.svg", + "staticwebassets/icons/Braces/28_f.svg", + "staticwebassets/icons/Braces/28_r.svg", + "staticwebassets/icons/Braces/32_f.svg", + "staticwebassets/icons/Braces/32_r.svg", + "staticwebassets/icons/Braces/48_f.svg", + "staticwebassets/icons/Braces/48_r.svg", + "staticwebassets/icons/BracesCheckmark/16_f.svg", + "staticwebassets/icons/BracesCheckmark/16_r.svg", + "staticwebassets/icons/BracesDismiss/16_f.svg", + "staticwebassets/icons/BracesDismiss/16_r.svg", + "staticwebassets/icons/BracesVariable/20_f.svg", + "staticwebassets/icons/BracesVariable/20_r.svg", + "staticwebassets/icons/BracesVariable/24_f.svg", + "staticwebassets/icons/BracesVariable/24_r.svg", + "staticwebassets/icons/BrainCircuit/20_f.svg", + "staticwebassets/icons/BrainCircuit/20_r.svg", + "staticwebassets/icons/BrainCircuit/24_f.svg", + "staticwebassets/icons/BrainCircuit/24_r.svg", + "staticwebassets/icons/Branch/16_f.svg", + "staticwebassets/icons/Branch/16_r.svg", + "staticwebassets/icons/Branch/20_f.svg", + "staticwebassets/icons/Branch/20_r.svg", + "staticwebassets/icons/Branch/24_f.svg", + "staticwebassets/icons/Branch/24_r.svg", + "staticwebassets/icons/BranchCompare/16_f.svg", + "staticwebassets/icons/BranchCompare/16_r.svg", + "staticwebassets/icons/BranchCompare/20_f.svg", + "staticwebassets/icons/BranchCompare/20_r.svg", + "staticwebassets/icons/BranchCompare/24_f.svg", + "staticwebassets/icons/BranchCompare/24_r.svg", + "staticwebassets/icons/BranchFork/16_f.svg", + "staticwebassets/icons/BranchFork/16_r.svg", + "staticwebassets/icons/BranchFork/20_f.svg", + "staticwebassets/icons/BranchFork/20_r.svg", + "staticwebassets/icons/BranchFork/24_f.svg", + "staticwebassets/icons/BranchFork/24_r.svg", + "staticwebassets/icons/BranchFork/32_f.svg", + "staticwebassets/icons/BranchFork/32_r.svg", + "staticwebassets/icons/BranchForkHint/20_f.svg", + "staticwebassets/icons/BranchForkHint/20_r.svg", + "staticwebassets/icons/BranchForkHint/24_f.svg", + "staticwebassets/icons/BranchForkHint/24_r.svg", + "staticwebassets/icons/BranchForkLink/20_f.svg", + "staticwebassets/icons/BranchForkLink/20_r.svg", + "staticwebassets/icons/BranchForkLink/24_f.svg", + "staticwebassets/icons/BranchForkLink/24_r.svg", + "staticwebassets/icons/BranchRequest/20_f.svg", + "staticwebassets/icons/BranchRequest/20_r.svg", + "staticwebassets/icons/BreakoutRoom/20_f.svg", + "staticwebassets/icons/BreakoutRoom/20_r.svg", + "staticwebassets/icons/BreakoutRoom/24_f.svg", + "staticwebassets/icons/BreakoutRoom/24_r.svg", + "staticwebassets/icons/BreakoutRoom/28_f.svg", + "staticwebassets/icons/BreakoutRoom/28_r.svg", + "staticwebassets/icons/Briefcase/12_f.svg", + "staticwebassets/icons/Briefcase/12_r.svg", + "staticwebassets/icons/Briefcase/16_f.svg", + "staticwebassets/icons/Briefcase/16_r.svg", + "staticwebassets/icons/Briefcase/20_f.svg", + "staticwebassets/icons/Briefcase/20_r.svg", + "staticwebassets/icons/Briefcase/24_f.svg", + "staticwebassets/icons/Briefcase/24_r.svg", + "staticwebassets/icons/Briefcase/28_f.svg", + "staticwebassets/icons/Briefcase/28_r.svg", + "staticwebassets/icons/Briefcase/32_f.svg", + "staticwebassets/icons/Briefcase/32_r.svg", + "staticwebassets/icons/Briefcase/48_f.svg", + "staticwebassets/icons/Briefcase/48_r.svg", + "staticwebassets/icons/BriefcaseMedical/16_f.svg", + "staticwebassets/icons/BriefcaseMedical/16_r.svg", + "staticwebassets/icons/BriefcaseMedical/20_f.svg", + "staticwebassets/icons/BriefcaseMedical/20_r.svg", + "staticwebassets/icons/BriefcaseMedical/24_f.svg", + "staticwebassets/icons/BriefcaseMedical/24_r.svg", + "staticwebassets/icons/BriefcaseMedical/32_f.svg", + "staticwebassets/icons/BriefcaseMedical/32_r.svg", + "staticwebassets/icons/BriefcaseOff/16_f.svg", + "staticwebassets/icons/BriefcaseOff/16_r.svg", + "staticwebassets/icons/BriefcaseOff/20_f.svg", + "staticwebassets/icons/BriefcaseOff/20_r.svg", + "staticwebassets/icons/BriefcaseOff/24_f.svg", + "staticwebassets/icons/BriefcaseOff/24_r.svg", + "staticwebassets/icons/BriefcaseOff/28_f.svg", + "staticwebassets/icons/BriefcaseOff/28_r.svg", + "staticwebassets/icons/BriefcaseOff/32_f.svg", + "staticwebassets/icons/BriefcaseOff/32_r.svg", + "staticwebassets/icons/BriefcaseOff/48_f.svg", + "staticwebassets/icons/BriefcaseOff/48_r.svg", + "staticwebassets/icons/BrightnessHigh/16_f.svg", + "staticwebassets/icons/BrightnessHigh/16_r.svg", + "staticwebassets/icons/BrightnessHigh/20_f.svg", + "staticwebassets/icons/BrightnessHigh/20_r.svg", + "staticwebassets/icons/BrightnessHigh/24_f.svg", + "staticwebassets/icons/BrightnessHigh/24_r.svg", + "staticwebassets/icons/BrightnessHigh/28_f.svg", + "staticwebassets/icons/BrightnessHigh/28_r.svg", + "staticwebassets/icons/BrightnessHigh/32_f.svg", + "staticwebassets/icons/BrightnessHigh/32_r.svg", + "staticwebassets/icons/BrightnessHigh/48_f.svg", + "staticwebassets/icons/BrightnessHigh/48_r.svg", + "staticwebassets/icons/BrightnessLow/16_f.svg", + "staticwebassets/icons/BrightnessLow/16_r.svg", + "staticwebassets/icons/BrightnessLow/20_f.svg", + "staticwebassets/icons/BrightnessLow/20_r.svg", + "staticwebassets/icons/BrightnessLow/24_f.svg", + "staticwebassets/icons/BrightnessLow/24_r.svg", + "staticwebassets/icons/BrightnessLow/28_f.svg", + "staticwebassets/icons/BrightnessLow/28_r.svg", + "staticwebassets/icons/BrightnessLow/32_f.svg", + "staticwebassets/icons/BrightnessLow/32_r.svg", + "staticwebassets/icons/BrightnessLow/48_f.svg", + "staticwebassets/icons/BrightnessLow/48_r.svg", + "staticwebassets/icons/BroadActivityFeed/16_f.svg", + "staticwebassets/icons/BroadActivityFeed/16_r.svg", + "staticwebassets/icons/BroadActivityFeed/20_f.svg", + "staticwebassets/icons/BroadActivityFeed/20_r.svg", + "staticwebassets/icons/BroadActivityFeed/24_f.svg", + "staticwebassets/icons/BroadActivityFeed/24_r.svg", + "staticwebassets/icons/Broom/16_f.svg", + "staticwebassets/icons/Broom/16_r.svg", + "staticwebassets/icons/Broom/20_f.svg", + "staticwebassets/icons/Broom/20_r.svg", + "staticwebassets/icons/Broom/24_f.svg", + "staticwebassets/icons/Broom/24_r.svg", + "staticwebassets/icons/Broom/28_f.svg", + "staticwebassets/icons/Broom/28_r.svg", + "staticwebassets/icons/BubbleMultiple/20_f.svg", + "staticwebassets/icons/BubbleMultiple/20_r.svg", + "staticwebassets/icons/Bug/16_f.svg", + "staticwebassets/icons/Bug/16_r.svg", + "staticwebassets/icons/Bug/20_f.svg", + "staticwebassets/icons/Bug/20_r.svg", + "staticwebassets/icons/Bug/24_f.svg", + "staticwebassets/icons/Bug/24_r.svg", + "staticwebassets/icons/BugArrowCounterclockwise/20_f.svg", + "staticwebassets/icons/BugArrowCounterclockwise/20_r.svg", + "staticwebassets/icons/BugProhibited/20_f.svg", + "staticwebassets/icons/BugProhibited/20_r.svg", + "staticwebassets/icons/Building/16_f.svg", + "staticwebassets/icons/Building/16_r.svg", + "staticwebassets/icons/Building/20_f.svg", + "staticwebassets/icons/Building/20_r.svg", + "staticwebassets/icons/Building/24_f.svg", + "staticwebassets/icons/Building/24_r.svg", + "staticwebassets/icons/Building/32_f.svg", + "staticwebassets/icons/Building/32_r.svg", + "staticwebassets/icons/Building/48_f.svg", + "staticwebassets/icons/Building/48_r.svg", + "staticwebassets/icons/BuildingBank/16_f.svg", + "staticwebassets/icons/BuildingBank/16_r.svg", + "staticwebassets/icons/BuildingBank/20_f.svg", + "staticwebassets/icons/BuildingBank/20_r.svg", + "staticwebassets/icons/BuildingBank/24_f.svg", + "staticwebassets/icons/BuildingBank/24_r.svg", + "staticwebassets/icons/BuildingBank/28_f.svg", + "staticwebassets/icons/BuildingBank/28_r.svg", + "staticwebassets/icons/BuildingBank/48_f.svg", + "staticwebassets/icons/BuildingBank/48_r.svg", + "staticwebassets/icons/BuildingBankLink/16_f.svg", + "staticwebassets/icons/BuildingBankLink/16_r.svg", + "staticwebassets/icons/BuildingBankLink/20_f.svg", + "staticwebassets/icons/BuildingBankLink/20_r.svg", + "staticwebassets/icons/BuildingBankLink/24_f.svg", + "staticwebassets/icons/BuildingBankLink/24_r.svg", + "staticwebassets/icons/BuildingBankLink/28_f.svg", + "staticwebassets/icons/BuildingBankLink/28_r.svg", + "staticwebassets/icons/BuildingBankLink/48_f.svg", + "staticwebassets/icons/BuildingBankLink/48_r.svg", + "staticwebassets/icons/BuildingBankToolbox/20_f.svg", + "staticwebassets/icons/BuildingBankToolbox/20_r.svg", + "staticwebassets/icons/BuildingBankToolbox/24_f.svg", + "staticwebassets/icons/BuildingBankToolbox/24_r.svg", + "staticwebassets/icons/BuildingDesktop/16_f.svg", + "staticwebassets/icons/BuildingDesktop/16_r.svg", + "staticwebassets/icons/BuildingDesktop/20_f.svg", + "staticwebassets/icons/BuildingDesktop/20_r.svg", + "staticwebassets/icons/BuildingDesktop/24_f.svg", + "staticwebassets/icons/BuildingDesktop/24_r.svg", + "staticwebassets/icons/BuildingFactory/16_f.svg", + "staticwebassets/icons/BuildingFactory/16_r.svg", + "staticwebassets/icons/BuildingFactory/20_f.svg", + "staticwebassets/icons/BuildingFactory/20_r.svg", + "staticwebassets/icons/BuildingFactory/24_f.svg", + "staticwebassets/icons/BuildingFactory/24_r.svg", + "staticwebassets/icons/BuildingFactory/28_f.svg", + "staticwebassets/icons/BuildingFactory/28_r.svg", + "staticwebassets/icons/BuildingFactory/32_f.svg", + "staticwebassets/icons/BuildingFactory/32_r.svg", + "staticwebassets/icons/BuildingFactory/48_f.svg", + "staticwebassets/icons/BuildingFactory/48_r.svg", + "staticwebassets/icons/BuildingGovernment/20_f.svg", + "staticwebassets/icons/BuildingGovernment/20_r.svg", + "staticwebassets/icons/BuildingGovernment/24_f.svg", + "staticwebassets/icons/BuildingGovernment/24_r.svg", + "staticwebassets/icons/BuildingGovernment/32_f.svg", + "staticwebassets/icons/BuildingGovernment/32_r.svg", + "staticwebassets/icons/BuildingHome/16_f.svg", + "staticwebassets/icons/BuildingHome/16_r.svg", + "staticwebassets/icons/BuildingHome/20_f.svg", + "staticwebassets/icons/BuildingHome/20_r.svg", + "staticwebassets/icons/BuildingHome/24_f.svg", + "staticwebassets/icons/BuildingHome/24_r.svg", + "staticwebassets/icons/BuildingLighthouse/20_f.svg", + "staticwebassets/icons/BuildingLighthouse/20_r.svg", + "staticwebassets/icons/BuildingMore/24_f.svg", + "staticwebassets/icons/BuildingMore/24_r.svg", + "staticwebassets/icons/BuildingMultiple/20_f.svg", + "staticwebassets/icons/BuildingMultiple/20_r.svg", + "staticwebassets/icons/BuildingMultiple/24_f.svg", + "staticwebassets/icons/BuildingMultiple/24_r.svg", + "staticwebassets/icons/BuildingPeople/16_f.svg", + "staticwebassets/icons/BuildingPeople/16_r.svg", + "staticwebassets/icons/BuildingPeople/20_f.svg", + "staticwebassets/icons/BuildingPeople/20_r.svg", + "staticwebassets/icons/BuildingPeople/24_f.svg", + "staticwebassets/icons/BuildingPeople/24_r.svg", + "staticwebassets/icons/BuildingRetail/20_f.svg", + "staticwebassets/icons/BuildingRetail/20_r.svg", + "staticwebassets/icons/BuildingRetail/24_f.svg", + "staticwebassets/icons/BuildingRetail/24_r.svg", + "staticwebassets/icons/BuildingRetailMoney/20_f.svg", + "staticwebassets/icons/BuildingRetailMoney/20_r.svg", + "staticwebassets/icons/BuildingRetailMoney/24_f.svg", + "staticwebassets/icons/BuildingRetailMoney/24_r.svg", + "staticwebassets/icons/BuildingRetailMore/20_f.svg", + "staticwebassets/icons/BuildingRetailMore/20_r.svg", + "staticwebassets/icons/BuildingRetailMore/24_f.svg", + "staticwebassets/icons/BuildingRetailMore/24_r.svg", + "staticwebassets/icons/BuildingRetailMore/32_f.svg", + "staticwebassets/icons/BuildingRetailMore/32_r.svg", + "staticwebassets/icons/BuildingRetailShield/20_f.svg", + "staticwebassets/icons/BuildingRetailShield/20_r.svg", + "staticwebassets/icons/BuildingRetailShield/24_f.svg", + "staticwebassets/icons/BuildingRetailShield/24_r.svg", + "staticwebassets/icons/BuildingRetailToolbox/20_f.svg", + "staticwebassets/icons/BuildingRetailToolbox/20_r.svg", + "staticwebassets/icons/BuildingRetailToolbox/24_f.svg", + "staticwebassets/icons/BuildingRetailToolbox/24_r.svg", + "staticwebassets/icons/BuildingShop/16_f.svg", + "staticwebassets/icons/BuildingShop/16_r.svg", + "staticwebassets/icons/BuildingShop/20_f.svg", + "staticwebassets/icons/BuildingShop/20_r.svg", + "staticwebassets/icons/BuildingShop/24_f.svg", + "staticwebassets/icons/BuildingShop/24_r.svg", + "staticwebassets/icons/BuildingSkyscraper/16_f.svg", + "staticwebassets/icons/BuildingSkyscraper/16_r.svg", + "staticwebassets/icons/BuildingSkyscraper/20_f.svg", + "staticwebassets/icons/BuildingSkyscraper/20_r.svg", + "staticwebassets/icons/BuildingSkyscraper/24_f.svg", + "staticwebassets/icons/BuildingSkyscraper/24_r.svg", + "staticwebassets/icons/BuildingTownhouse/20_f.svg", + "staticwebassets/icons/BuildingTownhouse/20_r.svg", + "staticwebassets/icons/BuildingTownhouse/24_f.svg", + "staticwebassets/icons/BuildingTownhouse/24_r.svg", + "staticwebassets/icons/BuildingTownhouse/32_f.svg", + "staticwebassets/icons/BuildingTownhouse/32_r.svg", + "staticwebassets/icons/Button/16_f.svg", + "staticwebassets/icons/Button/16_r.svg", + "staticwebassets/icons/Button/20_f.svg", + "staticwebassets/icons/Button/20_r.svg", + "staticwebassets/icons/CD/16_f.svg", + "staticwebassets/icons/CD/16_r.svg", + "staticwebassets/icons/Calculator/16_f.svg", + "staticwebassets/icons/Calculator/16_r.svg", + "staticwebassets/icons/Calculator/20_f.svg", + "staticwebassets/icons/Calculator/20_r.svg", + "staticwebassets/icons/Calculator/24_f.svg", + "staticwebassets/icons/Calculator/24_r.svg", + "staticwebassets/icons/CalculatorArrowClockwise/20_f.svg", + "staticwebassets/icons/CalculatorArrowClockwise/20_r.svg", + "staticwebassets/icons/CalculatorArrowClockwise/24_f.svg", + "staticwebassets/icons/CalculatorArrowClockwise/24_r.svg", + "staticwebassets/icons/CalculatorMultiple/16_f.svg", + "staticwebassets/icons/CalculatorMultiple/16_r.svg", + "staticwebassets/icons/CalculatorMultiple/20_f.svg", + "staticwebassets/icons/CalculatorMultiple/20_r.svg", + "staticwebassets/icons/CalculatorMultiple/24_f.svg", + "staticwebassets/icons/CalculatorMultiple/24_r.svg", + "staticwebassets/icons/Calendar3Day/16_f.svg", + "staticwebassets/icons/Calendar3Day/16_r.svg", + "staticwebassets/icons/Calendar3Day/20_f.svg", + "staticwebassets/icons/Calendar3Day/20_r.svg", + "staticwebassets/icons/Calendar3Day/24_f.svg", + "staticwebassets/icons/Calendar3Day/24_r.svg", + "staticwebassets/icons/Calendar3Day/28_f.svg", + "staticwebassets/icons/Calendar3Day/28_r.svg", + "staticwebassets/icons/CalendarAdd/16_f.svg", + "staticwebassets/icons/CalendarAdd/16_r.svg", + "staticwebassets/icons/CalendarAdd/20_f.svg", + "staticwebassets/icons/CalendarAdd/20_r.svg", + "staticwebassets/icons/CalendarAdd/24_f.svg", + "staticwebassets/icons/CalendarAdd/24_r.svg", + "staticwebassets/icons/CalendarAdd/28_f.svg", + "staticwebassets/icons/CalendarAdd/28_r.svg", + "staticwebassets/icons/CalendarAgenda/20_f.svg", + "staticwebassets/icons/CalendarAgenda/20_r.svg", + "staticwebassets/icons/CalendarAgenda/24_f.svg", + "staticwebassets/icons/CalendarAgenda/24_r.svg", + "staticwebassets/icons/CalendarAgenda/28_f.svg", + "staticwebassets/icons/CalendarAgenda/28_r.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/16_f.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/16_r.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/20_f.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/20_r.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/24_f.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/24_r.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/28_f.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/28_r.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/32_f.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/32_r.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/48_f.svg", + "staticwebassets/icons/CalendarArrowCounterclockwise/48_r.svg", + "staticwebassets/icons/CalendarArrowDown/20_f.svg", + "staticwebassets/icons/CalendarArrowDown/20_r.svg", + "staticwebassets/icons/CalendarArrowDown/24_f.svg", + "staticwebassets/icons/CalendarArrowDown/24_r.svg", + "staticwebassets/icons/CalendarArrowRight/16_f.svg", + "staticwebassets/icons/CalendarArrowRight/16_r.svg", + "staticwebassets/icons/CalendarArrowRight/20_f.svg", + "staticwebassets/icons/CalendarArrowRight/20_r.svg", + "staticwebassets/icons/CalendarArrowRight/24_f.svg", + "staticwebassets/icons/CalendarArrowRight/24_r.svg", + "staticwebassets/icons/CalendarAssistant/16_f.svg", + "staticwebassets/icons/CalendarAssistant/16_r.svg", + "staticwebassets/icons/CalendarAssistant/20_f.svg", + "staticwebassets/icons/CalendarAssistant/20_r.svg", + "staticwebassets/icons/CalendarAssistant/24_f.svg", + "staticwebassets/icons/CalendarAssistant/24_r.svg", + "staticwebassets/icons/CalendarCancel/16_f.svg", + "staticwebassets/icons/CalendarCancel/16_r.svg", + "staticwebassets/icons/CalendarCancel/20_f.svg", + "staticwebassets/icons/CalendarCancel/20_r.svg", + "staticwebassets/icons/CalendarCancel/24_f.svg", + "staticwebassets/icons/CalendarCancel/24_r.svg", + "staticwebassets/icons/CalendarChat/20_f.svg", + "staticwebassets/icons/CalendarChat/20_r.svg", + "staticwebassets/icons/CalendarChat/24_f.svg", + "staticwebassets/icons/CalendarChat/24_r.svg", + "staticwebassets/icons/CalendarCheckmark/16_f.svg", + "staticwebassets/icons/CalendarCheckmark/16_r.svg", + "staticwebassets/icons/CalendarCheckmark/20_f.svg", + "staticwebassets/icons/CalendarCheckmark/20_r.svg", + "staticwebassets/icons/CalendarCheckmark/24_f.svg", + "staticwebassets/icons/CalendarCheckmark/24_r.svg", + "staticwebassets/icons/CalendarCheckmark/28_f.svg", + "staticwebassets/icons/CalendarCheckmark/28_r.svg", + "staticwebassets/icons/CalendarClock/16_f.svg", + "staticwebassets/icons/CalendarClock/16_r.svg", + "staticwebassets/icons/CalendarClock/20_f.svg", + "staticwebassets/icons/CalendarClock/20_r.svg", + "staticwebassets/icons/CalendarClock/24_f.svg", + "staticwebassets/icons/CalendarClock/24_r.svg", + "staticwebassets/icons/CalendarDataBar/16_f.svg", + "staticwebassets/icons/CalendarDataBar/16_r.svg", + "staticwebassets/icons/CalendarDataBar/20_f.svg", + "staticwebassets/icons/CalendarDataBar/20_r.svg", + "staticwebassets/icons/CalendarDataBar/24_f.svg", + "staticwebassets/icons/CalendarDataBar/24_r.svg", + "staticwebassets/icons/CalendarDataBar/28_f.svg", + "staticwebassets/icons/CalendarDataBar/28_r.svg", + "staticwebassets/icons/CalendarDay/16_f.svg", + "staticwebassets/icons/CalendarDay/16_r.svg", + "staticwebassets/icons/CalendarDay/20_f.svg", + "staticwebassets/icons/CalendarDay/20_r.svg", + "staticwebassets/icons/CalendarDay/24_f.svg", + "staticwebassets/icons/CalendarDay/24_r.svg", + "staticwebassets/icons/CalendarDay/28_f.svg", + "staticwebassets/icons/CalendarDay/28_r.svg", + "staticwebassets/icons/CalendarEdit/16_f.svg", + "staticwebassets/icons/CalendarEdit/16_r.svg", + "staticwebassets/icons/CalendarEdit/20_f.svg", + "staticwebassets/icons/CalendarEdit/20_r.svg", + "staticwebassets/icons/CalendarEdit/24_f.svg", + "staticwebassets/icons/CalendarEdit/24_r.svg", + "staticwebassets/icons/CalendarEmpty/16_f.svg", + "staticwebassets/icons/CalendarEmpty/16_r.svg", + "staticwebassets/icons/CalendarEmpty/20_f.svg", + "staticwebassets/icons/CalendarEmpty/20_r.svg", + "staticwebassets/icons/CalendarEmpty/24_f.svg", + "staticwebassets/icons/CalendarEmpty/24_r.svg", + "staticwebassets/icons/CalendarEmpty/28_f.svg", + "staticwebassets/icons/CalendarEmpty/28_r.svg", + "staticwebassets/icons/CalendarEmpty/32_f.svg", + "staticwebassets/icons/CalendarEmpty/32_r.svg", + "staticwebassets/icons/CalendarEmpty/48_f.svg", + "staticwebassets/icons/CalendarEmpty/48_r.svg", + "staticwebassets/icons/CalendarError/16_f.svg", + "staticwebassets/icons/CalendarError/16_r.svg", + "staticwebassets/icons/CalendarError/20_f.svg", + "staticwebassets/icons/CalendarError/20_r.svg", + "staticwebassets/icons/CalendarError/24_f.svg", + "staticwebassets/icons/CalendarError/24_r.svg", + "staticwebassets/icons/CalendarInfo/16_f.svg", + "staticwebassets/icons/CalendarInfo/16_r.svg", + "staticwebassets/icons/CalendarInfo/20_f.svg", + "staticwebassets/icons/CalendarInfo/20_r.svg", + "staticwebassets/icons/CalendarLTR/12_f.svg", + "staticwebassets/icons/CalendarLTR/12_r.svg", + "staticwebassets/icons/CalendarLTR/16_f.svg", + "staticwebassets/icons/CalendarLTR/16_r.svg", + "staticwebassets/icons/CalendarLTR/20_f.svg", + "staticwebassets/icons/CalendarLTR/20_r.svg", + "staticwebassets/icons/CalendarLTR/24_f.svg", + "staticwebassets/icons/CalendarLTR/24_r.svg", + "staticwebassets/icons/CalendarLTR/28_f.svg", + "staticwebassets/icons/CalendarLTR/28_r.svg", + "staticwebassets/icons/CalendarLTR/32_f.svg", + "staticwebassets/icons/CalendarLTR/32_r.svg", + "staticwebassets/icons/CalendarLTR/48_f.svg", + "staticwebassets/icons/CalendarLTR/48_r.svg", + "staticwebassets/icons/CalendarLock/16_f.svg", + "staticwebassets/icons/CalendarLock/16_r.svg", + "staticwebassets/icons/CalendarLock/20_f.svg", + "staticwebassets/icons/CalendarLock/20_r.svg", + "staticwebassets/icons/CalendarLock/24_f.svg", + "staticwebassets/icons/CalendarLock/24_r.svg", + "staticwebassets/icons/CalendarLock/28_f.svg", + "staticwebassets/icons/CalendarLock/28_r.svg", + "staticwebassets/icons/CalendarLock/32_f.svg", + "staticwebassets/icons/CalendarLock/32_r.svg", + "staticwebassets/icons/CalendarLock/48_f.svg", + "staticwebassets/icons/CalendarLock/48_r.svg", + "staticwebassets/icons/CalendarMail/16_f.svg", + "staticwebassets/icons/CalendarMail/16_r.svg", + "staticwebassets/icons/CalendarMail/20_f.svg", + "staticwebassets/icons/CalendarMail/20_r.svg", + "staticwebassets/icons/CalendarMention/20_f.svg", + "staticwebassets/icons/CalendarMention/20_r.svg", + "staticwebassets/icons/CalendarMonth/20_f.svg", + "staticwebassets/icons/CalendarMonth/20_r.svg", + "staticwebassets/icons/CalendarMonth/24_f.svg", + "staticwebassets/icons/CalendarMonth/24_r.svg", + "staticwebassets/icons/CalendarMonth/28_f.svg", + "staticwebassets/icons/CalendarMonth/28_r.svg", + "staticwebassets/icons/CalendarMonth/32_f.svg", + "staticwebassets/icons/CalendarMonth/32_r.svg", + "staticwebassets/icons/CalendarMultiple/16_f.svg", + "staticwebassets/icons/CalendarMultiple/16_r.svg", + "staticwebassets/icons/CalendarMultiple/20_f.svg", + "staticwebassets/icons/CalendarMultiple/20_r.svg", + "staticwebassets/icons/CalendarMultiple/24_f.svg", + "staticwebassets/icons/CalendarMultiple/24_r.svg", + "staticwebassets/icons/CalendarMultiple/28_f.svg", + "staticwebassets/icons/CalendarMultiple/28_r.svg", + "staticwebassets/icons/CalendarMultiple/32_f.svg", + "staticwebassets/icons/CalendarMultiple/32_r.svg", + "staticwebassets/icons/CalendarPattern/16_f.svg", + "staticwebassets/icons/CalendarPattern/16_r.svg", + "staticwebassets/icons/CalendarPattern/20_f.svg", + "staticwebassets/icons/CalendarPattern/20_r.svg", + "staticwebassets/icons/CalendarPerson/16_f.svg", + "staticwebassets/icons/CalendarPerson/16_r.svg", + "staticwebassets/icons/CalendarPerson/20_f.svg", + "staticwebassets/icons/CalendarPerson/20_r.svg", + "staticwebassets/icons/CalendarPerson/24_f.svg", + "staticwebassets/icons/CalendarPerson/24_r.svg", + "staticwebassets/icons/CalendarPhone/16_f.svg", + "staticwebassets/icons/CalendarPhone/16_r.svg", + "staticwebassets/icons/CalendarPhone/20_f.svg", + "staticwebassets/icons/CalendarPhone/20_r.svg", + "staticwebassets/icons/CalendarPlay/16_f.svg", + "staticwebassets/icons/CalendarPlay/16_r.svg", + "staticwebassets/icons/CalendarPlay/20_f.svg", + "staticwebassets/icons/CalendarPlay/20_r.svg", + "staticwebassets/icons/CalendarPlay/24_f.svg", + "staticwebassets/icons/CalendarPlay/24_r.svg", + "staticwebassets/icons/CalendarPlay/28_f.svg", + "staticwebassets/icons/CalendarPlay/28_r.svg", + "staticwebassets/icons/CalendarQuestionMark/16_f.svg", + "staticwebassets/icons/CalendarQuestionMark/16_r.svg", + "staticwebassets/icons/CalendarQuestionMark/20_f.svg", + "staticwebassets/icons/CalendarQuestionMark/20_r.svg", + "staticwebassets/icons/CalendarQuestionMark/24_f.svg", + "staticwebassets/icons/CalendarQuestionMark/24_r.svg", + "staticwebassets/icons/CalendarRTL/12_f.svg", + "staticwebassets/icons/CalendarRTL/12_r.svg", + "staticwebassets/icons/CalendarRTL/16_f.svg", + "staticwebassets/icons/CalendarRTL/16_r.svg", + "staticwebassets/icons/CalendarRTL/20_f.svg", + "staticwebassets/icons/CalendarRTL/20_r.svg", + "staticwebassets/icons/CalendarRTL/24_f.svg", + "staticwebassets/icons/CalendarRTL/24_r.svg", + "staticwebassets/icons/CalendarRTL/28_f.svg", + "staticwebassets/icons/CalendarRTL/28_r.svg", + "staticwebassets/icons/CalendarRTL/32_f.svg", + "staticwebassets/icons/CalendarRTL/32_r.svg", + "staticwebassets/icons/CalendarRTL/48_f.svg", + "staticwebassets/icons/CalendarRTL/48_r.svg", + "staticwebassets/icons/CalendarReply/16_f.svg", + "staticwebassets/icons/CalendarReply/16_r.svg", + "staticwebassets/icons/CalendarReply/20_f.svg", + "staticwebassets/icons/CalendarReply/20_r.svg", + "staticwebassets/icons/CalendarReply/24_f.svg", + "staticwebassets/icons/CalendarReply/24_r.svg", + "staticwebassets/icons/CalendarReply/28_f.svg", + "staticwebassets/icons/CalendarReply/28_r.svg", + "staticwebassets/icons/CalendarSearch/16_f.svg", + "staticwebassets/icons/CalendarSearch/16_r.svg", + "staticwebassets/icons/CalendarSearch/20_f.svg", + "staticwebassets/icons/CalendarSearch/20_r.svg", + "staticwebassets/icons/CalendarSettings/16_f.svg", + "staticwebassets/icons/CalendarSettings/16_r.svg", + "staticwebassets/icons/CalendarSettings/20_f.svg", + "staticwebassets/icons/CalendarSettings/20_r.svg", + "staticwebassets/icons/CalendarSettings/24_f.svg", + "staticwebassets/icons/CalendarSettings/24_r.svg", + "staticwebassets/icons/CalendarSettings/28_f.svg", + "staticwebassets/icons/CalendarSettings/28_r.svg", + "staticwebassets/icons/CalendarSettings/32_f.svg", + "staticwebassets/icons/CalendarSettings/32_r.svg", + "staticwebassets/icons/CalendarSettings/48_f.svg", + "staticwebassets/icons/CalendarSettings/48_r.svg", + "staticwebassets/icons/CalendarShield/16_f.svg", + "staticwebassets/icons/CalendarShield/16_r.svg", + "staticwebassets/icons/CalendarShield/20_f.svg", + "staticwebassets/icons/CalendarShield/20_r.svg", + "staticwebassets/icons/CalendarShield/24_f.svg", + "staticwebassets/icons/CalendarShield/24_r.svg", + "staticwebassets/icons/CalendarShield/28_f.svg", + "staticwebassets/icons/CalendarShield/28_r.svg", + "staticwebassets/icons/CalendarShield/32_f.svg", + "staticwebassets/icons/CalendarShield/32_r.svg", + "staticwebassets/icons/CalendarShield/48_f.svg", + "staticwebassets/icons/CalendarShield/48_r.svg", + "staticwebassets/icons/CalendarStar/16_f.svg", + "staticwebassets/icons/CalendarStar/16_r.svg", + "staticwebassets/icons/CalendarStar/20_f.svg", + "staticwebassets/icons/CalendarStar/20_r.svg", + "staticwebassets/icons/CalendarStar/24_f.svg", + "staticwebassets/icons/CalendarStar/24_r.svg", + "staticwebassets/icons/CalendarSync/16_f.svg", + "staticwebassets/icons/CalendarSync/16_r.svg", + "staticwebassets/icons/CalendarSync/20_f.svg", + "staticwebassets/icons/CalendarSync/20_r.svg", + "staticwebassets/icons/CalendarSync/24_f.svg", + "staticwebassets/icons/CalendarSync/24_r.svg", + "staticwebassets/icons/CalendarToday/16_f.svg", + "staticwebassets/icons/CalendarToday/16_r.svg", + "staticwebassets/icons/CalendarToday/20_f.svg", + "staticwebassets/icons/CalendarToday/20_r.svg", + "staticwebassets/icons/CalendarToday/24_f.svg", + "staticwebassets/icons/CalendarToday/24_r.svg", + "staticwebassets/icons/CalendarToday/28_f.svg", + "staticwebassets/icons/CalendarToday/28_r.svg", + "staticwebassets/icons/CalendarToolbox/20_f.svg", + "staticwebassets/icons/CalendarToolbox/20_r.svg", + "staticwebassets/icons/CalendarToolbox/24_f.svg", + "staticwebassets/icons/CalendarToolbox/24_r.svg", + "staticwebassets/icons/CalendarWeekNumbers/20_f.svg", + "staticwebassets/icons/CalendarWeekNumbers/20_r.svg", + "staticwebassets/icons/CalendarWeekNumbers/24_f.svg", + "staticwebassets/icons/CalendarWeekNumbers/24_r.svg", + "staticwebassets/icons/CalendarWeekStart/20_f.svg", + "staticwebassets/icons/CalendarWeekStart/20_r.svg", + "staticwebassets/icons/CalendarWeekStart/24_f.svg", + "staticwebassets/icons/CalendarWeekStart/24_r.svg", + "staticwebassets/icons/CalendarWeekStart/28_f.svg", + "staticwebassets/icons/CalendarWeekStart/28_r.svg", + "staticwebassets/icons/CalendarWorkWeek/16_f.svg", + "staticwebassets/icons/CalendarWorkWeek/16_r.svg", + "staticwebassets/icons/CalendarWorkWeek/20_f.svg", + "staticwebassets/icons/CalendarWorkWeek/20_r.svg", + "staticwebassets/icons/CalendarWorkWeek/24_f.svg", + "staticwebassets/icons/CalendarWorkWeek/24_r.svg", + "staticwebassets/icons/CalendarWorkWeek/28_f.svg", + "staticwebassets/icons/CalendarWorkWeek/28_r.svg", + "staticwebassets/icons/Call/12_f.svg", + "staticwebassets/icons/Call/12_r.svg", + "staticwebassets/icons/Call/16_f.svg", + "staticwebassets/icons/Call/16_r.svg", + "staticwebassets/icons/Call/20_f.svg", + "staticwebassets/icons/Call/20_r.svg", + "staticwebassets/icons/Call/24_f.svg", + "staticwebassets/icons/Call/24_r.svg", + "staticwebassets/icons/Call/28_f.svg", + "staticwebassets/icons/Call/28_r.svg", + "staticwebassets/icons/Call/32_f.svg", + "staticwebassets/icons/Call/32_r.svg", + "staticwebassets/icons/Call/48_f.svg", + "staticwebassets/icons/Call/48_r.svg", + "staticwebassets/icons/CallAdd/16_f.svg", + "staticwebassets/icons/CallAdd/16_r.svg", + "staticwebassets/icons/CallAdd/20_f.svg", + "staticwebassets/icons/CallAdd/20_r.svg", + "staticwebassets/icons/CallAdd/24_f.svg", + "staticwebassets/icons/CallAdd/24_r.svg", + "staticwebassets/icons/CallCheckmark/20_f.svg", + "staticwebassets/icons/CallCheckmark/20_r.svg", + "staticwebassets/icons/CallCheckmark/24_f.svg", + "staticwebassets/icons/CallCheckmark/24_r.svg", + "staticwebassets/icons/CallConnecting/20_f.svg", + "staticwebassets/icons/CallConnecting/20_r.svg", + "staticwebassets/icons/CallDismiss/16_f.svg", + "staticwebassets/icons/CallDismiss/16_r.svg", + "staticwebassets/icons/CallDismiss/20_f.svg", + "staticwebassets/icons/CallDismiss/20_r.svg", + "staticwebassets/icons/CallDismiss/24_f.svg", + "staticwebassets/icons/CallDismiss/24_r.svg", + "staticwebassets/icons/CallEnd/16_f.svg", + "staticwebassets/icons/CallEnd/16_r.svg", + "staticwebassets/icons/CallEnd/20_f.svg", + "staticwebassets/icons/CallEnd/20_r.svg", + "staticwebassets/icons/CallEnd/24_f.svg", + "staticwebassets/icons/CallEnd/24_r.svg", + "staticwebassets/icons/CallEnd/28_f.svg", + "staticwebassets/icons/CallEnd/28_r.svg", + "staticwebassets/icons/CallExclamation/20_f.svg", + "staticwebassets/icons/CallExclamation/20_r.svg", + "staticwebassets/icons/CallForward/16_f.svg", + "staticwebassets/icons/CallForward/16_r.svg", + "staticwebassets/icons/CallForward/20_f.svg", + "staticwebassets/icons/CallForward/20_r.svg", + "staticwebassets/icons/CallForward/24_f.svg", + "staticwebassets/icons/CallForward/24_r.svg", + "staticwebassets/icons/CallForward/28_f.svg", + "staticwebassets/icons/CallForward/28_r.svg", + "staticwebassets/icons/CallForward/32_f.svg", + "staticwebassets/icons/CallForward/32_r.svg", + "staticwebassets/icons/CallForward/48_f.svg", + "staticwebassets/icons/CallForward/48_r.svg", + "staticwebassets/icons/CallInbound/16_f.svg", + "staticwebassets/icons/CallInbound/16_r.svg", + "staticwebassets/icons/CallInbound/20_f.svg", + "staticwebassets/icons/CallInbound/20_r.svg", + "staticwebassets/icons/CallInbound/24_f.svg", + "staticwebassets/icons/CallInbound/24_r.svg", + "staticwebassets/icons/CallInbound/28_f.svg", + "staticwebassets/icons/CallInbound/28_r.svg", + "staticwebassets/icons/CallInbound/48_f.svg", + "staticwebassets/icons/CallInbound/48_r.svg", + "staticwebassets/icons/CallMissed/12_f.svg", + "staticwebassets/icons/CallMissed/12_r.svg", + "staticwebassets/icons/CallMissed/16_f.svg", + "staticwebassets/icons/CallMissed/16_r.svg", + "staticwebassets/icons/CallMissed/20_f.svg", + "staticwebassets/icons/CallMissed/20_r.svg", + "staticwebassets/icons/CallMissed/24_f.svg", + "staticwebassets/icons/CallMissed/24_r.svg", + "staticwebassets/icons/CallMissed/28_f.svg", + "staticwebassets/icons/CallMissed/28_r.svg", + "staticwebassets/icons/CallMissed/48_f.svg", + "staticwebassets/icons/CallMissed/48_r.svg", + "staticwebassets/icons/CallOutbound/16_f.svg", + "staticwebassets/icons/CallOutbound/16_r.svg", + "staticwebassets/icons/CallOutbound/20_f.svg", + "staticwebassets/icons/CallOutbound/20_r.svg", + "staticwebassets/icons/CallOutbound/24_f.svg", + "staticwebassets/icons/CallOutbound/24_r.svg", + "staticwebassets/icons/CallOutbound/28_f.svg", + "staticwebassets/icons/CallOutbound/28_r.svg", + "staticwebassets/icons/CallOutbound/48_f.svg", + "staticwebassets/icons/CallOutbound/48_r.svg", + "staticwebassets/icons/CallPark/16_f.svg", + "staticwebassets/icons/CallPark/16_r.svg", + "staticwebassets/icons/CallPark/20_f.svg", + "staticwebassets/icons/CallPark/20_r.svg", + "staticwebassets/icons/CallPark/24_f.svg", + "staticwebassets/icons/CallPark/24_r.svg", + "staticwebassets/icons/CallPark/28_f.svg", + "staticwebassets/icons/CallPark/28_r.svg", + "staticwebassets/icons/CallPark/32_f.svg", + "staticwebassets/icons/CallPark/32_r.svg", + "staticwebassets/icons/CallPark/48_f.svg", + "staticwebassets/icons/CallPark/48_r.svg", + "staticwebassets/icons/CallPause/20_f.svg", + "staticwebassets/icons/CallPause/20_r.svg", + "staticwebassets/icons/CallPause/24_f.svg", + "staticwebassets/icons/CallPause/24_r.svg", + "staticwebassets/icons/CallProhibited/16_f.svg", + "staticwebassets/icons/CallProhibited/16_r.svg", + "staticwebassets/icons/CallProhibited/20_f.svg", + "staticwebassets/icons/CallProhibited/20_r.svg", + "staticwebassets/icons/CallProhibited/24_f.svg", + "staticwebassets/icons/CallProhibited/24_r.svg", + "staticwebassets/icons/CallProhibited/28_f.svg", + "staticwebassets/icons/CallProhibited/28_r.svg", + "staticwebassets/icons/CallProhibited/48_f.svg", + "staticwebassets/icons/CallProhibited/48_r.svg", + "staticwebassets/icons/CallTransfer/16_f.svg", + "staticwebassets/icons/CallTransfer/16_r.svg", + "staticwebassets/icons/CallTransfer/20_f.svg", + "staticwebassets/icons/CallTransfer/20_r.svg", + "staticwebassets/icons/CallTransfer/24_f.svg", + "staticwebassets/icons/CallTransfer/24_r.svg", + "staticwebassets/icons/CallTransfer/32_f.svg", + "staticwebassets/icons/CallTransfer/32_r.svg", + "staticwebassets/icons/CallWarning/16_f.svg", + "staticwebassets/icons/CallWarning/16_r.svg", + "staticwebassets/icons/CallWarning/20_f.svg", + "staticwebassets/icons/CallWarning/20_r.svg", + "staticwebassets/icons/CalligraphyPen/20_f.svg", + "staticwebassets/icons/CalligraphyPen/20_r.svg", + "staticwebassets/icons/CalligraphyPen/24_f.svg", + "staticwebassets/icons/CalligraphyPen/24_r.svg", + "staticwebassets/icons/CalligraphyPenCheckmark/20_f.svg", + "staticwebassets/icons/CalligraphyPenCheckmark/20_r.svg", + "staticwebassets/icons/CalligraphyPenError/20_f.svg", + "staticwebassets/icons/CalligraphyPenError/20_r.svg", + "staticwebassets/icons/CalligraphyPenQuestionMark/20_f.svg", + "staticwebassets/icons/CalligraphyPenQuestionMark/20_r.svg", + "staticwebassets/icons/Camera/16_f.svg", + "staticwebassets/icons/Camera/16_r.svg", + "staticwebassets/icons/Camera/20_f.svg", + "staticwebassets/icons/Camera/20_r.svg", + "staticwebassets/icons/Camera/24_f.svg", + "staticwebassets/icons/Camera/24_r.svg", + "staticwebassets/icons/Camera/28_f.svg", + "staticwebassets/icons/Camera/28_r.svg", + "staticwebassets/icons/CameraAdd/20_f.svg", + "staticwebassets/icons/CameraAdd/20_r.svg", + "staticwebassets/icons/CameraAdd/24_f.svg", + "staticwebassets/icons/CameraAdd/24_r.svg", + "staticwebassets/icons/CameraAdd/48_f.svg", + "staticwebassets/icons/CameraAdd/48_r.svg", + "staticwebassets/icons/CameraDome/16_f.svg", + "staticwebassets/icons/CameraDome/16_r.svg", + "staticwebassets/icons/CameraDome/20_f.svg", + "staticwebassets/icons/CameraDome/20_r.svg", + "staticwebassets/icons/CameraDome/24_f.svg", + "staticwebassets/icons/CameraDome/24_r.svg", + "staticwebassets/icons/CameraDome/28_f.svg", + "staticwebassets/icons/CameraDome/28_r.svg", + "staticwebassets/icons/CameraDome/48_f.svg", + "staticwebassets/icons/CameraDome/48_r.svg", + "staticwebassets/icons/CameraEdit/20_f.svg", + "staticwebassets/icons/CameraEdit/20_r.svg", + "staticwebassets/icons/CameraOff/16_f.svg", + "staticwebassets/icons/CameraOff/16_r.svg", + "staticwebassets/icons/CameraOff/20_f.svg", + "staticwebassets/icons/CameraOff/20_r.svg", + "staticwebassets/icons/CameraOff/24_f.svg", + "staticwebassets/icons/CameraOff/24_r.svg", + "staticwebassets/icons/CameraSparkles/16_f.svg", + "staticwebassets/icons/CameraSparkles/16_r.svg", + "staticwebassets/icons/CameraSparkles/20_f.svg", + "staticwebassets/icons/CameraSparkles/20_r.svg", + "staticwebassets/icons/CameraSparkles/24_f.svg", + "staticwebassets/icons/CameraSparkles/24_r.svg", + "staticwebassets/icons/CameraSwitch/20_f.svg", + "staticwebassets/icons/CameraSwitch/20_r.svg", + "staticwebassets/icons/CameraSwitch/24_f.svg", + "staticwebassets/icons/CameraSwitch/24_r.svg", + "staticwebassets/icons/CardUI/20_f.svg", + "staticwebassets/icons/CardUI/20_r.svg", + "staticwebassets/icons/CardUI/24_f.svg", + "staticwebassets/icons/CardUI/24_r.svg", + "staticwebassets/icons/CaretDown/12_f.svg", + "staticwebassets/icons/CaretDown/12_r.svg", + "staticwebassets/icons/CaretDown/16_f.svg", + "staticwebassets/icons/CaretDown/16_r.svg", + "staticwebassets/icons/CaretDown/20_f.svg", + "staticwebassets/icons/CaretDown/20_r.svg", + "staticwebassets/icons/CaretDown/24_f.svg", + "staticwebassets/icons/CaretDown/24_r.svg", + "staticwebassets/icons/CaretDownRight/12_f.svg", + "staticwebassets/icons/CaretDownRight/12_r.svg", + "staticwebassets/icons/CaretDownRight/16_f.svg", + "staticwebassets/icons/CaretDownRight/16_r.svg", + "staticwebassets/icons/CaretDownRight/20_f.svg", + "staticwebassets/icons/CaretDownRight/20_r.svg", + "staticwebassets/icons/CaretDownRight/24_f.svg", + "staticwebassets/icons/CaretDownRight/24_r.svg", + "staticwebassets/icons/CaretLeft/12_f.svg", + "staticwebassets/icons/CaretLeft/12_r.svg", + "staticwebassets/icons/CaretLeft/16_f.svg", + "staticwebassets/icons/CaretLeft/16_r.svg", + "staticwebassets/icons/CaretLeft/20_f.svg", + "staticwebassets/icons/CaretLeft/20_r.svg", + "staticwebassets/icons/CaretLeft/24_f.svg", + "staticwebassets/icons/CaretLeft/24_r.svg", + "staticwebassets/icons/CaretRight/12_f.svg", + "staticwebassets/icons/CaretRight/12_r.svg", + "staticwebassets/icons/CaretRight/16_f.svg", + "staticwebassets/icons/CaretRight/16_r.svg", + "staticwebassets/icons/CaretRight/20_f.svg", + "staticwebassets/icons/CaretRight/20_r.svg", + "staticwebassets/icons/CaretRight/24_f.svg", + "staticwebassets/icons/CaretRight/24_r.svg", + "staticwebassets/icons/CaretUp/12_f.svg", + "staticwebassets/icons/CaretUp/12_r.svg", + "staticwebassets/icons/CaretUp/16_f.svg", + "staticwebassets/icons/CaretUp/16_r.svg", + "staticwebassets/icons/CaretUp/20_f.svg", + "staticwebassets/icons/CaretUp/20_r.svg", + "staticwebassets/icons/CaretUp/24_f.svg", + "staticwebassets/icons/CaretUp/24_r.svg", + "staticwebassets/icons/Cart/16_f.svg", + "staticwebassets/icons/Cart/16_r.svg", + "staticwebassets/icons/Cart/20_f.svg", + "staticwebassets/icons/Cart/20_r.svg", + "staticwebassets/icons/Cart/24_f.svg", + "staticwebassets/icons/Cart/24_r.svg", + "staticwebassets/icons/Cast/20_f.svg", + "staticwebassets/icons/Cast/20_r.svg", + "staticwebassets/icons/Cast/24_f.svg", + "staticwebassets/icons/Cast/24_r.svg", + "staticwebassets/icons/Cast/28_f.svg", + "staticwebassets/icons/Cast/28_r.svg", + "staticwebassets/icons/CatchUp/16_f.svg", + "staticwebassets/icons/CatchUp/16_r.svg", + "staticwebassets/icons/CatchUp/20_f.svg", + "staticwebassets/icons/CatchUp/20_r.svg", + "staticwebassets/icons/CatchUp/24_f.svg", + "staticwebassets/icons/CatchUp/24_r.svg", + "staticwebassets/icons/Cellular3G/20_f.svg", + "staticwebassets/icons/Cellular3G/20_r.svg", + "staticwebassets/icons/Cellular3G/24_f.svg", + "staticwebassets/icons/Cellular3G/24_r.svg", + "staticwebassets/icons/Cellular4G/20_f.svg", + "staticwebassets/icons/Cellular4G/20_r.svg", + "staticwebassets/icons/Cellular4G/24_f.svg", + "staticwebassets/icons/Cellular4G/24_r.svg", + "staticwebassets/icons/Cellular5G/20_f.svg", + "staticwebassets/icons/Cellular5G/20_r.svg", + "staticwebassets/icons/Cellular5G/24_f.svg", + "staticwebassets/icons/Cellular5G/24_r.svg", + "staticwebassets/icons/CellularData1/20_f.svg", + "staticwebassets/icons/CellularData1/20_r.svg", + "staticwebassets/icons/CellularData1/24_f.svg", + "staticwebassets/icons/CellularData1/24_r.svg", + "staticwebassets/icons/CellularData2/20_f.svg", + "staticwebassets/icons/CellularData2/20_r.svg", + "staticwebassets/icons/CellularData2/24_f.svg", + "staticwebassets/icons/CellularData2/24_r.svg", + "staticwebassets/icons/CellularData3/20_f.svg", + "staticwebassets/icons/CellularData3/20_r.svg", + "staticwebassets/icons/CellularData3/24_f.svg", + "staticwebassets/icons/CellularData3/24_r.svg", + "staticwebassets/icons/CellularData4/20_f.svg", + "staticwebassets/icons/CellularData4/20_r.svg", + "staticwebassets/icons/CellularData4/24_f.svg", + "staticwebassets/icons/CellularData4/24_r.svg", + "staticwebassets/icons/CellularData5/20_f.svg", + "staticwebassets/icons/CellularData5/20_r.svg", + "staticwebassets/icons/CellularData5/24_f.svg", + "staticwebassets/icons/CellularData5/24_r.svg", + "staticwebassets/icons/CellularOff/20_f.svg", + "staticwebassets/icons/CellularOff/20_r.svg", + "staticwebassets/icons/CellularOff/24_f.svg", + "staticwebassets/icons/CellularOff/24_r.svg", + "staticwebassets/icons/CellularWarning/20_f.svg", + "staticwebassets/icons/CellularWarning/20_r.svg", + "staticwebassets/icons/CellularWarning/24_f.svg", + "staticwebassets/icons/CellularWarning/24_r.svg", + "staticwebassets/icons/CenterHorizontal/20_f.svg", + "staticwebassets/icons/CenterHorizontal/20_r.svg", + "staticwebassets/icons/CenterHorizontal/24_f.svg", + "staticwebassets/icons/CenterHorizontal/24_r.svg", + "staticwebassets/icons/CenterVertical/20_f.svg", + "staticwebassets/icons/CenterVertical/20_r.svg", + "staticwebassets/icons/CenterVertical/24_f.svg", + "staticwebassets/icons/CenterVertical/24_r.svg", + "staticwebassets/icons/Certificate/16_f.svg", + "staticwebassets/icons/Certificate/16_r.svg", + "staticwebassets/icons/Certificate/20_f.svg", + "staticwebassets/icons/Certificate/20_r.svg", + "staticwebassets/icons/Certificate/24_f.svg", + "staticwebassets/icons/Certificate/24_r.svg", + "staticwebassets/icons/Channel/16_f.svg", + "staticwebassets/icons/Channel/16_r.svg", + "staticwebassets/icons/Channel/20_f.svg", + "staticwebassets/icons/Channel/20_r.svg", + "staticwebassets/icons/Channel/24_f.svg", + "staticwebassets/icons/Channel/24_r.svg", + "staticwebassets/icons/Channel/28_f.svg", + "staticwebassets/icons/Channel/28_r.svg", + "staticwebassets/icons/Channel/48_f.svg", + "staticwebassets/icons/Channel/48_r.svg", + "staticwebassets/icons/ChannelAdd/16_f.svg", + "staticwebassets/icons/ChannelAdd/16_r.svg", + "staticwebassets/icons/ChannelAdd/20_f.svg", + "staticwebassets/icons/ChannelAdd/20_r.svg", + "staticwebassets/icons/ChannelAdd/24_f.svg", + "staticwebassets/icons/ChannelAdd/24_r.svg", + "staticwebassets/icons/ChannelAdd/28_f.svg", + "staticwebassets/icons/ChannelAdd/28_r.svg", + "staticwebassets/icons/ChannelAdd/48_f.svg", + "staticwebassets/icons/ChannelAdd/48_r.svg", + "staticwebassets/icons/ChannelAlert/16_f.svg", + "staticwebassets/icons/ChannelAlert/16_r.svg", + "staticwebassets/icons/ChannelAlert/20_f.svg", + "staticwebassets/icons/ChannelAlert/20_r.svg", + "staticwebassets/icons/ChannelAlert/24_f.svg", + "staticwebassets/icons/ChannelAlert/24_r.svg", + "staticwebassets/icons/ChannelAlert/28_f.svg", + "staticwebassets/icons/ChannelAlert/28_r.svg", + "staticwebassets/icons/ChannelAlert/48_f.svg", + "staticwebassets/icons/ChannelAlert/48_r.svg", + "staticwebassets/icons/ChannelArrowLeft/16_f.svg", + "staticwebassets/icons/ChannelArrowLeft/16_r.svg", + "staticwebassets/icons/ChannelArrowLeft/20_f.svg", + "staticwebassets/icons/ChannelArrowLeft/20_r.svg", + "staticwebassets/icons/ChannelArrowLeft/24_f.svg", + "staticwebassets/icons/ChannelArrowLeft/24_r.svg", + "staticwebassets/icons/ChannelArrowLeft/28_f.svg", + "staticwebassets/icons/ChannelArrowLeft/28_r.svg", + "staticwebassets/icons/ChannelArrowLeft/48_f.svg", + "staticwebassets/icons/ChannelArrowLeft/48_r.svg", + "staticwebassets/icons/ChannelDismiss/16_f.svg", + "staticwebassets/icons/ChannelDismiss/16_r.svg", + "staticwebassets/icons/ChannelDismiss/20_f.svg", + "staticwebassets/icons/ChannelDismiss/20_r.svg", + "staticwebassets/icons/ChannelDismiss/24_f.svg", + "staticwebassets/icons/ChannelDismiss/24_r.svg", + "staticwebassets/icons/ChannelDismiss/28_f.svg", + "staticwebassets/icons/ChannelDismiss/28_r.svg", + "staticwebassets/icons/ChannelDismiss/48_f.svg", + "staticwebassets/icons/ChannelDismiss/48_r.svg", + "staticwebassets/icons/ChannelShare/12_f.svg", + "staticwebassets/icons/ChannelShare/12_r.svg", + "staticwebassets/icons/ChannelShare/16_f.svg", + "staticwebassets/icons/ChannelShare/16_r.svg", + "staticwebassets/icons/ChannelShare/20_f.svg", + "staticwebassets/icons/ChannelShare/20_r.svg", + "staticwebassets/icons/ChannelShare/24_f.svg", + "staticwebassets/icons/ChannelShare/24_r.svg", + "staticwebassets/icons/ChannelShare/28_f.svg", + "staticwebassets/icons/ChannelShare/28_r.svg", + "staticwebassets/icons/ChannelShare/48_f.svg", + "staticwebassets/icons/ChannelShare/48_r.svg", + "staticwebassets/icons/ChannelSubtract/16_f.svg", + "staticwebassets/icons/ChannelSubtract/16_r.svg", + "staticwebassets/icons/ChannelSubtract/20_f.svg", + "staticwebassets/icons/ChannelSubtract/20_r.svg", + "staticwebassets/icons/ChannelSubtract/24_f.svg", + "staticwebassets/icons/ChannelSubtract/24_r.svg", + "staticwebassets/icons/ChannelSubtract/28_f.svg", + "staticwebassets/icons/ChannelSubtract/28_r.svg", + "staticwebassets/icons/ChannelSubtract/48_f.svg", + "staticwebassets/icons/ChannelSubtract/48_r.svg", + "staticwebassets/icons/ChartMultiple/20_f.svg", + "staticwebassets/icons/ChartMultiple/20_r.svg", + "staticwebassets/icons/ChartMultiple/24_f.svg", + "staticwebassets/icons/ChartMultiple/24_r.svg", + "staticwebassets/icons/ChartPerson/20_f.svg", + "staticwebassets/icons/ChartPerson/20_r.svg", + "staticwebassets/icons/ChartPerson/24_f.svg", + "staticwebassets/icons/ChartPerson/24_r.svg", + "staticwebassets/icons/ChartPerson/28_f.svg", + "staticwebassets/icons/ChartPerson/28_r.svg", + "staticwebassets/icons/ChartPerson/48_f.svg", + "staticwebassets/icons/ChartPerson/48_r.svg", + "staticwebassets/icons/Chat/12_f.svg", + "staticwebassets/icons/Chat/12_r.svg", + "staticwebassets/icons/Chat/16_f.svg", + "staticwebassets/icons/Chat/16_r.svg", + "staticwebassets/icons/Chat/20_f.svg", + "staticwebassets/icons/Chat/20_r.svg", + "staticwebassets/icons/Chat/24_f.svg", + "staticwebassets/icons/Chat/24_r.svg", + "staticwebassets/icons/Chat/28_f.svg", + "staticwebassets/icons/Chat/28_r.svg", + "staticwebassets/icons/Chat/32_f.svg", + "staticwebassets/icons/Chat/32_r.svg", + "staticwebassets/icons/Chat/48_f.svg", + "staticwebassets/icons/Chat/48_r.svg", + "staticwebassets/icons/ChatAdd/16_f.svg", + "staticwebassets/icons/ChatAdd/16_r.svg", + "staticwebassets/icons/ChatAdd/20_f.svg", + "staticwebassets/icons/ChatAdd/20_r.svg", + "staticwebassets/icons/ChatAdd/24_f.svg", + "staticwebassets/icons/ChatAdd/24_r.svg", + "staticwebassets/icons/ChatAdd/28_f.svg", + "staticwebassets/icons/ChatAdd/28_r.svg", + "staticwebassets/icons/ChatAdd/32_f.svg", + "staticwebassets/icons/ChatAdd/32_r.svg", + "staticwebassets/icons/ChatAdd/48_f.svg", + "staticwebassets/icons/ChatAdd/48_r.svg", + "staticwebassets/icons/ChatArrowBack/16_f.svg", + "staticwebassets/icons/ChatArrowBack/16_r.svg", + "staticwebassets/icons/ChatArrowBack/20_f.svg", + "staticwebassets/icons/ChatArrowBack/20_r.svg", + "staticwebassets/icons/ChatArrowDoubleBack/16_f.svg", + "staticwebassets/icons/ChatArrowDoubleBack/16_r.svg", + "staticwebassets/icons/ChatArrowDoubleBack/20_f.svg", + "staticwebassets/icons/ChatArrowDoubleBack/20_r.svg", + "staticwebassets/icons/ChatBubbles/28_f.svg", + "staticwebassets/icons/ChatBubbles/28_r.svg", + "staticwebassets/icons/ChatBubbles/32_f.svg", + "staticwebassets/icons/ChatBubbles/32_r.svg", + "staticwebassets/icons/ChatBubblesQuestion/16_f.svg", + "staticwebassets/icons/ChatBubblesQuestion/16_r.svg", + "staticwebassets/icons/ChatBubblesQuestion/20_f.svg", + "staticwebassets/icons/ChatBubblesQuestion/20_r.svg", + "staticwebassets/icons/ChatBubblesQuestion/24_f.svg", + "staticwebassets/icons/ChatBubblesQuestion/24_r.svg", + "staticwebassets/icons/ChatBubblesQuestion/28_f.svg", + "staticwebassets/icons/ChatBubblesQuestion/28_r.svg", + "staticwebassets/icons/ChatBubblesQuestion/32_f.svg", + "staticwebassets/icons/ChatBubblesQuestion/32_r.svg", + "staticwebassets/icons/ChatCursor/16_f.svg", + "staticwebassets/icons/ChatCursor/16_r.svg", + "staticwebassets/icons/ChatCursor/20_f.svg", + "staticwebassets/icons/ChatCursor/20_r.svg", + "staticwebassets/icons/ChatCursor/24_f.svg", + "staticwebassets/icons/ChatCursor/24_r.svg", + "staticwebassets/icons/ChatDismiss/16_f.svg", + "staticwebassets/icons/ChatDismiss/16_r.svg", + "staticwebassets/icons/ChatDismiss/20_f.svg", + "staticwebassets/icons/ChatDismiss/20_r.svg", + "staticwebassets/icons/ChatDismiss/24_f.svg", + "staticwebassets/icons/ChatDismiss/24_r.svg", + "staticwebassets/icons/ChatEmpty/12_f.svg", + "staticwebassets/icons/ChatEmpty/12_r.svg", + "staticwebassets/icons/ChatEmpty/16_f.svg", + "staticwebassets/icons/ChatEmpty/16_r.svg", + "staticwebassets/icons/ChatEmpty/20_f.svg", + "staticwebassets/icons/ChatEmpty/20_r.svg", + "staticwebassets/icons/ChatEmpty/24_f.svg", + "staticwebassets/icons/ChatEmpty/24_r.svg", + "staticwebassets/icons/ChatEmpty/28_f.svg", + "staticwebassets/icons/ChatEmpty/28_r.svg", + "staticwebassets/icons/ChatEmpty/32_f.svg", + "staticwebassets/icons/ChatEmpty/32_r.svg", + "staticwebassets/icons/ChatEmpty/48_f.svg", + "staticwebassets/icons/ChatEmpty/48_r.svg", + "staticwebassets/icons/ChatHelp/20_f.svg", + "staticwebassets/icons/ChatHelp/20_r.svg", + "staticwebassets/icons/ChatHelp/24_f.svg", + "staticwebassets/icons/ChatHelp/24_r.svg", + "staticwebassets/icons/ChatMail/20_f.svg", + "staticwebassets/icons/ChatMail/20_r.svg", + "staticwebassets/icons/ChatMultiple/16_f.svg", + "staticwebassets/icons/ChatMultiple/16_r.svg", + "staticwebassets/icons/ChatMultiple/20_f.svg", + "staticwebassets/icons/ChatMultiple/20_r.svg", + "staticwebassets/icons/ChatMultiple/24_f.svg", + "staticwebassets/icons/ChatMultiple/24_r.svg", + "staticwebassets/icons/ChatMultiple/28_f.svg", + "staticwebassets/icons/ChatMultiple/28_r.svg", + "staticwebassets/icons/ChatMultiple/32_f.svg", + "staticwebassets/icons/ChatMultiple/32_r.svg", + "staticwebassets/icons/ChatMultipleHeart/16_f.svg", + "staticwebassets/icons/ChatMultipleHeart/16_r.svg", + "staticwebassets/icons/ChatMultipleHeart/20_f.svg", + "staticwebassets/icons/ChatMultipleHeart/20_r.svg", + "staticwebassets/icons/ChatMultipleHeart/24_f.svg", + "staticwebassets/icons/ChatMultipleHeart/24_r.svg", + "staticwebassets/icons/ChatMultipleHeart/28_f.svg", + "staticwebassets/icons/ChatMultipleHeart/28_r.svg", + "staticwebassets/icons/ChatMultipleHeart/32_f.svg", + "staticwebassets/icons/ChatMultipleHeart/32_r.svg", + "staticwebassets/icons/ChatOff/20_f.svg", + "staticwebassets/icons/ChatOff/20_r.svg", + "staticwebassets/icons/ChatOff/24_f.svg", + "staticwebassets/icons/ChatOff/24_r.svg", + "staticwebassets/icons/ChatSettings/20_f.svg", + "staticwebassets/icons/ChatSettings/20_r.svg", + "staticwebassets/icons/ChatSettings/24_f.svg", + "staticwebassets/icons/ChatSettings/24_r.svg", + "staticwebassets/icons/ChatSparkle/16_f.svg", + "staticwebassets/icons/ChatSparkle/16_r.svg", + "staticwebassets/icons/ChatSparkle/20_f.svg", + "staticwebassets/icons/ChatSparkle/20_r.svg", + "staticwebassets/icons/ChatSparkle/24_f.svg", + "staticwebassets/icons/ChatSparkle/24_r.svg", + "staticwebassets/icons/ChatSparkle/28_f.svg", + "staticwebassets/icons/ChatSparkle/28_r.svg", + "staticwebassets/icons/ChatSparkle/32_f.svg", + "staticwebassets/icons/ChatSparkle/32_r.svg", + "staticwebassets/icons/ChatSparkle/48_f.svg", + "staticwebassets/icons/ChatSparkle/48_r.svg", + "staticwebassets/icons/ChatVideo/20_f.svg", + "staticwebassets/icons/ChatVideo/20_r.svg", + "staticwebassets/icons/ChatVideo/24_f.svg", + "staticwebassets/icons/ChatVideo/24_r.svg", + "staticwebassets/icons/ChatWarning/16_f.svg", + "staticwebassets/icons/ChatWarning/16_r.svg", + "staticwebassets/icons/ChatWarning/20_f.svg", + "staticwebassets/icons/ChatWarning/20_r.svg", + "staticwebassets/icons/ChatWarning/24_f.svg", + "staticwebassets/icons/ChatWarning/24_r.svg", + "staticwebassets/icons/Check/20_f.svg", + "staticwebassets/icons/Check/20_r.svg", + "staticwebassets/icons/Check/24_f.svg", + "staticwebassets/icons/Check/24_r.svg", + "staticwebassets/icons/Checkbox1/20_f.svg", + "staticwebassets/icons/Checkbox1/20_r.svg", + "staticwebassets/icons/Checkbox1/24_f.svg", + "staticwebassets/icons/Checkbox1/24_r.svg", + "staticwebassets/icons/Checkbox2/20_f.svg", + "staticwebassets/icons/Checkbox2/20_r.svg", + "staticwebassets/icons/Checkbox2/24_f.svg", + "staticwebassets/icons/Checkbox2/24_r.svg", + "staticwebassets/icons/CheckboxArrowRight/20_f.svg", + "staticwebassets/icons/CheckboxArrowRight/20_r.svg", + "staticwebassets/icons/CheckboxArrowRight/24_f.svg", + "staticwebassets/icons/CheckboxArrowRight/24_r.svg", + "staticwebassets/icons/CheckboxChecked/16_f.svg", + "staticwebassets/icons/CheckboxChecked/16_r.svg", + "staticwebassets/icons/CheckboxChecked/20_f.svg", + "staticwebassets/icons/CheckboxChecked/20_r.svg", + "staticwebassets/icons/CheckboxChecked/24_f.svg", + "staticwebassets/icons/CheckboxChecked/24_r.svg", + "staticwebassets/icons/CheckboxCheckedSync/16_f.svg", + "staticwebassets/icons/CheckboxCheckedSync/16_r.svg", + "staticwebassets/icons/CheckboxCheckedSync/20_f.svg", + "staticwebassets/icons/CheckboxCheckedSync/20_r.svg", + "staticwebassets/icons/CheckboxIndeterminate/16_f.svg", + "staticwebassets/icons/CheckboxIndeterminate/16_r.svg", + "staticwebassets/icons/CheckboxIndeterminate/20_f.svg", + "staticwebassets/icons/CheckboxIndeterminate/20_r.svg", + "staticwebassets/icons/CheckboxIndeterminate/24_f.svg", + "staticwebassets/icons/CheckboxIndeterminate/24_r.svg", + "staticwebassets/icons/CheckboxPerson/16_f.svg", + "staticwebassets/icons/CheckboxPerson/16_r.svg", + "staticwebassets/icons/CheckboxPerson/20_f.svg", + "staticwebassets/icons/CheckboxPerson/20_r.svg", + "staticwebassets/icons/CheckboxPerson/24_f.svg", + "staticwebassets/icons/CheckboxPerson/24_r.svg", + "staticwebassets/icons/CheckboxUnchecked/12_f.svg", + "staticwebassets/icons/CheckboxUnchecked/12_r.svg", + "staticwebassets/icons/CheckboxUnchecked/16_f.svg", + "staticwebassets/icons/CheckboxUnchecked/16_r.svg", + "staticwebassets/icons/CheckboxUnchecked/20_f.svg", + "staticwebassets/icons/CheckboxUnchecked/20_r.svg", + "staticwebassets/icons/CheckboxUnchecked/24_f.svg", + "staticwebassets/icons/CheckboxUnchecked/24_r.svg", + "staticwebassets/icons/CheckboxWarning/20_f.svg", + "staticwebassets/icons/CheckboxWarning/20_r.svg", + "staticwebassets/icons/CheckboxWarning/24_f.svg", + "staticwebassets/icons/CheckboxWarning/24_r.svg", + "staticwebassets/icons/Checkmark/12_f.svg", + "staticwebassets/icons/Checkmark/12_r.svg", + "staticwebassets/icons/Checkmark/16_f.svg", + "staticwebassets/icons/Checkmark/16_r.svg", + "staticwebassets/icons/Checkmark/20_f.svg", + "staticwebassets/icons/Checkmark/20_r.svg", + "staticwebassets/icons/Checkmark/24_f.svg", + "staticwebassets/icons/Checkmark/24_r.svg", + "staticwebassets/icons/Checkmark/28_f.svg", + "staticwebassets/icons/Checkmark/28_r.svg", + "staticwebassets/icons/Checkmark/32_f.svg", + "staticwebassets/icons/Checkmark/32_r.svg", + "staticwebassets/icons/Checkmark/48_f.svg", + "staticwebassets/icons/Checkmark/48_r.svg", + "staticwebassets/icons/CheckmarkCircle/12_f.svg", + "staticwebassets/icons/CheckmarkCircle/12_r.svg", + "staticwebassets/icons/CheckmarkCircle/16_f.svg", + "staticwebassets/icons/CheckmarkCircle/16_r.svg", + "staticwebassets/icons/CheckmarkCircle/20_f.svg", + "staticwebassets/icons/CheckmarkCircle/20_r.svg", + "staticwebassets/icons/CheckmarkCircle/24_f.svg", + "staticwebassets/icons/CheckmarkCircle/24_r.svg", + "staticwebassets/icons/CheckmarkCircle/32_f.svg", + "staticwebassets/icons/CheckmarkCircle/32_r.svg", + "staticwebassets/icons/CheckmarkCircle/48_f.svg", + "staticwebassets/icons/CheckmarkCircle/48_r.svg", + "staticwebassets/icons/CheckmarkLock/16_f.svg", + "staticwebassets/icons/CheckmarkLock/16_r.svg", + "staticwebassets/icons/CheckmarkLock/20_f.svg", + "staticwebassets/icons/CheckmarkLock/20_r.svg", + "staticwebassets/icons/CheckmarkLock/24_f.svg", + "staticwebassets/icons/CheckmarkLock/24_r.svg", + "staticwebassets/icons/CheckmarkNote/20_f.svg", + "staticwebassets/icons/CheckmarkNote/20_r.svg", + "staticwebassets/icons/CheckmarkSquare/20_f.svg", + "staticwebassets/icons/CheckmarkSquare/20_r.svg", + "staticwebassets/icons/CheckmarkSquare/24_f.svg", + "staticwebassets/icons/CheckmarkSquare/24_r.svg", + "staticwebassets/icons/CheckmarkStarburst/16_f.svg", + "staticwebassets/icons/CheckmarkStarburst/16_r.svg", + "staticwebassets/icons/CheckmarkStarburst/20_f.svg", + "staticwebassets/icons/CheckmarkStarburst/20_r.svg", + "staticwebassets/icons/CheckmarkStarburst/24_f.svg", + "staticwebassets/icons/CheckmarkStarburst/24_r.svg", + "staticwebassets/icons/CheckmarkUnderlineCircle/16_f.svg", + "staticwebassets/icons/CheckmarkUnderlineCircle/16_r.svg", + "staticwebassets/icons/CheckmarkUnderlineCircle/20_f.svg", + "staticwebassets/icons/CheckmarkUnderlineCircle/20_r.svg", + "staticwebassets/icons/Chess/20_f.svg", + "staticwebassets/icons/Chess/20_r.svg", + "staticwebassets/icons/ChevronCircleDown/12_f.svg", + "staticwebassets/icons/ChevronCircleDown/12_r.svg", + "staticwebassets/icons/ChevronCircleDown/16_f.svg", + "staticwebassets/icons/ChevronCircleDown/16_r.svg", + "staticwebassets/icons/ChevronCircleDown/20_f.svg", + "staticwebassets/icons/ChevronCircleDown/20_r.svg", + "staticwebassets/icons/ChevronCircleDown/24_f.svg", + "staticwebassets/icons/ChevronCircleDown/24_r.svg", + "staticwebassets/icons/ChevronCircleDown/28_f.svg", + "staticwebassets/icons/ChevronCircleDown/28_r.svg", + "staticwebassets/icons/ChevronCircleDown/32_f.svg", + "staticwebassets/icons/ChevronCircleDown/32_r.svg", + "staticwebassets/icons/ChevronCircleDown/48_f.svg", + "staticwebassets/icons/ChevronCircleDown/48_r.svg", + "staticwebassets/icons/ChevronCircleLeft/12_f.svg", + "staticwebassets/icons/ChevronCircleLeft/12_r.svg", + "staticwebassets/icons/ChevronCircleLeft/16_f.svg", + "staticwebassets/icons/ChevronCircleLeft/16_r.svg", + "staticwebassets/icons/ChevronCircleLeft/20_f.svg", + "staticwebassets/icons/ChevronCircleLeft/20_r.svg", + "staticwebassets/icons/ChevronCircleLeft/24_f.svg", + "staticwebassets/icons/ChevronCircleLeft/24_r.svg", + "staticwebassets/icons/ChevronCircleLeft/28_f.svg", + "staticwebassets/icons/ChevronCircleLeft/28_r.svg", + "staticwebassets/icons/ChevronCircleLeft/32_f.svg", + "staticwebassets/icons/ChevronCircleLeft/32_r.svg", + "staticwebassets/icons/ChevronCircleLeft/48_f.svg", + "staticwebassets/icons/ChevronCircleLeft/48_r.svg", + "staticwebassets/icons/ChevronCircleRight/12_f.svg", + "staticwebassets/icons/ChevronCircleRight/12_r.svg", + "staticwebassets/icons/ChevronCircleRight/16_f.svg", + "staticwebassets/icons/ChevronCircleRight/16_r.svg", + "staticwebassets/icons/ChevronCircleRight/20_f.svg", + "staticwebassets/icons/ChevronCircleRight/20_r.svg", + "staticwebassets/icons/ChevronCircleRight/24_f.svg", + "staticwebassets/icons/ChevronCircleRight/24_r.svg", + "staticwebassets/icons/ChevronCircleRight/28_f.svg", + "staticwebassets/icons/ChevronCircleRight/28_r.svg", + "staticwebassets/icons/ChevronCircleRight/32_f.svg", + "staticwebassets/icons/ChevronCircleRight/32_r.svg", + "staticwebassets/icons/ChevronCircleRight/48_f.svg", + "staticwebassets/icons/ChevronCircleRight/48_r.svg", + "staticwebassets/icons/ChevronCircleUp/12_f.svg", + "staticwebassets/icons/ChevronCircleUp/12_r.svg", + "staticwebassets/icons/ChevronCircleUp/16_f.svg", + "staticwebassets/icons/ChevronCircleUp/16_r.svg", + "staticwebassets/icons/ChevronCircleUp/20_f.svg", + "staticwebassets/icons/ChevronCircleUp/20_r.svg", + "staticwebassets/icons/ChevronCircleUp/24_f.svg", + "staticwebassets/icons/ChevronCircleUp/24_r.svg", + "staticwebassets/icons/ChevronCircleUp/28_f.svg", + "staticwebassets/icons/ChevronCircleUp/28_r.svg", + "staticwebassets/icons/ChevronCircleUp/32_f.svg", + "staticwebassets/icons/ChevronCircleUp/32_r.svg", + "staticwebassets/icons/ChevronCircleUp/48_f.svg", + "staticwebassets/icons/ChevronCircleUp/48_r.svg", + "staticwebassets/icons/ChevronDoubleDown/16_f.svg", + "staticwebassets/icons/ChevronDoubleDown/16_r.svg", + "staticwebassets/icons/ChevronDoubleDown/20_f.svg", + "staticwebassets/icons/ChevronDoubleDown/20_r.svg", + "staticwebassets/icons/ChevronDoubleLeft/16_f.svg", + "staticwebassets/icons/ChevronDoubleLeft/16_r.svg", + "staticwebassets/icons/ChevronDoubleLeft/20_f.svg", + "staticwebassets/icons/ChevronDoubleLeft/20_r.svg", + "staticwebassets/icons/ChevronDoubleRight/16_f.svg", + "staticwebassets/icons/ChevronDoubleRight/16_r.svg", + "staticwebassets/icons/ChevronDoubleRight/20_f.svg", + "staticwebassets/icons/ChevronDoubleRight/20_r.svg", + "staticwebassets/icons/ChevronDoubleUp/16_f.svg", + "staticwebassets/icons/ChevronDoubleUp/16_r.svg", + "staticwebassets/icons/ChevronDoubleUp/20_f.svg", + "staticwebassets/icons/ChevronDoubleUp/20_r.svg", + "staticwebassets/icons/ChevronDown/12_f.svg", + "staticwebassets/icons/ChevronDown/12_r.svg", + "staticwebassets/icons/ChevronDown/16_f.svg", + "staticwebassets/icons/ChevronDown/16_r.svg", + "staticwebassets/icons/ChevronDown/20_f.svg", + "staticwebassets/icons/ChevronDown/20_r.svg", + "staticwebassets/icons/ChevronDown/24_f.svg", + "staticwebassets/icons/ChevronDown/24_r.svg", + "staticwebassets/icons/ChevronDown/28_f.svg", + "staticwebassets/icons/ChevronDown/28_r.svg", + "staticwebassets/icons/ChevronDown/48_f.svg", + "staticwebassets/icons/ChevronDown/48_r.svg", + "staticwebassets/icons/ChevronDownUp/16_f.svg", + "staticwebassets/icons/ChevronDownUp/16_r.svg", + "staticwebassets/icons/ChevronDownUp/20_f.svg", + "staticwebassets/icons/ChevronDownUp/20_r.svg", + "staticwebassets/icons/ChevronDownUp/24_f.svg", + "staticwebassets/icons/ChevronDownUp/24_r.svg", + "staticwebassets/icons/ChevronLeft/12_f.svg", + "staticwebassets/icons/ChevronLeft/12_r.svg", + "staticwebassets/icons/ChevronLeft/16_f.svg", + "staticwebassets/icons/ChevronLeft/16_r.svg", + "staticwebassets/icons/ChevronLeft/20_f.svg", + "staticwebassets/icons/ChevronLeft/20_r.svg", + "staticwebassets/icons/ChevronLeft/24_f.svg", + "staticwebassets/icons/ChevronLeft/24_r.svg", + "staticwebassets/icons/ChevronLeft/28_f.svg", + "staticwebassets/icons/ChevronLeft/28_r.svg", + "staticwebassets/icons/ChevronLeft/48_f.svg", + "staticwebassets/icons/ChevronLeft/48_r.svg", + "staticwebassets/icons/ChevronRight/12_f.svg", + "staticwebassets/icons/ChevronRight/12_r.svg", + "staticwebassets/icons/ChevronRight/16_f.svg", + "staticwebassets/icons/ChevronRight/16_r.svg", + "staticwebassets/icons/ChevronRight/20_f.svg", + "staticwebassets/icons/ChevronRight/20_r.svg", + "staticwebassets/icons/ChevronRight/24_f.svg", + "staticwebassets/icons/ChevronRight/24_r.svg", + "staticwebassets/icons/ChevronRight/28_f.svg", + "staticwebassets/icons/ChevronRight/28_r.svg", + "staticwebassets/icons/ChevronRight/48_f.svg", + "staticwebassets/icons/ChevronRight/48_r.svg", + "staticwebassets/icons/ChevronUp/12_f.svg", + "staticwebassets/icons/ChevronUp/12_r.svg", + "staticwebassets/icons/ChevronUp/16_f.svg", + "staticwebassets/icons/ChevronUp/16_r.svg", + "staticwebassets/icons/ChevronUp/20_f.svg", + "staticwebassets/icons/ChevronUp/20_r.svg", + "staticwebassets/icons/ChevronUp/24_f.svg", + "staticwebassets/icons/ChevronUp/24_r.svg", + "staticwebassets/icons/ChevronUp/28_f.svg", + "staticwebassets/icons/ChevronUp/28_r.svg", + "staticwebassets/icons/ChevronUp/48_f.svg", + "staticwebassets/icons/ChevronUp/48_r.svg", + "staticwebassets/icons/ChevronUpDown/16_f.svg", + "staticwebassets/icons/ChevronUpDown/16_r.svg", + "staticwebassets/icons/ChevronUpDown/20_f.svg", + "staticwebassets/icons/ChevronUpDown/20_r.svg", + "staticwebassets/icons/ChevronUpDown/24_f.svg", + "staticwebassets/icons/ChevronUpDown/24_r.svg", + "staticwebassets/icons/Circle/12_f.svg", + "staticwebassets/icons/Circle/12_r.svg", + "staticwebassets/icons/Circle/16_f.svg", + "staticwebassets/icons/Circle/16_r.svg", + "staticwebassets/icons/Circle/20_f.svg", + "staticwebassets/icons/Circle/20_r.svg", + "staticwebassets/icons/Circle/24_f.svg", + "staticwebassets/icons/Circle/24_r.svg", + "staticwebassets/icons/Circle/28_f.svg", + "staticwebassets/icons/Circle/28_r.svg", + "staticwebassets/icons/Circle/32_f.svg", + "staticwebassets/icons/Circle/32_r.svg", + "staticwebassets/icons/Circle/48_f.svg", + "staticwebassets/icons/Circle/48_r.svg", + "staticwebassets/icons/CircleEdit/20_f.svg", + "staticwebassets/icons/CircleEdit/20_r.svg", + "staticwebassets/icons/CircleEdit/24_f.svg", + "staticwebassets/icons/CircleEdit/24_r.svg", + "staticwebassets/icons/CircleEraser/20_f.svg", + "staticwebassets/icons/CircleEraser/20_r.svg", + "staticwebassets/icons/CircleHalfFill/12_f.svg", + "staticwebassets/icons/CircleHalfFill/12_r.svg", + "staticwebassets/icons/CircleHalfFill/16_f.svg", + "staticwebassets/icons/CircleHalfFill/16_r.svg", + "staticwebassets/icons/CircleHalfFill/20_f.svg", + "staticwebassets/icons/CircleHalfFill/20_r.svg", + "staticwebassets/icons/CircleHalfFill/24_f.svg", + "staticwebassets/icons/CircleHalfFill/24_r.svg", + "staticwebassets/icons/CircleHint/16_f.svg", + "staticwebassets/icons/CircleHint/16_r.svg", + "staticwebassets/icons/CircleHint/20_f.svg", + "staticwebassets/icons/CircleHint/20_r.svg", + "staticwebassets/icons/CircleImage/16_f.svg", + "staticwebassets/icons/CircleImage/16_r.svg", + "staticwebassets/icons/CircleImage/20_f.svg", + "staticwebassets/icons/CircleImage/20_r.svg", + "staticwebassets/icons/CircleImage/24_f.svg", + "staticwebassets/icons/CircleImage/24_r.svg", + "staticwebassets/icons/CircleImage/28_f.svg", + "staticwebassets/icons/CircleImage/28_r.svg", + "staticwebassets/icons/CircleLine/12_f.svg", + "staticwebassets/icons/CircleLine/12_r.svg", + "staticwebassets/icons/CircleLine/20_f.svg", + "staticwebassets/icons/CircleLine/20_r.svg", + "staticwebassets/icons/CircleLine/24_f.svg", + "staticwebassets/icons/CircleLine/24_r.svg", + "staticwebassets/icons/CircleMultipleSubtractCheckmark/20_f.svg", + "staticwebassets/icons/CircleMultipleSubtractCheckmark/20_r.svg", + "staticwebassets/icons/CircleOff/16_f.svg", + "staticwebassets/icons/CircleOff/16_r.svg", + "staticwebassets/icons/CircleOff/20_f.svg", + "staticwebassets/icons/CircleOff/20_r.svg", + "staticwebassets/icons/CircleSmall/20_f.svg", + "staticwebassets/icons/CircleSmall/20_r.svg", + "staticwebassets/icons/CircleSmall/24_f.svg", + "staticwebassets/icons/CircleSmall/24_r.svg", + "staticwebassets/icons/City/16_f.svg", + "staticwebassets/icons/City/16_r.svg", + "staticwebassets/icons/City/20_f.svg", + "staticwebassets/icons/City/20_r.svg", + "staticwebassets/icons/City/24_f.svg", + "staticwebassets/icons/City/24_r.svg", + "staticwebassets/icons/Class/20_f.svg", + "staticwebassets/icons/Class/20_r.svg", + "staticwebassets/icons/Class/24_f.svg", + "staticwebassets/icons/Class/24_r.svg", + "staticwebassets/icons/Classification/16_f.svg", + "staticwebassets/icons/Classification/16_r.svg", + "staticwebassets/icons/Classification/20_f.svg", + "staticwebassets/icons/Classification/20_r.svg", + "staticwebassets/icons/Classification/24_f.svg", + "staticwebassets/icons/Classification/24_r.svg", + "staticwebassets/icons/ClearFormatting/16_f.svg", + "staticwebassets/icons/ClearFormatting/16_r.svg", + "staticwebassets/icons/ClearFormatting/20_f.svg", + "staticwebassets/icons/ClearFormatting/20_r.svg", + "staticwebassets/icons/ClearFormatting/24_f.svg", + "staticwebassets/icons/ClearFormatting/24_r.svg", + "staticwebassets/icons/Clipboard/16_f.svg", + "staticwebassets/icons/Clipboard/16_r.svg", + "staticwebassets/icons/Clipboard/20_f.svg", + "staticwebassets/icons/Clipboard/20_r.svg", + "staticwebassets/icons/Clipboard/24_f.svg", + "staticwebassets/icons/Clipboard/24_r.svg", + "staticwebassets/icons/Clipboard/32_f.svg", + "staticwebassets/icons/Clipboard/32_r.svg", + "staticwebassets/icons/Clipboard3Day/16_f.svg", + "staticwebassets/icons/Clipboard3Day/16_r.svg", + "staticwebassets/icons/Clipboard3Day/20_f.svg", + "staticwebassets/icons/Clipboard3Day/20_r.svg", + "staticwebassets/icons/Clipboard3Day/24_f.svg", + "staticwebassets/icons/Clipboard3Day/24_r.svg", + "staticwebassets/icons/ClipboardArrowRight/16_f.svg", + "staticwebassets/icons/ClipboardArrowRight/16_r.svg", + "staticwebassets/icons/ClipboardArrowRight/20_f.svg", + "staticwebassets/icons/ClipboardArrowRight/20_r.svg", + "staticwebassets/icons/ClipboardArrowRight/24_f.svg", + "staticwebassets/icons/ClipboardArrowRight/24_r.svg", + "staticwebassets/icons/ClipboardBulletListLTR/16_f.svg", + "staticwebassets/icons/ClipboardBulletListLTR/16_r.svg", + "staticwebassets/icons/ClipboardBulletListLTR/20_f.svg", + "staticwebassets/icons/ClipboardBulletListLTR/20_r.svg", + "staticwebassets/icons/ClipboardBulletListRTL/16_f.svg", + "staticwebassets/icons/ClipboardBulletListRTL/16_r.svg", + "staticwebassets/icons/ClipboardBulletListRTL/20_f.svg", + "staticwebassets/icons/ClipboardBulletListRTL/20_r.svg", + "staticwebassets/icons/ClipboardCheckmark/16_f.svg", + "staticwebassets/icons/ClipboardCheckmark/16_r.svg", + "staticwebassets/icons/ClipboardCheckmark/20_f.svg", + "staticwebassets/icons/ClipboardCheckmark/20_r.svg", + "staticwebassets/icons/ClipboardCheckmark/24_f.svg", + "staticwebassets/icons/ClipboardCheckmark/24_r.svg", + "staticwebassets/icons/ClipboardClock/20_f.svg", + "staticwebassets/icons/ClipboardClock/20_r.svg", + "staticwebassets/icons/ClipboardClock/24_f.svg", + "staticwebassets/icons/ClipboardClock/24_r.svg", + "staticwebassets/icons/ClipboardCode/16_f.svg", + "staticwebassets/icons/ClipboardCode/16_r.svg", + "staticwebassets/icons/ClipboardCode/20_f.svg", + "staticwebassets/icons/ClipboardCode/20_r.svg", + "staticwebassets/icons/ClipboardCode/24_f.svg", + "staticwebassets/icons/ClipboardCode/24_r.svg", + "staticwebassets/icons/ClipboardDataBar/20_f.svg", + "staticwebassets/icons/ClipboardDataBar/20_r.svg", + "staticwebassets/icons/ClipboardDataBar/24_f.svg", + "staticwebassets/icons/ClipboardDataBar/24_r.svg", + "staticwebassets/icons/ClipboardDataBar/32_f.svg", + "staticwebassets/icons/ClipboardDataBar/32_r.svg", + "staticwebassets/icons/ClipboardDay/16_f.svg", + "staticwebassets/icons/ClipboardDay/16_r.svg", + "staticwebassets/icons/ClipboardDay/20_f.svg", + "staticwebassets/icons/ClipboardDay/20_r.svg", + "staticwebassets/icons/ClipboardDay/24_f.svg", + "staticwebassets/icons/ClipboardDay/24_r.svg", + "staticwebassets/icons/ClipboardEdit/20_f.svg", + "staticwebassets/icons/ClipboardEdit/20_r.svg", + "staticwebassets/icons/ClipboardError/16_f.svg", + "staticwebassets/icons/ClipboardError/16_r.svg", + "staticwebassets/icons/ClipboardError/20_f.svg", + "staticwebassets/icons/ClipboardError/20_r.svg", + "staticwebassets/icons/ClipboardError/24_f.svg", + "staticwebassets/icons/ClipboardError/24_r.svg", + "staticwebassets/icons/ClipboardHeart/20_f.svg", + "staticwebassets/icons/ClipboardHeart/20_r.svg", + "staticwebassets/icons/ClipboardHeart/24_f.svg", + "staticwebassets/icons/ClipboardHeart/24_r.svg", + "staticwebassets/icons/ClipboardImage/20_f.svg", + "staticwebassets/icons/ClipboardImage/20_r.svg", + "staticwebassets/icons/ClipboardImage/24_f.svg", + "staticwebassets/icons/ClipboardImage/24_r.svg", + "staticwebassets/icons/ClipboardLetter/16_f.svg", + "staticwebassets/icons/ClipboardLetter/16_r.svg", + "staticwebassets/icons/ClipboardLetter/20_f.svg", + "staticwebassets/icons/ClipboardLetter/20_r.svg", + "staticwebassets/icons/ClipboardLetter/24_f.svg", + "staticwebassets/icons/ClipboardLetter/24_r.svg", + "staticwebassets/icons/ClipboardLink/16_f.svg", + "staticwebassets/icons/ClipboardLink/16_r.svg", + "staticwebassets/icons/ClipboardLink/20_f.svg", + "staticwebassets/icons/ClipboardLink/20_r.svg", + "staticwebassets/icons/ClipboardLink/24_f.svg", + "staticwebassets/icons/ClipboardLink/24_r.svg", + "staticwebassets/icons/ClipboardMonth/16_f.svg", + "staticwebassets/icons/ClipboardMonth/16_r.svg", + "staticwebassets/icons/ClipboardMonth/20_f.svg", + "staticwebassets/icons/ClipboardMonth/20_r.svg", + "staticwebassets/icons/ClipboardMonth/24_f.svg", + "staticwebassets/icons/ClipboardMonth/24_r.svg", + "staticwebassets/icons/ClipboardMore/20_f.svg", + "staticwebassets/icons/ClipboardMore/20_r.svg", + "staticwebassets/icons/ClipboardMore/24_f.svg", + "staticwebassets/icons/ClipboardMore/24_r.svg", + "staticwebassets/icons/ClipboardMultiple/16_f.svg", + "staticwebassets/icons/ClipboardMultiple/16_r.svg", + "staticwebassets/icons/ClipboardNote/16_f.svg", + "staticwebassets/icons/ClipboardNote/16_r.svg", + "staticwebassets/icons/ClipboardNote/20_f.svg", + "staticwebassets/icons/ClipboardNote/20_r.svg", + "staticwebassets/icons/ClipboardPaste/16_f.svg", + "staticwebassets/icons/ClipboardPaste/16_r.svg", + "staticwebassets/icons/ClipboardPaste/20_f.svg", + "staticwebassets/icons/ClipboardPaste/20_r.svg", + "staticwebassets/icons/ClipboardPaste/24_f.svg", + "staticwebassets/icons/ClipboardPaste/24_r.svg", + "staticwebassets/icons/ClipboardPulse/20_f.svg", + "staticwebassets/icons/ClipboardPulse/20_r.svg", + "staticwebassets/icons/ClipboardPulse/24_f.svg", + "staticwebassets/icons/ClipboardPulse/24_r.svg", + "staticwebassets/icons/ClipboardSearch/20_f.svg", + "staticwebassets/icons/ClipboardSearch/20_r.svg", + "staticwebassets/icons/ClipboardSearch/24_f.svg", + "staticwebassets/icons/ClipboardSearch/24_r.svg", + "staticwebassets/icons/ClipboardSettings/20_f.svg", + "staticwebassets/icons/ClipboardSettings/20_r.svg", + "staticwebassets/icons/ClipboardSettings/24_f.svg", + "staticwebassets/icons/ClipboardSettings/24_r.svg", + "staticwebassets/icons/ClipboardTask/16_f.svg", + "staticwebassets/icons/ClipboardTask/16_r.svg", + "staticwebassets/icons/ClipboardTask/20_f.svg", + "staticwebassets/icons/ClipboardTask/20_r.svg", + "staticwebassets/icons/ClipboardTask/24_f.svg", + "staticwebassets/icons/ClipboardTask/24_r.svg", + "staticwebassets/icons/ClipboardTaskAdd/20_f.svg", + "staticwebassets/icons/ClipboardTaskAdd/20_r.svg", + "staticwebassets/icons/ClipboardTaskAdd/24_f.svg", + "staticwebassets/icons/ClipboardTaskAdd/24_r.svg", + "staticwebassets/icons/ClipboardTaskListLTR/20_f.svg", + "staticwebassets/icons/ClipboardTaskListLTR/20_r.svg", + "staticwebassets/icons/ClipboardTaskListLTR/24_f.svg", + "staticwebassets/icons/ClipboardTaskListLTR/24_r.svg", + "staticwebassets/icons/ClipboardTaskListRTL/20_f.svg", + "staticwebassets/icons/ClipboardTaskListRTL/20_r.svg", + "staticwebassets/icons/ClipboardTaskListRTL/24_f.svg", + "staticwebassets/icons/ClipboardTaskListRTL/24_r.svg", + "staticwebassets/icons/ClipboardText/32_f.svg", + "staticwebassets/icons/ClipboardText/32_r.svg", + "staticwebassets/icons/ClipboardTextEdit/20_f.svg", + "staticwebassets/icons/ClipboardTextEdit/20_r.svg", + "staticwebassets/icons/ClipboardTextEdit/24_f.svg", + "staticwebassets/icons/ClipboardTextEdit/24_r.svg", + "staticwebassets/icons/ClipboardTextEdit/32_f.svg", + "staticwebassets/icons/ClipboardTextEdit/32_r.svg", + "staticwebassets/icons/ClipboardTextLTR/16_f.svg", + "staticwebassets/icons/ClipboardTextLTR/16_r.svg", + "staticwebassets/icons/ClipboardTextLTR/20_f.svg", + "staticwebassets/icons/ClipboardTextLTR/20_r.svg", + "staticwebassets/icons/ClipboardTextLTR/24_f.svg", + "staticwebassets/icons/ClipboardTextLTR/24_r.svg", + "staticwebassets/icons/ClipboardTextLTR/32_f.svg", + "staticwebassets/icons/ClipboardTextLTR/32_r.svg", + "staticwebassets/icons/ClipboardTextRTL/16_f.svg", + "staticwebassets/icons/ClipboardTextRTL/16_r.svg", + "staticwebassets/icons/ClipboardTextRTL/20_f.svg", + "staticwebassets/icons/ClipboardTextRTL/20_r.svg", + "staticwebassets/icons/ClipboardTextRTL/24_f.svg", + "staticwebassets/icons/ClipboardTextRTL/24_r.svg", + "staticwebassets/icons/Clock/12_f.svg", + "staticwebassets/icons/Clock/12_r.svg", + "staticwebassets/icons/Clock/16_f.svg", + "staticwebassets/icons/Clock/16_r.svg", + "staticwebassets/icons/Clock/20_f.svg", + "staticwebassets/icons/Clock/20_r.svg", + "staticwebassets/icons/Clock/24_f.svg", + "staticwebassets/icons/Clock/24_r.svg", + "staticwebassets/icons/Clock/28_f.svg", + "staticwebassets/icons/Clock/28_r.svg", + "staticwebassets/icons/Clock/32_f.svg", + "staticwebassets/icons/Clock/32_r.svg", + "staticwebassets/icons/Clock/48_f.svg", + "staticwebassets/icons/Clock/48_r.svg", + "staticwebassets/icons/ClockAlarm/16_f.svg", + "staticwebassets/icons/ClockAlarm/16_r.svg", + "staticwebassets/icons/ClockAlarm/20_f.svg", + "staticwebassets/icons/ClockAlarm/20_r.svg", + "staticwebassets/icons/ClockAlarm/24_f.svg", + "staticwebassets/icons/ClockAlarm/24_r.svg", + "staticwebassets/icons/ClockAlarm/32_f.svg", + "staticwebassets/icons/ClockAlarm/32_r.svg", + "staticwebassets/icons/ClockArrowDownload/20_f.svg", + "staticwebassets/icons/ClockArrowDownload/20_r.svg", + "staticwebassets/icons/ClockArrowDownload/24_f.svg", + "staticwebassets/icons/ClockArrowDownload/24_r.svg", + "staticwebassets/icons/ClockDismiss/20_f.svg", + "staticwebassets/icons/ClockDismiss/20_r.svg", + "staticwebassets/icons/ClockDismiss/24_f.svg", + "staticwebassets/icons/ClockDismiss/24_r.svg", + "staticwebassets/icons/ClockLock/16_f.svg", + "staticwebassets/icons/ClockLock/16_r.svg", + "staticwebassets/icons/ClockLock/20_f.svg", + "staticwebassets/icons/ClockLock/20_r.svg", + "staticwebassets/icons/ClockLock/24_f.svg", + "staticwebassets/icons/ClockLock/24_r.svg", + "staticwebassets/icons/ClockPause/20_f.svg", + "staticwebassets/icons/ClockPause/20_r.svg", + "staticwebassets/icons/ClockPause/24_f.svg", + "staticwebassets/icons/ClockPause/24_r.svg", + "staticwebassets/icons/ClockToolbox/20_f.svg", + "staticwebassets/icons/ClockToolbox/20_r.svg", + "staticwebassets/icons/ClockToolbox/24_f.svg", + "staticwebassets/icons/ClockToolbox/24_r.svg", + "staticwebassets/icons/ClosedCaption/16_f.svg", + "staticwebassets/icons/ClosedCaption/16_r.svg", + "staticwebassets/icons/ClosedCaption/20_f.svg", + "staticwebassets/icons/ClosedCaption/20_r.svg", + "staticwebassets/icons/ClosedCaption/24_f.svg", + "staticwebassets/icons/ClosedCaption/24_r.svg", + "staticwebassets/icons/ClosedCaption/28_f.svg", + "staticwebassets/icons/ClosedCaption/28_r.svg", + "staticwebassets/icons/ClosedCaption/32_f.svg", + "staticwebassets/icons/ClosedCaption/32_r.svg", + "staticwebassets/icons/ClosedCaption/48_f.svg", + "staticwebassets/icons/ClosedCaption/48_r.svg", + "staticwebassets/icons/ClosedCaptionOff/16_f.svg", + "staticwebassets/icons/ClosedCaptionOff/16_r.svg", + "staticwebassets/icons/ClosedCaptionOff/20_f.svg", + "staticwebassets/icons/ClosedCaptionOff/20_r.svg", + "staticwebassets/icons/ClosedCaptionOff/24_f.svg", + "staticwebassets/icons/ClosedCaptionOff/24_r.svg", + "staticwebassets/icons/ClosedCaptionOff/28_f.svg", + "staticwebassets/icons/ClosedCaptionOff/28_r.svg", + "staticwebassets/icons/ClosedCaptionOff/48_f.svg", + "staticwebassets/icons/ClosedCaptionOff/48_r.svg", + "staticwebassets/icons/Cloud/16_f.svg", + "staticwebassets/icons/Cloud/16_r.svg", + "staticwebassets/icons/Cloud/20_f.svg", + "staticwebassets/icons/Cloud/20_r.svg", + "staticwebassets/icons/Cloud/24_f.svg", + "staticwebassets/icons/Cloud/24_r.svg", + "staticwebassets/icons/Cloud/28_f.svg", + "staticwebassets/icons/Cloud/28_r.svg", + "staticwebassets/icons/Cloud/32_f.svg", + "staticwebassets/icons/Cloud/32_r.svg", + "staticwebassets/icons/Cloud/48_f.svg", + "staticwebassets/icons/Cloud/48_r.svg", + "staticwebassets/icons/CloudAdd/16_f.svg", + "staticwebassets/icons/CloudAdd/16_r.svg", + "staticwebassets/icons/CloudAdd/20_f.svg", + "staticwebassets/icons/CloudAdd/20_r.svg", + "staticwebassets/icons/CloudAdd/24_f.svg", + "staticwebassets/icons/CloudAdd/24_r.svg", + "staticwebassets/icons/CloudArchive/16_f.svg", + "staticwebassets/icons/CloudArchive/16_r.svg", + "staticwebassets/icons/CloudArchive/20_f.svg", + "staticwebassets/icons/CloudArchive/20_r.svg", + "staticwebassets/icons/CloudArchive/24_f.svg", + "staticwebassets/icons/CloudArchive/24_r.svg", + "staticwebassets/icons/CloudArchive/28_f.svg", + "staticwebassets/icons/CloudArchive/28_r.svg", + "staticwebassets/icons/CloudArchive/32_f.svg", + "staticwebassets/icons/CloudArchive/32_r.svg", + "staticwebassets/icons/CloudArchive/48_f.svg", + "staticwebassets/icons/CloudArchive/48_r.svg", + "staticwebassets/icons/CloudArrowDown/16_f.svg", + "staticwebassets/icons/CloudArrowDown/16_r.svg", + "staticwebassets/icons/CloudArrowDown/20_f.svg", + "staticwebassets/icons/CloudArrowDown/20_r.svg", + "staticwebassets/icons/CloudArrowDown/24_f.svg", + "staticwebassets/icons/CloudArrowDown/24_r.svg", + "staticwebassets/icons/CloudArrowDown/28_f.svg", + "staticwebassets/icons/CloudArrowDown/28_r.svg", + "staticwebassets/icons/CloudArrowDown/32_f.svg", + "staticwebassets/icons/CloudArrowDown/32_r.svg", + "staticwebassets/icons/CloudArrowDown/48_f.svg", + "staticwebassets/icons/CloudArrowDown/48_r.svg", + "staticwebassets/icons/CloudArrowUp/16_f.svg", + "staticwebassets/icons/CloudArrowUp/16_r.svg", + "staticwebassets/icons/CloudArrowUp/20_f.svg", + "staticwebassets/icons/CloudArrowUp/20_r.svg", + "staticwebassets/icons/CloudArrowUp/24_f.svg", + "staticwebassets/icons/CloudArrowUp/24_r.svg", + "staticwebassets/icons/CloudArrowUp/28_f.svg", + "staticwebassets/icons/CloudArrowUp/28_r.svg", + "staticwebassets/icons/CloudArrowUp/32_f.svg", + "staticwebassets/icons/CloudArrowUp/32_r.svg", + "staticwebassets/icons/CloudArrowUp/48_f.svg", + "staticwebassets/icons/CloudArrowUp/48_r.svg", + "staticwebassets/icons/CloudCheckmark/16_f.svg", + "staticwebassets/icons/CloudCheckmark/16_r.svg", + "staticwebassets/icons/CloudCheckmark/20_f.svg", + "staticwebassets/icons/CloudCheckmark/20_r.svg", + "staticwebassets/icons/CloudCheckmark/24_f.svg", + "staticwebassets/icons/CloudCheckmark/24_r.svg", + "staticwebassets/icons/CloudCheckmark/28_f.svg", + "staticwebassets/icons/CloudCheckmark/28_r.svg", + "staticwebassets/icons/CloudCheckmark/32_f.svg", + "staticwebassets/icons/CloudCheckmark/32_r.svg", + "staticwebassets/icons/CloudCheckmark/48_f.svg", + "staticwebassets/icons/CloudCheckmark/48_r.svg", + "staticwebassets/icons/CloudDatabase/20_f.svg", + "staticwebassets/icons/CloudDatabase/20_r.svg", + "staticwebassets/icons/CloudDesktop/20_f.svg", + "staticwebassets/icons/CloudDesktop/20_r.svg", + "staticwebassets/icons/CloudDismiss/16_f.svg", + "staticwebassets/icons/CloudDismiss/16_r.svg", + "staticwebassets/icons/CloudDismiss/20_f.svg", + "staticwebassets/icons/CloudDismiss/20_r.svg", + "staticwebassets/icons/CloudDismiss/24_f.svg", + "staticwebassets/icons/CloudDismiss/24_r.svg", + "staticwebassets/icons/CloudDismiss/28_f.svg", + "staticwebassets/icons/CloudDismiss/28_r.svg", + "staticwebassets/icons/CloudDismiss/32_f.svg", + "staticwebassets/icons/CloudDismiss/32_r.svg", + "staticwebassets/icons/CloudDismiss/48_f.svg", + "staticwebassets/icons/CloudDismiss/48_r.svg", + "staticwebassets/icons/CloudEdit/16_f.svg", + "staticwebassets/icons/CloudEdit/16_r.svg", + "staticwebassets/icons/CloudEdit/20_f.svg", + "staticwebassets/icons/CloudEdit/20_r.svg", + "staticwebassets/icons/CloudEdit/24_f.svg", + "staticwebassets/icons/CloudEdit/24_r.svg", + "staticwebassets/icons/CloudError/16_f.svg", + "staticwebassets/icons/CloudError/16_r.svg", + "staticwebassets/icons/CloudError/20_f.svg", + "staticwebassets/icons/CloudError/20_r.svg", + "staticwebassets/icons/CloudError/24_f.svg", + "staticwebassets/icons/CloudError/24_r.svg", + "staticwebassets/icons/CloudError/28_f.svg", + "staticwebassets/icons/CloudError/28_r.svg", + "staticwebassets/icons/CloudError/32_f.svg", + "staticwebassets/icons/CloudError/32_r.svg", + "staticwebassets/icons/CloudError/48_f.svg", + "staticwebassets/icons/CloudError/48_r.svg", + "staticwebassets/icons/CloudFlow/20_f.svg", + "staticwebassets/icons/CloudFlow/20_r.svg", + "staticwebassets/icons/CloudFlow/24_f.svg", + "staticwebassets/icons/CloudFlow/24_r.svg", + "staticwebassets/icons/CloudLink/16_f.svg", + "staticwebassets/icons/CloudLink/16_r.svg", + "staticwebassets/icons/CloudLink/20_f.svg", + "staticwebassets/icons/CloudLink/20_r.svg", + "staticwebassets/icons/CloudLink/24_f.svg", + "staticwebassets/icons/CloudLink/24_r.svg", + "staticwebassets/icons/CloudOff/16_f.svg", + "staticwebassets/icons/CloudOff/16_r.svg", + "staticwebassets/icons/CloudOff/20_f.svg", + "staticwebassets/icons/CloudOff/20_r.svg", + "staticwebassets/icons/CloudOff/24_f.svg", + "staticwebassets/icons/CloudOff/24_r.svg", + "staticwebassets/icons/CloudOff/28_f.svg", + "staticwebassets/icons/CloudOff/28_r.svg", + "staticwebassets/icons/CloudOff/32_f.svg", + "staticwebassets/icons/CloudOff/32_r.svg", + "staticwebassets/icons/CloudOff/48_f.svg", + "staticwebassets/icons/CloudOff/48_r.svg", + "staticwebassets/icons/CloudSwap/20_f.svg", + "staticwebassets/icons/CloudSwap/20_r.svg", + "staticwebassets/icons/CloudSwap/24_f.svg", + "staticwebassets/icons/CloudSwap/24_r.svg", + "staticwebassets/icons/CloudSync/16_f.svg", + "staticwebassets/icons/CloudSync/16_r.svg", + "staticwebassets/icons/CloudSync/20_f.svg", + "staticwebassets/icons/CloudSync/20_r.svg", + "staticwebassets/icons/CloudSync/24_f.svg", + "staticwebassets/icons/CloudSync/24_r.svg", + "staticwebassets/icons/CloudSync/28_f.svg", + "staticwebassets/icons/CloudSync/28_r.svg", + "staticwebassets/icons/CloudSync/32_f.svg", + "staticwebassets/icons/CloudSync/32_r.svg", + "staticwebassets/icons/CloudSync/48_f.svg", + "staticwebassets/icons/CloudSync/48_r.svg", + "staticwebassets/icons/CloudWords/16_f.svg", + "staticwebassets/icons/CloudWords/16_r.svg", + "staticwebassets/icons/CloudWords/20_f.svg", + "staticwebassets/icons/CloudWords/20_r.svg", + "staticwebassets/icons/CloudWords/24_f.svg", + "staticwebassets/icons/CloudWords/24_r.svg", + "staticwebassets/icons/CloudWords/28_f.svg", + "staticwebassets/icons/CloudWords/28_r.svg", + "staticwebassets/icons/CloudWords/32_f.svg", + "staticwebassets/icons/CloudWords/32_r.svg", + "staticwebassets/icons/CloudWords/48_f.svg", + "staticwebassets/icons/CloudWords/48_r.svg", + "staticwebassets/icons/Clover/16_f.svg", + "staticwebassets/icons/Clover/16_r.svg", + "staticwebassets/icons/Clover/20_f.svg", + "staticwebassets/icons/Clover/20_r.svg", + "staticwebassets/icons/Clover/24_f.svg", + "staticwebassets/icons/Clover/24_r.svg", + "staticwebassets/icons/Clover/28_f.svg", + "staticwebassets/icons/Clover/28_r.svg", + "staticwebassets/icons/Clover/32_f.svg", + "staticwebassets/icons/Clover/32_r.svg", + "staticwebassets/icons/Clover/48_f.svg", + "staticwebassets/icons/Clover/48_r.svg", + "staticwebassets/icons/Code/16_f.svg", + "staticwebassets/icons/Code/16_r.svg", + "staticwebassets/icons/Code/20_f.svg", + "staticwebassets/icons/Code/20_r.svg", + "staticwebassets/icons/Code/24_f.svg", + "staticwebassets/icons/Code/24_r.svg", + "staticwebassets/icons/CodeBlock/16_f.svg", + "staticwebassets/icons/CodeBlock/16_r.svg", + "staticwebassets/icons/CodeBlock/20_f.svg", + "staticwebassets/icons/CodeBlock/20_r.svg", + "staticwebassets/icons/CodeBlock/24_f.svg", + "staticwebassets/icons/CodeBlock/24_r.svg", + "staticwebassets/icons/CodeBlock/28_f.svg", + "staticwebassets/icons/CodeBlock/28_r.svg", + "staticwebassets/icons/CodeBlock/32_f.svg", + "staticwebassets/icons/CodeBlock/32_r.svg", + "staticwebassets/icons/CodeBlock/48_f.svg", + "staticwebassets/icons/CodeBlock/48_r.svg", + "staticwebassets/icons/CodeCS/16_f.svg", + "staticwebassets/icons/CodeCS/16_r.svg", + "staticwebassets/icons/CodeCSRectangle/16_f.svg", + "staticwebassets/icons/CodeCSRectangle/16_r.svg", + "staticwebassets/icons/CodeCircle/20_f.svg", + "staticwebassets/icons/CodeCircle/20_r.svg", + "staticwebassets/icons/CodeCircle/24_f.svg", + "staticwebassets/icons/CodeCircle/24_r.svg", + "staticwebassets/icons/CodeCircle/32_f.svg", + "staticwebassets/icons/CodeCircle/32_r.svg", + "staticwebassets/icons/CodeFS/16_f.svg", + "staticwebassets/icons/CodeFS/16_r.svg", + "staticwebassets/icons/CodeFSRectangle/16_f.svg", + "staticwebassets/icons/CodeFSRectangle/16_r.svg", + "staticwebassets/icons/CodeJS/16_f.svg", + "staticwebassets/icons/CodeJS/16_r.svg", + "staticwebassets/icons/CodeJSRectangle/16_f.svg", + "staticwebassets/icons/CodeJSRectangle/16_r.svg", + "staticwebassets/icons/CodePY/16_f.svg", + "staticwebassets/icons/CodePY/16_r.svg", + "staticwebassets/icons/CodePYRectangle/16_f.svg", + "staticwebassets/icons/CodePYRectangle/16_r.svg", + "staticwebassets/icons/CodeRB/16_f.svg", + "staticwebassets/icons/CodeRB/16_r.svg", + "staticwebassets/icons/CodeRBRectangle/16_f.svg", + "staticwebassets/icons/CodeRBRectangle/16_r.svg", + "staticwebassets/icons/CodeTS/16_f.svg", + "staticwebassets/icons/CodeTS/16_r.svg", + "staticwebassets/icons/CodeTSRectangle/16_f.svg", + "staticwebassets/icons/CodeTSRectangle/16_r.svg", + "staticwebassets/icons/CodeText/16_f.svg", + "staticwebassets/icons/CodeText/16_r.svg", + "staticwebassets/icons/CodeText/20_f.svg", + "staticwebassets/icons/CodeText/20_r.svg", + "staticwebassets/icons/CodeTextEdit/20_f.svg", + "staticwebassets/icons/CodeTextEdit/20_r.svg", + "staticwebassets/icons/CodeTextOff/16_f.svg", + "staticwebassets/icons/CodeTextOff/16_r.svg", + "staticwebassets/icons/CodeVB/16_f.svg", + "staticwebassets/icons/CodeVB/16_r.svg", + "staticwebassets/icons/CodeVBRectangle/16_f.svg", + "staticwebassets/icons/CodeVBRectangle/16_r.svg", + "staticwebassets/icons/Collections/20_f.svg", + "staticwebassets/icons/Collections/20_r.svg", + "staticwebassets/icons/Collections/24_f.svg", + "staticwebassets/icons/Collections/24_r.svg", + "staticwebassets/icons/CollectionsAdd/20_f.svg", + "staticwebassets/icons/CollectionsAdd/20_r.svg", + "staticwebassets/icons/CollectionsAdd/24_f.svg", + "staticwebassets/icons/CollectionsAdd/24_r.svg", + "staticwebassets/icons/Color/16_f.svg", + "staticwebassets/icons/Color/16_r.svg", + "staticwebassets/icons/Color/20_f.svg", + "staticwebassets/icons/Color/20_r.svg", + "staticwebassets/icons/Color/24_f.svg", + "staticwebassets/icons/Color/24_r.svg", + "staticwebassets/icons/ColorBackground/20_f.svg", + "staticwebassets/icons/ColorBackground/20_r.svg", + "staticwebassets/icons/ColorBackground/24_f.svg", + "staticwebassets/icons/ColorBackground/24_r.svg", + "staticwebassets/icons/ColorBackgroundAccent/20_r.svg", + "staticwebassets/icons/ColorBackgroundAccent/24_r.svg", + "staticwebassets/icons/ColorFill/16_f.svg", + "staticwebassets/icons/ColorFill/16_r.svg", + "staticwebassets/icons/ColorFill/20_f.svg", + "staticwebassets/icons/ColorFill/20_r.svg", + "staticwebassets/icons/ColorFill/24_f.svg", + "staticwebassets/icons/ColorFill/24_r.svg", + "staticwebassets/icons/ColorFill/28_f.svg", + "staticwebassets/icons/ColorFill/28_r.svg", + "staticwebassets/icons/ColorFillAccent/16_r.svg", + "staticwebassets/icons/ColorFillAccent/20_r.svg", + "staticwebassets/icons/ColorFillAccent/24_r.svg", + "staticwebassets/icons/ColorFillAccent/28_r.svg", + "staticwebassets/icons/ColorLine/16_f.svg", + "staticwebassets/icons/ColorLine/16_r.svg", + "staticwebassets/icons/ColorLine/20_f.svg", + "staticwebassets/icons/ColorLine/20_r.svg", + "staticwebassets/icons/ColorLine/24_f.svg", + "staticwebassets/icons/ColorLine/24_r.svg", + "staticwebassets/icons/ColorLineAccent/16_r.svg", + "staticwebassets/icons/ColorLineAccent/20_r.svg", + "staticwebassets/icons/ColorLineAccent/24_r.svg", + "staticwebassets/icons/Column/20_f.svg", + "staticwebassets/icons/Column/20_r.svg", + "staticwebassets/icons/ColumnArrowRight/20_f.svg", + "staticwebassets/icons/ColumnArrowRight/20_r.svg", + "staticwebassets/icons/ColumnDoubleCompare/20_f.svg", + "staticwebassets/icons/ColumnDoubleCompare/20_r.svg", + "staticwebassets/icons/ColumnEdit/20_f.svg", + "staticwebassets/icons/ColumnEdit/20_r.svg", + "staticwebassets/icons/ColumnEdit/24_f.svg", + "staticwebassets/icons/ColumnEdit/24_r.svg", + "staticwebassets/icons/ColumnSingle/16_f.svg", + "staticwebassets/icons/ColumnSingle/16_r.svg", + "staticwebassets/icons/ColumnSingleCompare/16_f.svg", + "staticwebassets/icons/ColumnSingleCompare/16_r.svg", + "staticwebassets/icons/ColumnSingleCompare/20_f.svg", + "staticwebassets/icons/ColumnSingleCompare/20_r.svg", + "staticwebassets/icons/ColumnTriple/20_f.svg", + "staticwebassets/icons/ColumnTriple/20_r.svg", + "staticwebassets/icons/ColumnTriple/24_f.svg", + "staticwebassets/icons/ColumnTriple/24_r.svg", + "staticwebassets/icons/ColumnTripleEdit/20_f.svg", + "staticwebassets/icons/ColumnTripleEdit/20_r.svg", + "staticwebassets/icons/ColumnTripleEdit/24_f.svg", + "staticwebassets/icons/ColumnTripleEdit/24_r.svg", + "staticwebassets/icons/Comma/20_f.svg", + "staticwebassets/icons/Comma/20_r.svg", + "staticwebassets/icons/Comma/24_f.svg", + "staticwebassets/icons/Comma/24_r.svg", + "staticwebassets/icons/Comment/12_f.svg", + "staticwebassets/icons/Comment/12_r.svg", + "staticwebassets/icons/Comment/16_f.svg", + "staticwebassets/icons/Comment/16_r.svg", + "staticwebassets/icons/Comment/20_f.svg", + "staticwebassets/icons/Comment/20_r.svg", + "staticwebassets/icons/Comment/24_f.svg", + "staticwebassets/icons/Comment/24_r.svg", + "staticwebassets/icons/Comment/28_f.svg", + "staticwebassets/icons/Comment/28_r.svg", + "staticwebassets/icons/Comment/48_f.svg", + "staticwebassets/icons/Comment/48_r.svg", + "staticwebassets/icons/CommentAdd/12_f.svg", + "staticwebassets/icons/CommentAdd/12_r.svg", + "staticwebassets/icons/CommentAdd/16_f.svg", + "staticwebassets/icons/CommentAdd/16_r.svg", + "staticwebassets/icons/CommentAdd/20_f.svg", + "staticwebassets/icons/CommentAdd/20_r.svg", + "staticwebassets/icons/CommentAdd/24_f.svg", + "staticwebassets/icons/CommentAdd/24_r.svg", + "staticwebassets/icons/CommentAdd/28_f.svg", + "staticwebassets/icons/CommentAdd/28_r.svg", + "staticwebassets/icons/CommentAdd/48_f.svg", + "staticwebassets/icons/CommentAdd/48_r.svg", + "staticwebassets/icons/CommentArrowLeft/12_f.svg", + "staticwebassets/icons/CommentArrowLeft/12_r.svg", + "staticwebassets/icons/CommentArrowLeft/16_f.svg", + "staticwebassets/icons/CommentArrowLeft/16_r.svg", + "staticwebassets/icons/CommentArrowLeft/20_f.svg", + "staticwebassets/icons/CommentArrowLeft/20_r.svg", + "staticwebassets/icons/CommentArrowLeft/24_f.svg", + "staticwebassets/icons/CommentArrowLeft/24_r.svg", + "staticwebassets/icons/CommentArrowLeft/28_f.svg", + "staticwebassets/icons/CommentArrowLeft/28_r.svg", + "staticwebassets/icons/CommentArrowLeft/48_f.svg", + "staticwebassets/icons/CommentArrowLeft/48_r.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/12_f.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/12_r.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/16_f.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/16_r.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/20_f.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/20_r.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/24_f.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/24_r.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/28_f.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/28_r.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/48_f.svg", + "staticwebassets/icons/CommentArrowLeftTempLTR/48_r.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/12_f.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/12_r.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/16_f.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/16_r.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/20_f.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/20_r.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/24_f.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/24_r.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/28_f.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/28_r.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/48_f.svg", + "staticwebassets/icons/CommentArrowLeftTempRTL/48_r.svg", + "staticwebassets/icons/CommentArrowRight/12_f.svg", + "staticwebassets/icons/CommentArrowRight/12_r.svg", + "staticwebassets/icons/CommentArrowRight/16_f.svg", + "staticwebassets/icons/CommentArrowRight/16_r.svg", + "staticwebassets/icons/CommentArrowRight/20_f.svg", + "staticwebassets/icons/CommentArrowRight/20_r.svg", + "staticwebassets/icons/CommentArrowRight/24_f.svg", + "staticwebassets/icons/CommentArrowRight/24_r.svg", + "staticwebassets/icons/CommentArrowRight/28_f.svg", + "staticwebassets/icons/CommentArrowRight/28_r.svg", + "staticwebassets/icons/CommentArrowRight/48_f.svg", + "staticwebassets/icons/CommentArrowRight/48_r.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/12_f.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/12_r.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/16_f.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/16_r.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/20_f.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/20_r.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/24_f.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/24_r.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/28_f.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/28_r.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/48_f.svg", + "staticwebassets/icons/CommentArrowRightTempLTR/48_r.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/12_f.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/12_r.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/16_f.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/16_r.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/20_f.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/20_r.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/24_f.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/24_r.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/28_f.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/28_r.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/48_f.svg", + "staticwebassets/icons/CommentArrowRightTempRTL/48_r.svg", + "staticwebassets/icons/CommentCheckmark/12_f.svg", + "staticwebassets/icons/CommentCheckmark/12_r.svg", + "staticwebassets/icons/CommentCheckmark/16_f.svg", + "staticwebassets/icons/CommentCheckmark/16_r.svg", + "staticwebassets/icons/CommentCheckmark/20_f.svg", + "staticwebassets/icons/CommentCheckmark/20_r.svg", + "staticwebassets/icons/CommentCheckmark/24_f.svg", + "staticwebassets/icons/CommentCheckmark/24_r.svg", + "staticwebassets/icons/CommentCheckmark/28_f.svg", + "staticwebassets/icons/CommentCheckmark/28_r.svg", + "staticwebassets/icons/CommentCheckmark/48_f.svg", + "staticwebassets/icons/CommentCheckmark/48_r.svg", + "staticwebassets/icons/CommentDismiss/20_f.svg", + "staticwebassets/icons/CommentDismiss/20_r.svg", + "staticwebassets/icons/CommentDismiss/24_f.svg", + "staticwebassets/icons/CommentDismiss/24_r.svg", + "staticwebassets/icons/CommentEdit/20_f.svg", + "staticwebassets/icons/CommentEdit/20_r.svg", + "staticwebassets/icons/CommentEdit/24_f.svg", + "staticwebassets/icons/CommentEdit/24_r.svg", + "staticwebassets/icons/CommentError/16_f.svg", + "staticwebassets/icons/CommentError/16_r.svg", + "staticwebassets/icons/CommentError/20_f.svg", + "staticwebassets/icons/CommentError/20_r.svg", + "staticwebassets/icons/CommentError/24_f.svg", + "staticwebassets/icons/CommentError/24_r.svg", + "staticwebassets/icons/CommentLightning/20_f.svg", + "staticwebassets/icons/CommentLightning/20_r.svg", + "staticwebassets/icons/CommentLightning/24_f.svg", + "staticwebassets/icons/CommentLightning/24_r.svg", + "staticwebassets/icons/CommentLink/16_f.svg", + "staticwebassets/icons/CommentLink/16_r.svg", + "staticwebassets/icons/CommentLink/20_f.svg", + "staticwebassets/icons/CommentLink/20_r.svg", + "staticwebassets/icons/CommentLink/24_f.svg", + "staticwebassets/icons/CommentLink/24_r.svg", + "staticwebassets/icons/CommentLink/28_f.svg", + "staticwebassets/icons/CommentLink/28_r.svg", + "staticwebassets/icons/CommentLink/48_f.svg", + "staticwebassets/icons/CommentLink/48_r.svg", + "staticwebassets/icons/CommentMention/16_f.svg", + "staticwebassets/icons/CommentMention/16_r.svg", + "staticwebassets/icons/CommentMention/20_f.svg", + "staticwebassets/icons/CommentMention/20_r.svg", + "staticwebassets/icons/CommentMention/24_f.svg", + "staticwebassets/icons/CommentMention/24_r.svg", + "staticwebassets/icons/CommentMultiple/16_f.svg", + "staticwebassets/icons/CommentMultiple/16_r.svg", + "staticwebassets/icons/CommentMultiple/20_f.svg", + "staticwebassets/icons/CommentMultiple/20_r.svg", + "staticwebassets/icons/CommentMultiple/24_f.svg", + "staticwebassets/icons/CommentMultiple/24_r.svg", + "staticwebassets/icons/CommentMultiple/28_f.svg", + "staticwebassets/icons/CommentMultiple/28_r.svg", + "staticwebassets/icons/CommentMultiple/32_f.svg", + "staticwebassets/icons/CommentMultiple/32_r.svg", + "staticwebassets/icons/CommentMultipleCheckmark/16_f.svg", + "staticwebassets/icons/CommentMultipleCheckmark/16_r.svg", + "staticwebassets/icons/CommentMultipleCheckmark/20_f.svg", + "staticwebassets/icons/CommentMultipleCheckmark/20_r.svg", + "staticwebassets/icons/CommentMultipleCheckmark/24_f.svg", + "staticwebassets/icons/CommentMultipleCheckmark/24_r.svg", + "staticwebassets/icons/CommentMultipleCheckmark/28_f.svg", + "staticwebassets/icons/CommentMultipleCheckmark/28_r.svg", + "staticwebassets/icons/CommentMultipleLink/16_f.svg", + "staticwebassets/icons/CommentMultipleLink/16_r.svg", + "staticwebassets/icons/CommentMultipleLink/20_f.svg", + "staticwebassets/icons/CommentMultipleLink/20_r.svg", + "staticwebassets/icons/CommentMultipleLink/24_f.svg", + "staticwebassets/icons/CommentMultipleLink/24_r.svg", + "staticwebassets/icons/CommentMultipleLink/28_f.svg", + "staticwebassets/icons/CommentMultipleLink/28_r.svg", + "staticwebassets/icons/CommentMultipleLink/32_f.svg", + "staticwebassets/icons/CommentMultipleLink/32_r.svg", + "staticwebassets/icons/CommentNote/20_f.svg", + "staticwebassets/icons/CommentNote/20_r.svg", + "staticwebassets/icons/CommentNote/24_f.svg", + "staticwebassets/icons/CommentNote/24_r.svg", + "staticwebassets/icons/CommentNote/ar/24_f.svg", + "staticwebassets/icons/CommentNote/ar/24_r.svg", + "staticwebassets/icons/CommentNote/he/24_f.svg", + "staticwebassets/icons/CommentNote/he/24_r.svg", + "staticwebassets/icons/CommentOff/16_f.svg", + "staticwebassets/icons/CommentOff/16_r.svg", + "staticwebassets/icons/CommentOff/20_f.svg", + "staticwebassets/icons/CommentOff/20_r.svg", + "staticwebassets/icons/CommentOff/24_f.svg", + "staticwebassets/icons/CommentOff/24_r.svg", + "staticwebassets/icons/CommentOff/28_f.svg", + "staticwebassets/icons/CommentOff/28_r.svg", + "staticwebassets/icons/CommentOff/48_f.svg", + "staticwebassets/icons/CommentOff/48_r.svg", + "staticwebassets/icons/Communication/16_f.svg", + "staticwebassets/icons/Communication/16_r.svg", + "staticwebassets/icons/Communication/20_f.svg", + "staticwebassets/icons/Communication/20_r.svg", + "staticwebassets/icons/Communication/24_f.svg", + "staticwebassets/icons/Communication/24_r.svg", + "staticwebassets/icons/CommunicationPerson/20_f.svg", + "staticwebassets/icons/CommunicationPerson/20_r.svg", + "staticwebassets/icons/CommunicationPerson/24_f.svg", + "staticwebassets/icons/CommunicationPerson/24_r.svg", + "staticwebassets/icons/CompassNorthwest/16_f.svg", + "staticwebassets/icons/CompassNorthwest/16_r.svg", + "staticwebassets/icons/CompassNorthwest/20_f.svg", + "staticwebassets/icons/CompassNorthwest/20_r.svg", + "staticwebassets/icons/CompassNorthwest/24_f.svg", + "staticwebassets/icons/CompassNorthwest/24_r.svg", + "staticwebassets/icons/CompassNorthwest/28_f.svg", + "staticwebassets/icons/CompassNorthwest/28_r.svg", + "staticwebassets/icons/Component2DoubleTapSwipeDown/24_f.svg", + "staticwebassets/icons/Component2DoubleTapSwipeDown/24_r.svg", + "staticwebassets/icons/Component2DoubleTapSwipeUp/24_f.svg", + "staticwebassets/icons/Component2DoubleTapSwipeUp/24_r.svg", + "staticwebassets/icons/Compose/16_f.svg", + "staticwebassets/icons/Compose/16_r.svg", + "staticwebassets/icons/Compose/20_f.svg", + "staticwebassets/icons/Compose/20_r.svg", + "staticwebassets/icons/Compose/24_f.svg", + "staticwebassets/icons/Compose/24_r.svg", + "staticwebassets/icons/Compose/28_f.svg", + "staticwebassets/icons/Compose/28_r.svg", + "staticwebassets/icons/Cone/16_f.svg", + "staticwebassets/icons/Cone/16_r.svg", + "staticwebassets/icons/ConferenceRoom/16_f.svg", + "staticwebassets/icons/ConferenceRoom/16_r.svg", + "staticwebassets/icons/ConferenceRoom/20_f.svg", + "staticwebassets/icons/ConferenceRoom/20_r.svg", + "staticwebassets/icons/ConferenceRoom/24_f.svg", + "staticwebassets/icons/ConferenceRoom/24_r.svg", + "staticwebassets/icons/ConferenceRoom/28_f.svg", + "staticwebassets/icons/ConferenceRoom/28_r.svg", + "staticwebassets/icons/ConferenceRoom/48_f.svg", + "staticwebassets/icons/ConferenceRoom/48_r.svg", + "staticwebassets/icons/Connected/16_f.svg", + "staticwebassets/icons/Connected/16_r.svg", + "staticwebassets/icons/Connected/20_f.svg", + "staticwebassets/icons/Connected/20_r.svg", + "staticwebassets/icons/Connector/16_f.svg", + "staticwebassets/icons/Connector/16_r.svg", + "staticwebassets/icons/Connector/20_f.svg", + "staticwebassets/icons/Connector/20_r.svg", + "staticwebassets/icons/Connector/24_f.svg", + "staticwebassets/icons/Connector/24_r.svg", + "staticwebassets/icons/ContactCard/16_f.svg", + "staticwebassets/icons/ContactCard/16_r.svg", + "staticwebassets/icons/ContactCard/20_f.svg", + "staticwebassets/icons/ContactCard/20_r.svg", + "staticwebassets/icons/ContactCard/24_f.svg", + "staticwebassets/icons/ContactCard/24_r.svg", + "staticwebassets/icons/ContactCard/28_f.svg", + "staticwebassets/icons/ContactCard/28_r.svg", + "staticwebassets/icons/ContactCard/32_f.svg", + "staticwebassets/icons/ContactCard/32_r.svg", + "staticwebassets/icons/ContactCard/48_f.svg", + "staticwebassets/icons/ContactCard/48_r.svg", + "staticwebassets/icons/ContactCardGroup/16_f.svg", + "staticwebassets/icons/ContactCardGroup/16_r.svg", + "staticwebassets/icons/ContactCardGroup/20_f.svg", + "staticwebassets/icons/ContactCardGroup/20_r.svg", + "staticwebassets/icons/ContactCardGroup/24_f.svg", + "staticwebassets/icons/ContactCardGroup/24_r.svg", + "staticwebassets/icons/ContactCardGroup/28_f.svg", + "staticwebassets/icons/ContactCardGroup/28_r.svg", + "staticwebassets/icons/ContactCardGroup/48_f.svg", + "staticwebassets/icons/ContactCardGroup/48_r.svg", + "staticwebassets/icons/ContactCardLink/16_f.svg", + "staticwebassets/icons/ContactCardLink/16_r.svg", + "staticwebassets/icons/ContactCardLink/20_f.svg", + "staticwebassets/icons/ContactCardLink/20_r.svg", + "staticwebassets/icons/ContactCardRibbon/16_f.svg", + "staticwebassets/icons/ContactCardRibbon/16_r.svg", + "staticwebassets/icons/ContactCardRibbon/20_f.svg", + "staticwebassets/icons/ContactCardRibbon/20_r.svg", + "staticwebassets/icons/ContactCardRibbon/24_f.svg", + "staticwebassets/icons/ContactCardRibbon/24_r.svg", + "staticwebassets/icons/ContactCardRibbon/28_f.svg", + "staticwebassets/icons/ContactCardRibbon/28_r.svg", + "staticwebassets/icons/ContactCardRibbon/32_f.svg", + "staticwebassets/icons/ContactCardRibbon/32_r.svg", + "staticwebassets/icons/ContactCardRibbon/48_f.svg", + "staticwebassets/icons/ContactCardRibbon/48_r.svg", + "staticwebassets/icons/ContentSettings/16_f.svg", + "staticwebassets/icons/ContentSettings/16_r.svg", + "staticwebassets/icons/ContentSettings/20_f.svg", + "staticwebassets/icons/ContentSettings/20_r.svg", + "staticwebassets/icons/ContentSettings/24_f.svg", + "staticwebassets/icons/ContentSettings/24_r.svg", + "staticwebassets/icons/ContentSettings/32_f.svg", + "staticwebassets/icons/ContentSettings/32_r.svg", + "staticwebassets/icons/ContentView/20_f.svg", + "staticwebassets/icons/ContentView/20_r.svg", + "staticwebassets/icons/ContentView/24_f.svg", + "staticwebassets/icons/ContentView/24_r.svg", + "staticwebassets/icons/ContentView/28_f.svg", + "staticwebassets/icons/ContentView/28_r.svg", + "staticwebassets/icons/ContentView/32_f.svg", + "staticwebassets/icons/ContentView/32_r.svg", + "staticwebassets/icons/ContentViewGallery/20_f.svg", + "staticwebassets/icons/ContentViewGallery/20_r.svg", + "staticwebassets/icons/ContentViewGallery/24_f.svg", + "staticwebassets/icons/ContentViewGallery/24_r.svg", + "staticwebassets/icons/ContentViewGallery/28_f.svg", + "staticwebassets/icons/ContentViewGallery/28_r.svg", + "staticwebassets/icons/ContractDownLeft/16_f.svg", + "staticwebassets/icons/ContractDownLeft/16_r.svg", + "staticwebassets/icons/ContractDownLeft/20_f.svg", + "staticwebassets/icons/ContractDownLeft/20_r.svg", + "staticwebassets/icons/ContractDownLeft/24_f.svg", + "staticwebassets/icons/ContractDownLeft/24_r.svg", + "staticwebassets/icons/ContractDownLeft/28_f.svg", + "staticwebassets/icons/ContractDownLeft/28_r.svg", + "staticwebassets/icons/ContractDownLeft/32_f.svg", + "staticwebassets/icons/ContractDownLeft/32_r.svg", + "staticwebassets/icons/ContractDownLeft/48_f.svg", + "staticwebassets/icons/ContractDownLeft/48_r.svg", + "staticwebassets/icons/ControlButton/20_f.svg", + "staticwebassets/icons/ControlButton/20_r.svg", + "staticwebassets/icons/ControlButton/24_f.svg", + "staticwebassets/icons/ControlButton/24_r.svg", + "staticwebassets/icons/ConvertRange/20_f.svg", + "staticwebassets/icons/ConvertRange/20_r.svg", + "staticwebassets/icons/ConvertRange/24_f.svg", + "staticwebassets/icons/ConvertRange/24_r.svg", + "staticwebassets/icons/Cookies/20_f.svg", + "staticwebassets/icons/Cookies/20_r.svg", + "staticwebassets/icons/Cookies/24_f.svg", + "staticwebassets/icons/Cookies/24_r.svg", + "staticwebassets/icons/Copy/16_f.svg", + "staticwebassets/icons/Copy/16_r.svg", + "staticwebassets/icons/Copy/20_f.svg", + "staticwebassets/icons/Copy/20_r.svg", + "staticwebassets/icons/Copy/24_f.svg", + "staticwebassets/icons/Copy/24_r.svg", + "staticwebassets/icons/Copy/32_f.svg", + "staticwebassets/icons/Copy/32_r.svg", + "staticwebassets/icons/CopyAdd/20_f.svg", + "staticwebassets/icons/CopyAdd/20_r.svg", + "staticwebassets/icons/CopyAdd/24_f.svg", + "staticwebassets/icons/CopyAdd/24_r.svg", + "staticwebassets/icons/CopyArrowRight/16_f.svg", + "staticwebassets/icons/CopyArrowRight/16_r.svg", + "staticwebassets/icons/CopyArrowRight/20_f.svg", + "staticwebassets/icons/CopyArrowRight/20_r.svg", + "staticwebassets/icons/CopyArrowRight/24_f.svg", + "staticwebassets/icons/CopyArrowRight/24_r.svg", + "staticwebassets/icons/CopySelect/20_f.svg", + "staticwebassets/icons/CopySelect/20_r.svg", + "staticwebassets/icons/CopySelect/24_f.svg", + "staticwebassets/icons/CopySelect/24_r.svg", + "staticwebassets/icons/Couch/12_f.svg", + "staticwebassets/icons/Couch/12_r.svg", + "staticwebassets/icons/Couch/20_f.svg", + "staticwebassets/icons/Couch/20_r.svg", + "staticwebassets/icons/Couch/24_f.svg", + "staticwebassets/icons/Couch/24_r.svg", + "staticwebassets/icons/Couch/32_f.svg", + "staticwebassets/icons/Couch/32_r.svg", + "staticwebassets/icons/Couch/48_f.svg", + "staticwebassets/icons/Couch/48_r.svg", + "staticwebassets/icons/CreditCardClock/20_f.svg", + "staticwebassets/icons/CreditCardClock/20_r.svg", + "staticwebassets/icons/CreditCardClock/24_f.svg", + "staticwebassets/icons/CreditCardClock/24_r.svg", + "staticwebassets/icons/CreditCardClock/28_f.svg", + "staticwebassets/icons/CreditCardClock/28_r.svg", + "staticwebassets/icons/CreditCardClock/32_f.svg", + "staticwebassets/icons/CreditCardClock/32_r.svg", + "staticwebassets/icons/CreditCardPerson/20_f.svg", + "staticwebassets/icons/CreditCardPerson/20_r.svg", + "staticwebassets/icons/CreditCardPerson/24_f.svg", + "staticwebassets/icons/CreditCardPerson/24_r.svg", + "staticwebassets/icons/CreditCardToolbox/20_f.svg", + "staticwebassets/icons/CreditCardToolbox/20_r.svg", + "staticwebassets/icons/CreditCardToolbox/24_f.svg", + "staticwebassets/icons/CreditCardToolbox/24_r.svg", + "staticwebassets/icons/Crop/16_f.svg", + "staticwebassets/icons/Crop/16_r.svg", + "staticwebassets/icons/Crop/20_f.svg", + "staticwebassets/icons/Crop/20_r.svg", + "staticwebassets/icons/Crop/24_f.svg", + "staticwebassets/icons/Crop/24_r.svg", + "staticwebassets/icons/Crop/28_f.svg", + "staticwebassets/icons/Crop/28_r.svg", + "staticwebassets/icons/Crop/32_f.svg", + "staticwebassets/icons/Crop/32_r.svg", + "staticwebassets/icons/Crop/48_f.svg", + "staticwebassets/icons/Crop/48_r.svg", + "staticwebassets/icons/CropInterim/20_f.svg", + "staticwebassets/icons/CropInterim/20_r.svg", + "staticwebassets/icons/CropInterim/24_f.svg", + "staticwebassets/icons/CropInterim/24_r.svg", + "staticwebassets/icons/CropInterimOff/20_f.svg", + "staticwebassets/icons/CropInterimOff/20_r.svg", + "staticwebassets/icons/CropInterimOff/24_f.svg", + "staticwebassets/icons/CropInterimOff/24_r.svg", + "staticwebassets/icons/CropSparkle/24_f.svg", + "staticwebassets/icons/CropSparkle/24_r.svg", + "staticwebassets/icons/Crown/16_f.svg", + "staticwebassets/icons/Crown/16_r.svg", + "staticwebassets/icons/Crown/20_f.svg", + "staticwebassets/icons/Crown/20_r.svg", + "staticwebassets/icons/Cube/12_f.svg", + "staticwebassets/icons/Cube/12_r.svg", + "staticwebassets/icons/Cube/16_f.svg", + "staticwebassets/icons/Cube/16_r.svg", + "staticwebassets/icons/Cube/20_f.svg", + "staticwebassets/icons/Cube/20_r.svg", + "staticwebassets/icons/Cube/24_f.svg", + "staticwebassets/icons/Cube/24_r.svg", + "staticwebassets/icons/Cube/32_f.svg", + "staticwebassets/icons/Cube/32_r.svg", + "staticwebassets/icons/CubeAdd/20_f.svg", + "staticwebassets/icons/CubeAdd/20_r.svg", + "staticwebassets/icons/CubeArrowCurveDown/20_f.svg", + "staticwebassets/icons/CubeArrowCurveDown/20_r.svg", + "staticwebassets/icons/CubeLink/20_f.svg", + "staticwebassets/icons/CubeLink/20_r.svg", + "staticwebassets/icons/CubeMultiple/20_f.svg", + "staticwebassets/icons/CubeMultiple/20_r.svg", + "staticwebassets/icons/CubeMultiple/24_f.svg", + "staticwebassets/icons/CubeMultiple/24_r.svg", + "staticwebassets/icons/CubeQuick/16_f.svg", + "staticwebassets/icons/CubeQuick/16_r.svg", + "staticwebassets/icons/CubeQuick/20_f.svg", + "staticwebassets/icons/CubeQuick/20_r.svg", + "staticwebassets/icons/CubeQuick/24_f.svg", + "staticwebassets/icons/CubeQuick/24_r.svg", + "staticwebassets/icons/CubeQuick/28_f.svg", + "staticwebassets/icons/CubeQuick/28_r.svg", + "staticwebassets/icons/CubeRotate/20_f.svg", + "staticwebassets/icons/CubeRotate/20_r.svg", + "staticwebassets/icons/CubeSync/20_f.svg", + "staticwebassets/icons/CubeSync/20_r.svg", + "staticwebassets/icons/CubeSync/24_f.svg", + "staticwebassets/icons/CubeSync/24_r.svg", + "staticwebassets/icons/CubeTree/20_f.svg", + "staticwebassets/icons/CubeTree/20_r.svg", + "staticwebassets/icons/CubeTree/24_f.svg", + "staticwebassets/icons/CubeTree/24_r.svg", + "staticwebassets/icons/CurrencyDollarEuro/16_f.svg", + "staticwebassets/icons/CurrencyDollarEuro/16_r.svg", + "staticwebassets/icons/CurrencyDollarEuro/20_f.svg", + "staticwebassets/icons/CurrencyDollarEuro/20_r.svg", + "staticwebassets/icons/CurrencyDollarEuro/24_f.svg", + "staticwebassets/icons/CurrencyDollarEuro/24_r.svg", + "staticwebassets/icons/CurrencyDollarRupee/16_f.svg", + "staticwebassets/icons/CurrencyDollarRupee/16_r.svg", + "staticwebassets/icons/CurrencyDollarRupee/20_f.svg", + "staticwebassets/icons/CurrencyDollarRupee/20_r.svg", + "staticwebassets/icons/CurrencyDollarRupee/24_f.svg", + "staticwebassets/icons/CurrencyDollarRupee/24_r.svg", + "staticwebassets/icons/Cursor/16_f.svg", + "staticwebassets/icons/Cursor/16_r.svg", + "staticwebassets/icons/Cursor/20_f.svg", + "staticwebassets/icons/Cursor/20_r.svg", + "staticwebassets/icons/Cursor/24_f.svg", + "staticwebassets/icons/Cursor/24_r.svg", + "staticwebassets/icons/CursorClick/20_f.svg", + "staticwebassets/icons/CursorClick/20_r.svg", + "staticwebassets/icons/CursorClick/24_f.svg", + "staticwebassets/icons/CursorClick/24_r.svg", + "staticwebassets/icons/CursorHover/16_f.svg", + "staticwebassets/icons/CursorHover/16_r.svg", + "staticwebassets/icons/CursorHover/20_f.svg", + "staticwebassets/icons/CursorHover/20_r.svg", + "staticwebassets/icons/CursorHover/24_f.svg", + "staticwebassets/icons/CursorHover/24_r.svg", + "staticwebassets/icons/CursorHover/28_f.svg", + "staticwebassets/icons/CursorHover/28_r.svg", + "staticwebassets/icons/CursorHover/32_f.svg", + "staticwebassets/icons/CursorHover/32_r.svg", + "staticwebassets/icons/CursorHover/48_f.svg", + "staticwebassets/icons/CursorHover/48_r.svg", + "staticwebassets/icons/CursorHoverOff/16_f.svg", + "staticwebassets/icons/CursorHoverOff/16_r.svg", + "staticwebassets/icons/CursorHoverOff/20_f.svg", + "staticwebassets/icons/CursorHoverOff/20_r.svg", + "staticwebassets/icons/CursorHoverOff/24_f.svg", + "staticwebassets/icons/CursorHoverOff/24_r.svg", + "staticwebassets/icons/CursorHoverOff/28_f.svg", + "staticwebassets/icons/CursorHoverOff/28_r.svg", + "staticwebassets/icons/CursorHoverOff/48_f.svg", + "staticwebassets/icons/CursorHoverOff/48_r.svg", + "staticwebassets/icons/CursorProhibited/16_f.svg", + "staticwebassets/icons/CursorProhibited/16_r.svg", + "staticwebassets/icons/CursorProhibited/20_f.svg", + "staticwebassets/icons/CursorProhibited/20_r.svg", + "staticwebassets/icons/Cut/20_f.svg", + "staticwebassets/icons/Cut/20_r.svg", + "staticwebassets/icons/Cut/24_f.svg", + "staticwebassets/icons/Cut/24_r.svg", + "staticwebassets/icons/DarkTheme/20_f.svg", + "staticwebassets/icons/DarkTheme/20_r.svg", + "staticwebassets/icons/DarkTheme/24_f.svg", + "staticwebassets/icons/DarkTheme/24_r.svg", + "staticwebassets/icons/DataArea/20_f.svg", + "staticwebassets/icons/DataArea/20_r.svg", + "staticwebassets/icons/DataArea/24_f.svg", + "staticwebassets/icons/DataArea/24_r.svg", + "staticwebassets/icons/DataBarHorizontal/20_f.svg", + "staticwebassets/icons/DataBarHorizontal/20_r.svg", + "staticwebassets/icons/DataBarHorizontal/24_f.svg", + "staticwebassets/icons/DataBarHorizontal/24_r.svg", + "staticwebassets/icons/DataBarHorizontalDescending/16_f.svg", + "staticwebassets/icons/DataBarHorizontalDescending/16_r.svg", + "staticwebassets/icons/DataBarVertical/16_f.svg", + "staticwebassets/icons/DataBarVertical/16_r.svg", + "staticwebassets/icons/DataBarVertical/20_f.svg", + "staticwebassets/icons/DataBarVertical/20_r.svg", + "staticwebassets/icons/DataBarVertical/24_f.svg", + "staticwebassets/icons/DataBarVertical/24_r.svg", + "staticwebassets/icons/DataBarVertical/32_f.svg", + "staticwebassets/icons/DataBarVertical/32_r.svg", + "staticwebassets/icons/DataBarVerticalAdd/20_f.svg", + "staticwebassets/icons/DataBarVerticalAdd/20_r.svg", + "staticwebassets/icons/DataBarVerticalAdd/24_f.svg", + "staticwebassets/icons/DataBarVerticalAdd/24_r.svg", + "staticwebassets/icons/DataBarVerticalAscending/16_f.svg", + "staticwebassets/icons/DataBarVerticalAscending/16_r.svg", + "staticwebassets/icons/DataBarVerticalStar/16_f.svg", + "staticwebassets/icons/DataBarVerticalStar/16_r.svg", + "staticwebassets/icons/DataBarVerticalStar/20_f.svg", + "staticwebassets/icons/DataBarVerticalStar/20_r.svg", + "staticwebassets/icons/DataBarVerticalStar/24_f.svg", + "staticwebassets/icons/DataBarVerticalStar/24_r.svg", + "staticwebassets/icons/DataBarVerticalStar/32_f.svg", + "staticwebassets/icons/DataBarVerticalStar/32_r.svg", + "staticwebassets/icons/DataFunnel/20_f.svg", + "staticwebassets/icons/DataFunnel/20_r.svg", + "staticwebassets/icons/DataFunnel/24_f.svg", + "staticwebassets/icons/DataFunnel/24_r.svg", + "staticwebassets/icons/DataHistogram/16_f.svg", + "staticwebassets/icons/DataHistogram/16_r.svg", + "staticwebassets/icons/DataHistogram/20_f.svg", + "staticwebassets/icons/DataHistogram/20_r.svg", + "staticwebassets/icons/DataHistogram/24_f.svg", + "staticwebassets/icons/DataHistogram/24_r.svg", + "staticwebassets/icons/DataLine/20_f.svg", + "staticwebassets/icons/DataLine/20_r.svg", + "staticwebassets/icons/DataLine/24_f.svg", + "staticwebassets/icons/DataLine/24_r.svg", + "staticwebassets/icons/DataPie/20_f.svg", + "staticwebassets/icons/DataPie/20_r.svg", + "staticwebassets/icons/DataPie/24_f.svg", + "staticwebassets/icons/DataPie/24_r.svg", + "staticwebassets/icons/DataScatter/20_f.svg", + "staticwebassets/icons/DataScatter/20_r.svg", + "staticwebassets/icons/DataScatter/24_f.svg", + "staticwebassets/icons/DataScatter/24_r.svg", + "staticwebassets/icons/DataSunburst/20_f.svg", + "staticwebassets/icons/DataSunburst/20_r.svg", + "staticwebassets/icons/DataSunburst/24_f.svg", + "staticwebassets/icons/DataSunburst/24_r.svg", + "staticwebassets/icons/DataTreemap/20_f.svg", + "staticwebassets/icons/DataTreemap/20_r.svg", + "staticwebassets/icons/DataTreemap/24_f.svg", + "staticwebassets/icons/DataTreemap/24_r.svg", + "staticwebassets/icons/DataTrending/16_f.svg", + "staticwebassets/icons/DataTrending/16_r.svg", + "staticwebassets/icons/DataTrending/20_f.svg", + "staticwebassets/icons/DataTrending/20_r.svg", + "staticwebassets/icons/DataTrending/24_f.svg", + "staticwebassets/icons/DataTrending/24_r.svg", + "staticwebassets/icons/DataTrending/28_f.svg", + "staticwebassets/icons/DataTrending/28_r.svg", + "staticwebassets/icons/DataTrending/32_f.svg", + "staticwebassets/icons/DataTrending/32_r.svg", + "staticwebassets/icons/DataTrending/48_f.svg", + "staticwebassets/icons/DataTrending/48_r.svg", + "staticwebassets/icons/DataUsage/20_f.svg", + "staticwebassets/icons/DataUsage/20_r.svg", + "staticwebassets/icons/DataUsage/24_f.svg", + "staticwebassets/icons/DataUsage/24_r.svg", + "staticwebassets/icons/DataUsageEdit/20_f.svg", + "staticwebassets/icons/DataUsageEdit/20_r.svg", + "staticwebassets/icons/DataUsageEdit/24_f.svg", + "staticwebassets/icons/DataUsageEdit/24_r.svg", + "staticwebassets/icons/DataUsageSettings/20_f.svg", + "staticwebassets/icons/DataUsageSettings/20_r.svg", + "staticwebassets/icons/DataUsageToolbox/20_f.svg", + "staticwebassets/icons/DataUsageToolbox/20_r.svg", + "staticwebassets/icons/DataUsageToolbox/24_f.svg", + "staticwebassets/icons/DataUsageToolbox/24_r.svg", + "staticwebassets/icons/DataWaterfall/20_f.svg", + "staticwebassets/icons/DataWaterfall/20_r.svg", + "staticwebassets/icons/DataWaterfall/24_f.svg", + "staticwebassets/icons/DataWaterfall/24_r.svg", + "staticwebassets/icons/DataWhisker/20_f.svg", + "staticwebassets/icons/DataWhisker/20_r.svg", + "staticwebassets/icons/DataWhisker/24_f.svg", + "staticwebassets/icons/DataWhisker/24_r.svg", + "staticwebassets/icons/Database/16_f.svg", + "staticwebassets/icons/Database/16_r.svg", + "staticwebassets/icons/Database/20_f.svg", + "staticwebassets/icons/Database/20_r.svg", + "staticwebassets/icons/Database/24_f.svg", + "staticwebassets/icons/Database/24_r.svg", + "staticwebassets/icons/Database/32_f.svg", + "staticwebassets/icons/Database/32_r.svg", + "staticwebassets/icons/Database/48_f.svg", + "staticwebassets/icons/Database/48_r.svg", + "staticwebassets/icons/DatabaseArrowDown/20_f.svg", + "staticwebassets/icons/DatabaseArrowDown/20_r.svg", + "staticwebassets/icons/DatabaseArrowRight/20_f.svg", + "staticwebassets/icons/DatabaseArrowRight/20_r.svg", + "staticwebassets/icons/DatabaseArrowRight/24_f.svg", + "staticwebassets/icons/DatabaseArrowRight/24_r.svg", + "staticwebassets/icons/DatabaseArrowRight/32_f.svg", + "staticwebassets/icons/DatabaseArrowRight/32_r.svg", + "staticwebassets/icons/DatabaseArrowUp/20_f.svg", + "staticwebassets/icons/DatabaseArrowUp/20_r.svg", + "staticwebassets/icons/DatabaseLightning/20_f.svg", + "staticwebassets/icons/DatabaseLightning/20_r.svg", + "staticwebassets/icons/DatabaseLink/20_f.svg", + "staticwebassets/icons/DatabaseLink/20_r.svg", + "staticwebassets/icons/DatabaseLink/24_f.svg", + "staticwebassets/icons/DatabaseLink/24_r.svg", + "staticwebassets/icons/DatabaseMultiple/20_f.svg", + "staticwebassets/icons/DatabaseMultiple/20_r.svg", + "staticwebassets/icons/DatabaseMultiple/32_f.svg", + "staticwebassets/icons/DatabaseMultiple/32_r.svg", + "staticwebassets/icons/DatabasePerson/20_f.svg", + "staticwebassets/icons/DatabasePerson/20_r.svg", + "staticwebassets/icons/DatabasePerson/24_f.svg", + "staticwebassets/icons/DatabasePerson/24_r.svg", + "staticwebassets/icons/DatabasePlugConnected/20_f.svg", + "staticwebassets/icons/DatabasePlugConnected/20_r.svg", + "staticwebassets/icons/DatabaseSearch/20_f.svg", + "staticwebassets/icons/DatabaseSearch/20_r.svg", + "staticwebassets/icons/DatabaseSearch/24_f.svg", + "staticwebassets/icons/DatabaseSearch/24_r.svg", + "staticwebassets/icons/DatabaseStack/16_f.svg", + "staticwebassets/icons/DatabaseStack/16_r.svg", + "staticwebassets/icons/DatabaseSwitch/20_f.svg", + "staticwebassets/icons/DatabaseSwitch/20_r.svg", + "staticwebassets/icons/DatabaseWarning/20_f.svg", + "staticwebassets/icons/DatabaseWarning/20_r.svg", + "staticwebassets/icons/DatabaseWindow/20_f.svg", + "staticwebassets/icons/DatabaseWindow/20_r.svg", + "staticwebassets/icons/DecimalArrowLeft/20_f.svg", + "staticwebassets/icons/DecimalArrowLeft/20_r.svg", + "staticwebassets/icons/DecimalArrowLeft/24_f.svg", + "staticwebassets/icons/DecimalArrowLeft/24_r.svg", + "staticwebassets/icons/DecimalArrowRight/20_f.svg", + "staticwebassets/icons/DecimalArrowRight/20_r.svg", + "staticwebassets/icons/DecimalArrowRight/24_f.svg", + "staticwebassets/icons/DecimalArrowRight/24_r.svg", + "staticwebassets/icons/Delete/12_f.svg", + "staticwebassets/icons/Delete/12_r.svg", + "staticwebassets/icons/Delete/16_f.svg", + "staticwebassets/icons/Delete/16_r.svg", + "staticwebassets/icons/Delete/20_f.svg", + "staticwebassets/icons/Delete/20_r.svg", + "staticwebassets/icons/Delete/24_f.svg", + "staticwebassets/icons/Delete/24_r.svg", + "staticwebassets/icons/Delete/28_f.svg", + "staticwebassets/icons/Delete/28_r.svg", + "staticwebassets/icons/Delete/32_f.svg", + "staticwebassets/icons/Delete/32_r.svg", + "staticwebassets/icons/Delete/48_f.svg", + "staticwebassets/icons/Delete/48_r.svg", + "staticwebassets/icons/DeleteArrowBack/16_f.svg", + "staticwebassets/icons/DeleteArrowBack/16_r.svg", + "staticwebassets/icons/DeleteArrowBack/20_f.svg", + "staticwebassets/icons/DeleteArrowBack/20_r.svg", + "staticwebassets/icons/DeleteDismiss/20_f.svg", + "staticwebassets/icons/DeleteDismiss/20_r.svg", + "staticwebassets/icons/DeleteDismiss/24_f.svg", + "staticwebassets/icons/DeleteDismiss/24_r.svg", + "staticwebassets/icons/DeleteDismiss/28_f.svg", + "staticwebassets/icons/DeleteDismiss/28_r.svg", + "staticwebassets/icons/DeleteLines/20_f.svg", + "staticwebassets/icons/DeleteLines/20_r.svg", + "staticwebassets/icons/DeleteOff/20_f.svg", + "staticwebassets/icons/DeleteOff/20_r.svg", + "staticwebassets/icons/DeleteOff/24_f.svg", + "staticwebassets/icons/DeleteOff/24_r.svg", + "staticwebassets/icons/Dentist/12_f.svg", + "staticwebassets/icons/Dentist/12_r.svg", + "staticwebassets/icons/Dentist/16_f.svg", + "staticwebassets/icons/Dentist/16_r.svg", + "staticwebassets/icons/Dentist/20_f.svg", + "staticwebassets/icons/Dentist/20_r.svg", + "staticwebassets/icons/Dentist/24_f.svg", + "staticwebassets/icons/Dentist/24_r.svg", + "staticwebassets/icons/Dentist/28_f.svg", + "staticwebassets/icons/Dentist/28_r.svg", + "staticwebassets/icons/Dentist/48_f.svg", + "staticwebassets/icons/Dentist/48_r.svg", + "staticwebassets/icons/DesignIdeas/16_f.svg", + "staticwebassets/icons/DesignIdeas/16_r.svg", + "staticwebassets/icons/DesignIdeas/20_f.svg", + "staticwebassets/icons/DesignIdeas/20_r.svg", + "staticwebassets/icons/DesignIdeas/24_f.svg", + "staticwebassets/icons/DesignIdeas/24_r.svg", + "staticwebassets/icons/Desktop/16_f.svg", + "staticwebassets/icons/Desktop/16_r.svg", + "staticwebassets/icons/Desktop/20_f.svg", + "staticwebassets/icons/Desktop/20_r.svg", + "staticwebassets/icons/Desktop/24_f.svg", + "staticwebassets/icons/Desktop/24_r.svg", + "staticwebassets/icons/Desktop/28_f.svg", + "staticwebassets/icons/Desktop/28_r.svg", + "staticwebassets/icons/Desktop/32_f.svg", + "staticwebassets/icons/Desktop/32_r.svg", + "staticwebassets/icons/DesktopArrowDown/16_f.svg", + "staticwebassets/icons/DesktopArrowDown/16_r.svg", + "staticwebassets/icons/DesktopArrowDown/20_f.svg", + "staticwebassets/icons/DesktopArrowDown/20_r.svg", + "staticwebassets/icons/DesktopArrowDown/24_f.svg", + "staticwebassets/icons/DesktopArrowDown/24_r.svg", + "staticwebassets/icons/DesktopArrowRight/16_f.svg", + "staticwebassets/icons/DesktopArrowRight/16_r.svg", + "staticwebassets/icons/DesktopArrowRight/20_f.svg", + "staticwebassets/icons/DesktopArrowRight/20_r.svg", + "staticwebassets/icons/DesktopArrowRight/24_f.svg", + "staticwebassets/icons/DesktopArrowRight/24_r.svg", + "staticwebassets/icons/DesktopCheckmark/16_f.svg", + "staticwebassets/icons/DesktopCheckmark/16_r.svg", + "staticwebassets/icons/DesktopCheckmark/20_f.svg", + "staticwebassets/icons/DesktopCheckmark/20_r.svg", + "staticwebassets/icons/DesktopCheckmark/24_f.svg", + "staticwebassets/icons/DesktopCheckmark/24_r.svg", + "staticwebassets/icons/DesktopCursor/16_f.svg", + "staticwebassets/icons/DesktopCursor/16_r.svg", + "staticwebassets/icons/DesktopCursor/20_f.svg", + "staticwebassets/icons/DesktopCursor/20_r.svg", + "staticwebassets/icons/DesktopCursor/24_f.svg", + "staticwebassets/icons/DesktopCursor/24_r.svg", + "staticwebassets/icons/DesktopCursor/28_f.svg", + "staticwebassets/icons/DesktopCursor/28_r.svg", + "staticwebassets/icons/DesktopEdit/16_f.svg", + "staticwebassets/icons/DesktopEdit/16_r.svg", + "staticwebassets/icons/DesktopEdit/20_f.svg", + "staticwebassets/icons/DesktopEdit/20_r.svg", + "staticwebassets/icons/DesktopEdit/24_f.svg", + "staticwebassets/icons/DesktopEdit/24_r.svg", + "staticwebassets/icons/DesktopFlow/20_f.svg", + "staticwebassets/icons/DesktopFlow/20_r.svg", + "staticwebassets/icons/DesktopFlow/24_f.svg", + "staticwebassets/icons/DesktopFlow/24_r.svg", + "staticwebassets/icons/DesktopKeyboard/16_f.svg", + "staticwebassets/icons/DesktopKeyboard/16_r.svg", + "staticwebassets/icons/DesktopKeyboard/20_f.svg", + "staticwebassets/icons/DesktopKeyboard/20_r.svg", + "staticwebassets/icons/DesktopKeyboard/24_f.svg", + "staticwebassets/icons/DesktopKeyboard/24_r.svg", + "staticwebassets/icons/DesktopKeyboard/28_f.svg", + "staticwebassets/icons/DesktopKeyboard/28_r.svg", + "staticwebassets/icons/DesktopMac/16_f.svg", + "staticwebassets/icons/DesktopMac/16_r.svg", + "staticwebassets/icons/DesktopMac/20_f.svg", + "staticwebassets/icons/DesktopMac/20_r.svg", + "staticwebassets/icons/DesktopMac/24_f.svg", + "staticwebassets/icons/DesktopMac/24_r.svg", + "staticwebassets/icons/DesktopMac/32_f.svg", + "staticwebassets/icons/DesktopMac/32_r.svg", + "staticwebassets/icons/DesktopPulse/16_f.svg", + "staticwebassets/icons/DesktopPulse/16_r.svg", + "staticwebassets/icons/DesktopPulse/20_f.svg", + "staticwebassets/icons/DesktopPulse/20_r.svg", + "staticwebassets/icons/DesktopPulse/24_f.svg", + "staticwebassets/icons/DesktopPulse/24_r.svg", + "staticwebassets/icons/DesktopPulse/28_f.svg", + "staticwebassets/icons/DesktopPulse/28_r.svg", + "staticwebassets/icons/DesktopPulse/32_f.svg", + "staticwebassets/icons/DesktopPulse/32_r.svg", + "staticwebassets/icons/DesktopPulse/48_f.svg", + "staticwebassets/icons/DesktopPulse/48_r.svg", + "staticwebassets/icons/DesktopSignal/20_f.svg", + "staticwebassets/icons/DesktopSignal/20_r.svg", + "staticwebassets/icons/DesktopSignal/24_f.svg", + "staticwebassets/icons/DesktopSignal/24_r.svg", + "staticwebassets/icons/DesktopSpeaker/20_f.svg", + "staticwebassets/icons/DesktopSpeaker/20_r.svg", + "staticwebassets/icons/DesktopSpeaker/24_f.svg", + "staticwebassets/icons/DesktopSpeaker/24_r.svg", + "staticwebassets/icons/DesktopSpeakerOff/20_f.svg", + "staticwebassets/icons/DesktopSpeakerOff/20_r.svg", + "staticwebassets/icons/DesktopSpeakerOff/24_f.svg", + "staticwebassets/icons/DesktopSpeakerOff/24_r.svg", + "staticwebassets/icons/DesktopSync/16_f.svg", + "staticwebassets/icons/DesktopSync/16_r.svg", + "staticwebassets/icons/DesktopSync/20_f.svg", + "staticwebassets/icons/DesktopSync/20_r.svg", + "staticwebassets/icons/DesktopSync/24_f.svg", + "staticwebassets/icons/DesktopSync/24_r.svg", + "staticwebassets/icons/DesktopToolbox/20_f.svg", + "staticwebassets/icons/DesktopToolbox/20_r.svg", + "staticwebassets/icons/DesktopToolbox/24_f.svg", + "staticwebassets/icons/DesktopToolbox/24_r.svg", + "staticwebassets/icons/DesktopTower/20_f.svg", + "staticwebassets/icons/DesktopTower/20_r.svg", + "staticwebassets/icons/DesktopTower/24_f.svg", + "staticwebassets/icons/DesktopTower/24_r.svg", + "staticwebassets/icons/DeveloperBoard/16_f.svg", + "staticwebassets/icons/DeveloperBoard/16_r.svg", + "staticwebassets/icons/DeveloperBoard/20_f.svg", + "staticwebassets/icons/DeveloperBoard/20_r.svg", + "staticwebassets/icons/DeveloperBoard/24_f.svg", + "staticwebassets/icons/DeveloperBoard/24_r.svg", + "staticwebassets/icons/DeveloperBoardLightning/20_f.svg", + "staticwebassets/icons/DeveloperBoardLightning/20_r.svg", + "staticwebassets/icons/DeveloperBoardLightningToolbox/20_f.svg", + "staticwebassets/icons/DeveloperBoardLightningToolbox/20_r.svg", + "staticwebassets/icons/DeveloperBoardSearch/20_f.svg", + "staticwebassets/icons/DeveloperBoardSearch/20_r.svg", + "staticwebassets/icons/DeveloperBoardSearch/24_f.svg", + "staticwebassets/icons/DeveloperBoardSearch/24_r.svg", + "staticwebassets/icons/DeviceEQ/16_f.svg", + "staticwebassets/icons/DeviceEQ/16_r.svg", + "staticwebassets/icons/DeviceEQ/20_f.svg", + "staticwebassets/icons/DeviceEQ/20_r.svg", + "staticwebassets/icons/DeviceEQ/24_f.svg", + "staticwebassets/icons/DeviceEQ/24_r.svg", + "staticwebassets/icons/DeviceMeetingRoom/16_f.svg", + "staticwebassets/icons/DeviceMeetingRoom/16_r.svg", + "staticwebassets/icons/DeviceMeetingRoom/20_f.svg", + "staticwebassets/icons/DeviceMeetingRoom/20_r.svg", + "staticwebassets/icons/DeviceMeetingRoom/24_f.svg", + "staticwebassets/icons/DeviceMeetingRoom/24_r.svg", + "staticwebassets/icons/DeviceMeetingRoom/28_f.svg", + "staticwebassets/icons/DeviceMeetingRoom/28_r.svg", + "staticwebassets/icons/DeviceMeetingRoom/32_f.svg", + "staticwebassets/icons/DeviceMeetingRoom/32_r.svg", + "staticwebassets/icons/DeviceMeetingRoom/48_f.svg", + "staticwebassets/icons/DeviceMeetingRoom/48_r.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/16_f.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/16_r.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/20_f.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/20_r.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/24_f.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/24_r.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/28_f.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/28_r.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/32_f.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/32_r.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/48_f.svg", + "staticwebassets/icons/DeviceMeetingRoomRemote/48_r.svg", + "staticwebassets/icons/Diagram/20_f.svg", + "staticwebassets/icons/Diagram/20_r.svg", + "staticwebassets/icons/Diagram/24_f.svg", + "staticwebassets/icons/Diagram/24_r.svg", + "staticwebassets/icons/Dialpad/20_f.svg", + "staticwebassets/icons/Dialpad/20_r.svg", + "staticwebassets/icons/Dialpad/24_f.svg", + "staticwebassets/icons/Dialpad/24_r.svg", + "staticwebassets/icons/Dialpad/28_f.svg", + "staticwebassets/icons/Dialpad/28_r.svg", + "staticwebassets/icons/Dialpad/32_f.svg", + "staticwebassets/icons/Dialpad/32_r.svg", + "staticwebassets/icons/Dialpad/48_f.svg", + "staticwebassets/icons/Dialpad/48_r.svg", + "staticwebassets/icons/DialpadOff/20_f.svg", + "staticwebassets/icons/DialpadOff/20_r.svg", + "staticwebassets/icons/DialpadOff/24_f.svg", + "staticwebassets/icons/DialpadOff/24_r.svg", + "staticwebassets/icons/Diamond/16_f.svg", + "staticwebassets/icons/Diamond/16_r.svg", + "staticwebassets/icons/Diamond/20_f.svg", + "staticwebassets/icons/Diamond/20_r.svg", + "staticwebassets/icons/Diamond/24_f.svg", + "staticwebassets/icons/Diamond/24_r.svg", + "staticwebassets/icons/Diamond/28_f.svg", + "staticwebassets/icons/Diamond/28_r.svg", + "staticwebassets/icons/Diamond/32_f.svg", + "staticwebassets/icons/Diamond/32_r.svg", + "staticwebassets/icons/Diamond/48_f.svg", + "staticwebassets/icons/Diamond/48_r.svg", + "staticwebassets/icons/Directions/16_f.svg", + "staticwebassets/icons/Directions/16_r.svg", + "staticwebassets/icons/Directions/20_f.svg", + "staticwebassets/icons/Directions/20_r.svg", + "staticwebassets/icons/Directions/24_f.svg", + "staticwebassets/icons/Directions/24_r.svg", + "staticwebassets/icons/Dishwasher/20_f.svg", + "staticwebassets/icons/Dishwasher/20_r.svg", + "staticwebassets/icons/Dishwasher/24_f.svg", + "staticwebassets/icons/Dishwasher/24_r.svg", + "staticwebassets/icons/Dishwasher/32_f.svg", + "staticwebassets/icons/Dishwasher/32_r.svg", + "staticwebassets/icons/Dishwasher/48_f.svg", + "staticwebassets/icons/Dishwasher/48_r.svg", + "staticwebassets/icons/Dismiss/12_f.svg", + "staticwebassets/icons/Dismiss/12_r.svg", + "staticwebassets/icons/Dismiss/16_f.svg", + "staticwebassets/icons/Dismiss/16_r.svg", + "staticwebassets/icons/Dismiss/20_f.svg", + "staticwebassets/icons/Dismiss/20_r.svg", + "staticwebassets/icons/Dismiss/24_f.svg", + "staticwebassets/icons/Dismiss/24_r.svg", + "staticwebassets/icons/Dismiss/28_f.svg", + "staticwebassets/icons/Dismiss/28_r.svg", + "staticwebassets/icons/Dismiss/32_f.svg", + "staticwebassets/icons/Dismiss/32_r.svg", + "staticwebassets/icons/Dismiss/48_f.svg", + "staticwebassets/icons/Dismiss/48_r.svg", + "staticwebassets/icons/DismissCircle/12_f.svg", + "staticwebassets/icons/DismissCircle/12_r.svg", + "staticwebassets/icons/DismissCircle/16_f.svg", + "staticwebassets/icons/DismissCircle/16_r.svg", + "staticwebassets/icons/DismissCircle/20_f.svg", + "staticwebassets/icons/DismissCircle/20_r.svg", + "staticwebassets/icons/DismissCircle/24_f.svg", + "staticwebassets/icons/DismissCircle/24_r.svg", + "staticwebassets/icons/DismissCircle/28_f.svg", + "staticwebassets/icons/DismissCircle/28_r.svg", + "staticwebassets/icons/DismissCircle/32_f.svg", + "staticwebassets/icons/DismissCircle/32_r.svg", + "staticwebassets/icons/DismissCircle/48_f.svg", + "staticwebassets/icons/DismissCircle/48_r.svg", + "staticwebassets/icons/DismissSquare/20_f.svg", + "staticwebassets/icons/DismissSquare/20_r.svg", + "staticwebassets/icons/DismissSquare/24_f.svg", + "staticwebassets/icons/DismissSquare/24_r.svg", + "staticwebassets/icons/DismissSquareMultiple/16_f.svg", + "staticwebassets/icons/DismissSquareMultiple/16_r.svg", + "staticwebassets/icons/DismissSquareMultiple/20_f.svg", + "staticwebassets/icons/DismissSquareMultiple/20_r.svg", + "staticwebassets/icons/Diversity/20_f.svg", + "staticwebassets/icons/Diversity/20_r.svg", + "staticwebassets/icons/Diversity/24_f.svg", + "staticwebassets/icons/Diversity/24_r.svg", + "staticwebassets/icons/Diversity/28_f.svg", + "staticwebassets/icons/Diversity/28_r.svg", + "staticwebassets/icons/Diversity/48_f.svg", + "staticwebassets/icons/Diversity/48_r.svg", + "staticwebassets/icons/DividerShort/16_f.svg", + "staticwebassets/icons/DividerShort/16_r.svg", + "staticwebassets/icons/DividerShort/20_f.svg", + "staticwebassets/icons/DividerShort/20_r.svg", + "staticwebassets/icons/DividerShort/24_f.svg", + "staticwebassets/icons/DividerShort/24_r.svg", + "staticwebassets/icons/DividerTall/16_f.svg", + "staticwebassets/icons/DividerTall/16_r.svg", + "staticwebassets/icons/DividerTall/20_f.svg", + "staticwebassets/icons/DividerTall/20_r.svg", + "staticwebassets/icons/DividerTall/24_f.svg", + "staticwebassets/icons/DividerTall/24_r.svg", + "staticwebassets/icons/Dock/20_f.svg", + "staticwebassets/icons/Dock/20_r.svg", + "staticwebassets/icons/Dock/24_f.svg", + "staticwebassets/icons/Dock/24_r.svg", + "staticwebassets/icons/DockRow/20_f.svg", + "staticwebassets/icons/DockRow/20_r.svg", + "staticwebassets/icons/DockRow/24_f.svg", + "staticwebassets/icons/DockRow/24_r.svg", + "staticwebassets/icons/Doctor/12_f.svg", + "staticwebassets/icons/Doctor/12_r.svg", + "staticwebassets/icons/Doctor/16_f.svg", + "staticwebassets/icons/Doctor/16_r.svg", + "staticwebassets/icons/Doctor/20_f.svg", + "staticwebassets/icons/Doctor/20_r.svg", + "staticwebassets/icons/Doctor/24_f.svg", + "staticwebassets/icons/Doctor/24_r.svg", + "staticwebassets/icons/Doctor/28_f.svg", + "staticwebassets/icons/Doctor/28_r.svg", + "staticwebassets/icons/Doctor/48_f.svg", + "staticwebassets/icons/Doctor/48_r.svg", + "staticwebassets/icons/Document/16_f.svg", + "staticwebassets/icons/Document/16_r.svg", + "staticwebassets/icons/Document/20_f.svg", + "staticwebassets/icons/Document/20_r.svg", + "staticwebassets/icons/Document/24_f.svg", + "staticwebassets/icons/Document/24_r.svg", + "staticwebassets/icons/Document/28_f.svg", + "staticwebassets/icons/Document/28_r.svg", + "staticwebassets/icons/Document/32_f.svg", + "staticwebassets/icons/Document/32_r.svg", + "staticwebassets/icons/Document/48_f.svg", + "staticwebassets/icons/Document/48_r.svg", + "staticwebassets/icons/Document100/16_f.svg", + "staticwebassets/icons/Document100/16_r.svg", + "staticwebassets/icons/Document100/20_f.svg", + "staticwebassets/icons/Document100/20_r.svg", + "staticwebassets/icons/Document100/24_f.svg", + "staticwebassets/icons/Document100/24_r.svg", + "staticwebassets/icons/DocumentAdd/16_f.svg", + "staticwebassets/icons/DocumentAdd/16_r.svg", + "staticwebassets/icons/DocumentAdd/20_f.svg", + "staticwebassets/icons/DocumentAdd/20_r.svg", + "staticwebassets/icons/DocumentAdd/24_f.svg", + "staticwebassets/icons/DocumentAdd/24_r.svg", + "staticwebassets/icons/DocumentAdd/28_f.svg", + "staticwebassets/icons/DocumentAdd/28_r.svg", + "staticwebassets/icons/DocumentAdd/48_f.svg", + "staticwebassets/icons/DocumentAdd/48_r.svg", + "staticwebassets/icons/DocumentArrowDown/16_f.svg", + "staticwebassets/icons/DocumentArrowDown/16_r.svg", + "staticwebassets/icons/DocumentArrowDown/20_f.svg", + "staticwebassets/icons/DocumentArrowDown/20_r.svg", + "staticwebassets/icons/DocumentArrowLeft/16_f.svg", + "staticwebassets/icons/DocumentArrowLeft/16_r.svg", + "staticwebassets/icons/DocumentArrowLeft/20_f.svg", + "staticwebassets/icons/DocumentArrowLeft/20_r.svg", + "staticwebassets/icons/DocumentArrowLeft/24_f.svg", + "staticwebassets/icons/DocumentArrowLeft/24_r.svg", + "staticwebassets/icons/DocumentArrowLeft/28_f.svg", + "staticwebassets/icons/DocumentArrowLeft/28_r.svg", + "staticwebassets/icons/DocumentArrowLeft/48_f.svg", + "staticwebassets/icons/DocumentArrowLeft/48_r.svg", + "staticwebassets/icons/DocumentArrowRight/20_f.svg", + "staticwebassets/icons/DocumentArrowRight/20_r.svg", + "staticwebassets/icons/DocumentArrowRight/24_f.svg", + "staticwebassets/icons/DocumentArrowRight/24_r.svg", + "staticwebassets/icons/DocumentArrowUp/16_f.svg", + "staticwebassets/icons/DocumentArrowUp/16_r.svg", + "staticwebassets/icons/DocumentArrowUp/20_f.svg", + "staticwebassets/icons/DocumentArrowUp/20_r.svg", + "staticwebassets/icons/DocumentBorder/20_f.svg", + "staticwebassets/icons/DocumentBorder/20_r.svg", + "staticwebassets/icons/DocumentBorder/24_f.svg", + "staticwebassets/icons/DocumentBorder/24_r.svg", + "staticwebassets/icons/DocumentBorder/32_f.svg", + "staticwebassets/icons/DocumentBorder/32_r.svg", + "staticwebassets/icons/DocumentBorderPrint/20_f.svg", + "staticwebassets/icons/DocumentBorderPrint/20_r.svg", + "staticwebassets/icons/DocumentBorderPrint/24_f.svg", + "staticwebassets/icons/DocumentBorderPrint/24_r.svg", + "staticwebassets/icons/DocumentBorderPrint/32_f.svg", + "staticwebassets/icons/DocumentBorderPrint/32_r.svg", + "staticwebassets/icons/DocumentBriefcase/20_f.svg", + "staticwebassets/icons/DocumentBriefcase/20_r.svg", + "staticwebassets/icons/DocumentBriefcase/24_f.svg", + "staticwebassets/icons/DocumentBriefcase/24_r.svg", + "staticwebassets/icons/DocumentBulletList/16_f.svg", + "staticwebassets/icons/DocumentBulletList/16_r.svg", + "staticwebassets/icons/DocumentBulletList/20_f.svg", + "staticwebassets/icons/DocumentBulletList/20_r.svg", + "staticwebassets/icons/DocumentBulletList/24_f.svg", + "staticwebassets/icons/DocumentBulletList/24_r.svg", + "staticwebassets/icons/DocumentBulletListArrowLeft/16_f.svg", + "staticwebassets/icons/DocumentBulletListArrowLeft/16_r.svg", + "staticwebassets/icons/DocumentBulletListArrowLeft/20_f.svg", + "staticwebassets/icons/DocumentBulletListArrowLeft/20_r.svg", + "staticwebassets/icons/DocumentBulletListArrowLeft/24_f.svg", + "staticwebassets/icons/DocumentBulletListArrowLeft/24_r.svg", + "staticwebassets/icons/DocumentBulletListClock/20_f.svg", + "staticwebassets/icons/DocumentBulletListClock/20_r.svg", + "staticwebassets/icons/DocumentBulletListClock/24_f.svg", + "staticwebassets/icons/DocumentBulletListClock/24_r.svg", + "staticwebassets/icons/DocumentBulletListCube/16_f.svg", + "staticwebassets/icons/DocumentBulletListCube/16_r.svg", + "staticwebassets/icons/DocumentBulletListCube/20_f.svg", + "staticwebassets/icons/DocumentBulletListCube/20_r.svg", + "staticwebassets/icons/DocumentBulletListCube/24_f.svg", + "staticwebassets/icons/DocumentBulletListCube/24_r.svg", + "staticwebassets/icons/DocumentBulletListMultiple/20_f.svg", + "staticwebassets/icons/DocumentBulletListMultiple/20_r.svg", + "staticwebassets/icons/DocumentBulletListMultiple/24_f.svg", + "staticwebassets/icons/DocumentBulletListMultiple/24_r.svg", + "staticwebassets/icons/DocumentBulletListOff/20_f.svg", + "staticwebassets/icons/DocumentBulletListOff/20_r.svg", + "staticwebassets/icons/DocumentBulletListOff/24_f.svg", + "staticwebassets/icons/DocumentBulletListOff/24_r.svg", + "staticwebassets/icons/DocumentCS/16_f.svg", + "staticwebassets/icons/DocumentCS/16_r.svg", + "staticwebassets/icons/DocumentCSS/16_f.svg", + "staticwebassets/icons/DocumentCSS/16_r.svg", + "staticwebassets/icons/DocumentCSS/20_f.svg", + "staticwebassets/icons/DocumentCSS/20_r.svg", + "staticwebassets/icons/DocumentCSS/24_f.svg", + "staticwebassets/icons/DocumentCSS/24_r.svg", + "staticwebassets/icons/DocumentCatchUp/16_f.svg", + "staticwebassets/icons/DocumentCatchUp/16_r.svg", + "staticwebassets/icons/DocumentCatchUp/20_f.svg", + "staticwebassets/icons/DocumentCatchUp/20_r.svg", + "staticwebassets/icons/DocumentCatchUp/24_f.svg", + "staticwebassets/icons/DocumentCatchUp/24_r.svg", + "staticwebassets/icons/DocumentCheckmark/16_f.svg", + "staticwebassets/icons/DocumentCheckmark/16_r.svg", + "staticwebassets/icons/DocumentCheckmark/20_f.svg", + "staticwebassets/icons/DocumentCheckmark/20_r.svg", + "staticwebassets/icons/DocumentCheckmark/24_f.svg", + "staticwebassets/icons/DocumentCheckmark/24_r.svg", + "staticwebassets/icons/DocumentChevronDouble/20_f.svg", + "staticwebassets/icons/DocumentChevronDouble/20_r.svg", + "staticwebassets/icons/DocumentChevronDouble/24_f.svg", + "staticwebassets/icons/DocumentChevronDouble/24_r.svg", + "staticwebassets/icons/DocumentContract/16_f.svg", + "staticwebassets/icons/DocumentContract/16_r.svg", + "staticwebassets/icons/DocumentCopy/16_f.svg", + "staticwebassets/icons/DocumentCopy/16_r.svg", + "staticwebassets/icons/DocumentCopy/20_f.svg", + "staticwebassets/icons/DocumentCopy/20_r.svg", + "staticwebassets/icons/DocumentCopy/24_f.svg", + "staticwebassets/icons/DocumentCopy/24_r.svg", + "staticwebassets/icons/DocumentCopy/48_f.svg", + "staticwebassets/icons/DocumentCopy/48_r.svg", + "staticwebassets/icons/DocumentData/16_f.svg", + "staticwebassets/icons/DocumentData/16_r.svg", + "staticwebassets/icons/DocumentData/20_f.svg", + "staticwebassets/icons/DocumentData/20_r.svg", + "staticwebassets/icons/DocumentData/24_f.svg", + "staticwebassets/icons/DocumentData/24_r.svg", + "staticwebassets/icons/DocumentData/32_f.svg", + "staticwebassets/icons/DocumentData/32_r.svg", + "staticwebassets/icons/DocumentDataLink/16_f.svg", + "staticwebassets/icons/DocumentDataLink/16_r.svg", + "staticwebassets/icons/DocumentDataLink/20_f.svg", + "staticwebassets/icons/DocumentDataLink/20_r.svg", + "staticwebassets/icons/DocumentDataLink/24_f.svg", + "staticwebassets/icons/DocumentDataLink/24_r.svg", + "staticwebassets/icons/DocumentDataLink/32_f.svg", + "staticwebassets/icons/DocumentDataLink/32_r.svg", + "staticwebassets/icons/DocumentDatabase/20_f.svg", + "staticwebassets/icons/DocumentDatabase/20_r.svg", + "staticwebassets/icons/DocumentDatabase/24_f.svg", + "staticwebassets/icons/DocumentDatabase/24_r.svg", + "staticwebassets/icons/DocumentDismiss/16_f.svg", + "staticwebassets/icons/DocumentDismiss/16_r.svg", + "staticwebassets/icons/DocumentDismiss/20_f.svg", + "staticwebassets/icons/DocumentDismiss/20_r.svg", + "staticwebassets/icons/DocumentDismiss/24_f.svg", + "staticwebassets/icons/DocumentDismiss/24_r.svg", + "staticwebassets/icons/DocumentEdit/16_f.svg", + "staticwebassets/icons/DocumentEdit/16_r.svg", + "staticwebassets/icons/DocumentEdit/20_f.svg", + "staticwebassets/icons/DocumentEdit/20_r.svg", + "staticwebassets/icons/DocumentEdit/24_f.svg", + "staticwebassets/icons/DocumentEdit/24_r.svg", + "staticwebassets/icons/DocumentEndnote/20_f.svg", + "staticwebassets/icons/DocumentEndnote/20_r.svg", + "staticwebassets/icons/DocumentEndnote/24_f.svg", + "staticwebassets/icons/DocumentEndnote/24_r.svg", + "staticwebassets/icons/DocumentError/16_f.svg", + "staticwebassets/icons/DocumentError/16_r.svg", + "staticwebassets/icons/DocumentError/20_f.svg", + "staticwebassets/icons/DocumentError/20_r.svg", + "staticwebassets/icons/DocumentError/24_f.svg", + "staticwebassets/icons/DocumentError/24_r.svg", + "staticwebassets/icons/DocumentFS/16_f.svg", + "staticwebassets/icons/DocumentFS/16_r.svg", + "staticwebassets/icons/DocumentFit/16_f.svg", + "staticwebassets/icons/DocumentFit/16_r.svg", + "staticwebassets/icons/DocumentFit/20_f.svg", + "staticwebassets/icons/DocumentFit/20_r.svg", + "staticwebassets/icons/DocumentFit/24_f.svg", + "staticwebassets/icons/DocumentFit/24_r.svg", + "staticwebassets/icons/DocumentFlowchart/20_f.svg", + "staticwebassets/icons/DocumentFlowchart/20_r.svg", + "staticwebassets/icons/DocumentFlowchart/24_f.svg", + "staticwebassets/icons/DocumentFlowchart/24_r.svg", + "staticwebassets/icons/DocumentFolder/16_f.svg", + "staticwebassets/icons/DocumentFolder/16_r.svg", + "staticwebassets/icons/DocumentFolder/20_f.svg", + "staticwebassets/icons/DocumentFolder/20_r.svg", + "staticwebassets/icons/DocumentFolder/24_f.svg", + "staticwebassets/icons/DocumentFolder/24_r.svg", + "staticwebassets/icons/DocumentFooter/16_f.svg", + "staticwebassets/icons/DocumentFooter/16_r.svg", + "staticwebassets/icons/DocumentFooter/20_f.svg", + "staticwebassets/icons/DocumentFooter/20_r.svg", + "staticwebassets/icons/DocumentFooter/24_f.svg", + "staticwebassets/icons/DocumentFooter/24_r.svg", + "staticwebassets/icons/DocumentFooterDismiss/20_f.svg", + "staticwebassets/icons/DocumentFooterDismiss/20_r.svg", + "staticwebassets/icons/DocumentFooterDismiss/24_f.svg", + "staticwebassets/icons/DocumentFooterDismiss/24_r.svg", + "staticwebassets/icons/DocumentHeader/16_f.svg", + "staticwebassets/icons/DocumentHeader/16_r.svg", + "staticwebassets/icons/DocumentHeader/20_f.svg", + "staticwebassets/icons/DocumentHeader/20_r.svg", + "staticwebassets/icons/DocumentHeader/24_f.svg", + "staticwebassets/icons/DocumentHeader/24_r.svg", + "staticwebassets/icons/DocumentHeaderArrowDown/16_f.svg", + "staticwebassets/icons/DocumentHeaderArrowDown/16_r.svg", + "staticwebassets/icons/DocumentHeaderArrowDown/20_f.svg", + "staticwebassets/icons/DocumentHeaderArrowDown/20_r.svg", + "staticwebassets/icons/DocumentHeaderArrowDown/24_f.svg", + "staticwebassets/icons/DocumentHeaderArrowDown/24_r.svg", + "staticwebassets/icons/DocumentHeaderDismiss/20_f.svg", + "staticwebassets/icons/DocumentHeaderDismiss/20_r.svg", + "staticwebassets/icons/DocumentHeaderDismiss/24_f.svg", + "staticwebassets/icons/DocumentHeaderDismiss/24_r.svg", + "staticwebassets/icons/DocumentHeaderFooter/16_f.svg", + "staticwebassets/icons/DocumentHeaderFooter/16_r.svg", + "staticwebassets/icons/DocumentHeaderFooter/20_f.svg", + "staticwebassets/icons/DocumentHeaderFooter/20_r.svg", + "staticwebassets/icons/DocumentHeaderFooter/24_f.svg", + "staticwebassets/icons/DocumentHeaderFooter/24_r.svg", + "staticwebassets/icons/DocumentHeart/20_f.svg", + "staticwebassets/icons/DocumentHeart/20_r.svg", + "staticwebassets/icons/DocumentHeart/24_f.svg", + "staticwebassets/icons/DocumentHeart/24_r.svg", + "staticwebassets/icons/DocumentHeartPulse/20_f.svg", + "staticwebassets/icons/DocumentHeartPulse/20_r.svg", + "staticwebassets/icons/DocumentHeartPulse/24_f.svg", + "staticwebassets/icons/DocumentHeartPulse/24_r.svg", + "staticwebassets/icons/DocumentImage/16_f.svg", + "staticwebassets/icons/DocumentImage/16_r.svg", + "staticwebassets/icons/DocumentImage/20_f.svg", + "staticwebassets/icons/DocumentImage/20_r.svg", + "staticwebassets/icons/DocumentJAVA/16_f.svg", + "staticwebassets/icons/DocumentJAVA/16_r.svg", + "staticwebassets/icons/DocumentJAVA/20_f.svg", + "staticwebassets/icons/DocumentJAVA/20_r.svg", + "staticwebassets/icons/DocumentJS/16_f.svg", + "staticwebassets/icons/DocumentJS/16_r.svg", + "staticwebassets/icons/DocumentJavascript/20_f.svg", + "staticwebassets/icons/DocumentJavascript/20_r.svg", + "staticwebassets/icons/DocumentJavascript/24_f.svg", + "staticwebassets/icons/DocumentJavascript/24_r.svg", + "staticwebassets/icons/DocumentKey/20_f.svg", + "staticwebassets/icons/DocumentKey/20_r.svg", + "staticwebassets/icons/DocumentLandscape/20_f.svg", + "staticwebassets/icons/DocumentLandscape/20_r.svg", + "staticwebassets/icons/DocumentLandscape/24_f.svg", + "staticwebassets/icons/DocumentLandscape/24_r.svg", + "staticwebassets/icons/DocumentLandscapeData/20_f.svg", + "staticwebassets/icons/DocumentLandscapeData/20_r.svg", + "staticwebassets/icons/DocumentLandscapeData/24_f.svg", + "staticwebassets/icons/DocumentLandscapeData/24_r.svg", + "staticwebassets/icons/DocumentLandscapeSplit/20_f.svg", + "staticwebassets/icons/DocumentLandscapeSplit/20_r.svg", + "staticwebassets/icons/DocumentLandscapeSplit/24_f.svg", + "staticwebassets/icons/DocumentLandscapeSplit/24_r.svg", + "staticwebassets/icons/DocumentLandscapeSplitHint/20_f.svg", + "staticwebassets/icons/DocumentLandscapeSplitHint/20_r.svg", + "staticwebassets/icons/DocumentLandscapeSplitHint/24_f.svg", + "staticwebassets/icons/DocumentLandscapeSplitHint/24_r.svg", + "staticwebassets/icons/DocumentLink/16_f.svg", + "staticwebassets/icons/DocumentLink/16_r.svg", + "staticwebassets/icons/DocumentLink/20_f.svg", + "staticwebassets/icons/DocumentLink/20_r.svg", + "staticwebassets/icons/DocumentLink/24_f.svg", + "staticwebassets/icons/DocumentLink/24_r.svg", + "staticwebassets/icons/DocumentLock/16_f.svg", + "staticwebassets/icons/DocumentLock/16_r.svg", + "staticwebassets/icons/DocumentLock/20_f.svg", + "staticwebassets/icons/DocumentLock/20_r.svg", + "staticwebassets/icons/DocumentLock/24_f.svg", + "staticwebassets/icons/DocumentLock/24_r.svg", + "staticwebassets/icons/DocumentLock/28_f.svg", + "staticwebassets/icons/DocumentLock/28_r.svg", + "staticwebassets/icons/DocumentLock/32_f.svg", + "staticwebassets/icons/DocumentLock/32_r.svg", + "staticwebassets/icons/DocumentLock/48_f.svg", + "staticwebassets/icons/DocumentLock/48_r.svg", + "staticwebassets/icons/DocumentMargins/20_f.svg", + "staticwebassets/icons/DocumentMargins/20_r.svg", + "staticwebassets/icons/DocumentMargins/24_f.svg", + "staticwebassets/icons/DocumentMargins/24_r.svg", + "staticwebassets/icons/DocumentMention/16_f.svg", + "staticwebassets/icons/DocumentMention/16_r.svg", + "staticwebassets/icons/DocumentMention/20_f.svg", + "staticwebassets/icons/DocumentMention/20_r.svg", + "staticwebassets/icons/DocumentMention/24_f.svg", + "staticwebassets/icons/DocumentMention/24_r.svg", + "staticwebassets/icons/DocumentMention/28_f.svg", + "staticwebassets/icons/DocumentMention/28_r.svg", + "staticwebassets/icons/DocumentMention/48_f.svg", + "staticwebassets/icons/DocumentMention/48_r.svg", + "staticwebassets/icons/DocumentMultiple/16_f.svg", + "staticwebassets/icons/DocumentMultiple/16_r.svg", + "staticwebassets/icons/DocumentMultiple/20_f.svg", + "staticwebassets/icons/DocumentMultiple/20_r.svg", + "staticwebassets/icons/DocumentMultiple/24_f.svg", + "staticwebassets/icons/DocumentMultiple/24_r.svg", + "staticwebassets/icons/DocumentMultiplePercent/20_f.svg", + "staticwebassets/icons/DocumentMultiplePercent/20_r.svg", + "staticwebassets/icons/DocumentMultiplePercent/24_f.svg", + "staticwebassets/icons/DocumentMultiplePercent/24_r.svg", + "staticwebassets/icons/DocumentMultipleProhibited/20_f.svg", + "staticwebassets/icons/DocumentMultipleProhibited/20_r.svg", + "staticwebassets/icons/DocumentMultipleProhibited/24_f.svg", + "staticwebassets/icons/DocumentMultipleProhibited/24_r.svg", + "staticwebassets/icons/DocumentMultipleSync/20_f.svg", + "staticwebassets/icons/DocumentMultipleSync/20_r.svg", + "staticwebassets/icons/DocumentNumber1/16_f.svg", + "staticwebassets/icons/DocumentNumber1/16_r.svg", + "staticwebassets/icons/DocumentOnePage/16_f.svg", + "staticwebassets/icons/DocumentOnePage/16_r.svg", + "staticwebassets/icons/DocumentOnePage/20_f.svg", + "staticwebassets/icons/DocumentOnePage/20_r.svg", + "staticwebassets/icons/DocumentOnePage/24_f.svg", + "staticwebassets/icons/DocumentOnePage/24_r.svg", + "staticwebassets/icons/DocumentOnePageAdd/16_f.svg", + "staticwebassets/icons/DocumentOnePageAdd/16_r.svg", + "staticwebassets/icons/DocumentOnePageAdd/20_f.svg", + "staticwebassets/icons/DocumentOnePageAdd/20_r.svg", + "staticwebassets/icons/DocumentOnePageAdd/24_f.svg", + "staticwebassets/icons/DocumentOnePageAdd/24_r.svg", + "staticwebassets/icons/DocumentOnePageBeaker/16_f.svg", + "staticwebassets/icons/DocumentOnePageBeaker/16_r.svg", + "staticwebassets/icons/DocumentOnePageColumns/20_f.svg", + "staticwebassets/icons/DocumentOnePageColumns/20_r.svg", + "staticwebassets/icons/DocumentOnePageColumns/24_f.svg", + "staticwebassets/icons/DocumentOnePageColumns/24_r.svg", + "staticwebassets/icons/DocumentOnePageLink/16_f.svg", + "staticwebassets/icons/DocumentOnePageLink/16_r.svg", + "staticwebassets/icons/DocumentOnePageLink/20_f.svg", + "staticwebassets/icons/DocumentOnePageLink/20_r.svg", + "staticwebassets/icons/DocumentOnePageLink/24_f.svg", + "staticwebassets/icons/DocumentOnePageLink/24_r.svg", + "staticwebassets/icons/DocumentOnePageMultiple/16_f.svg", + "staticwebassets/icons/DocumentOnePageMultiple/16_r.svg", + "staticwebassets/icons/DocumentOnePageMultiple/20_f.svg", + "staticwebassets/icons/DocumentOnePageMultiple/20_r.svg", + "staticwebassets/icons/DocumentOnePageMultiple/24_f.svg", + "staticwebassets/icons/DocumentOnePageMultiple/24_r.svg", + "staticwebassets/icons/DocumentOnePageSparkle/16_f.svg", + "staticwebassets/icons/DocumentOnePageSparkle/16_r.svg", + "staticwebassets/icons/DocumentOnePageSparkle/20_f.svg", + "staticwebassets/icons/DocumentOnePageSparkle/20_r.svg", + "staticwebassets/icons/DocumentOnePageSparkle/24_f.svg", + "staticwebassets/icons/DocumentOnePageSparkle/24_r.svg", + "staticwebassets/icons/DocumentPDF/16_f.svg", + "staticwebassets/icons/DocumentPDF/16_r.svg", + "staticwebassets/icons/DocumentPDF/20_f.svg", + "staticwebassets/icons/DocumentPDF/20_r.svg", + "staticwebassets/icons/DocumentPDF/24_f.svg", + "staticwebassets/icons/DocumentPDF/24_r.svg", + "staticwebassets/icons/DocumentPDF/32_f.svg", + "staticwebassets/icons/DocumentPDF/32_r.svg", + "staticwebassets/icons/DocumentPY/16_f.svg", + "staticwebassets/icons/DocumentPY/16_r.svg", + "staticwebassets/icons/DocumentPageBottomCenter/20_f.svg", + "staticwebassets/icons/DocumentPageBottomCenter/20_r.svg", + "staticwebassets/icons/DocumentPageBottomCenter/24_f.svg", + "staticwebassets/icons/DocumentPageBottomCenter/24_r.svg", + "staticwebassets/icons/DocumentPageBottomLeft/20_f.svg", + "staticwebassets/icons/DocumentPageBottomLeft/20_r.svg", + "staticwebassets/icons/DocumentPageBottomLeft/24_f.svg", + "staticwebassets/icons/DocumentPageBottomLeft/24_r.svg", + "staticwebassets/icons/DocumentPageBottomRight/20_f.svg", + "staticwebassets/icons/DocumentPageBottomRight/20_r.svg", + "staticwebassets/icons/DocumentPageBottomRight/24_f.svg", + "staticwebassets/icons/DocumentPageBottomRight/24_r.svg", + "staticwebassets/icons/DocumentPageBreak/20_f.svg", + "staticwebassets/icons/DocumentPageBreak/20_r.svg", + "staticwebassets/icons/DocumentPageBreak/24_f.svg", + "staticwebassets/icons/DocumentPageBreak/24_r.svg", + "staticwebassets/icons/DocumentPageNumber/20_f.svg", + "staticwebassets/icons/DocumentPageNumber/20_r.svg", + "staticwebassets/icons/DocumentPageNumber/24_f.svg", + "staticwebassets/icons/DocumentPageNumber/24_r.svg", + "staticwebassets/icons/DocumentPageTopCenter/20_f.svg", + "staticwebassets/icons/DocumentPageTopCenter/20_r.svg", + "staticwebassets/icons/DocumentPageTopCenter/24_f.svg", + "staticwebassets/icons/DocumentPageTopCenter/24_r.svg", + "staticwebassets/icons/DocumentPageTopLeft/20_f.svg", + "staticwebassets/icons/DocumentPageTopLeft/20_r.svg", + "staticwebassets/icons/DocumentPageTopLeft/24_f.svg", + "staticwebassets/icons/DocumentPageTopLeft/24_r.svg", + "staticwebassets/icons/DocumentPageTopRight/20_f.svg", + "staticwebassets/icons/DocumentPageTopRight/20_r.svg", + "staticwebassets/icons/DocumentPageTopRight/24_f.svg", + "staticwebassets/icons/DocumentPageTopRight/24_r.svg", + "staticwebassets/icons/DocumentPercent/20_f.svg", + "staticwebassets/icons/DocumentPercent/20_r.svg", + "staticwebassets/icons/DocumentPercent/24_f.svg", + "staticwebassets/icons/DocumentPercent/24_r.svg", + "staticwebassets/icons/DocumentPerson/16_f.svg", + "staticwebassets/icons/DocumentPerson/16_r.svg", + "staticwebassets/icons/DocumentPerson/20_f.svg", + "staticwebassets/icons/DocumentPerson/20_r.svg", + "staticwebassets/icons/DocumentPill/20_f.svg", + "staticwebassets/icons/DocumentPill/20_r.svg", + "staticwebassets/icons/DocumentPill/24_f.svg", + "staticwebassets/icons/DocumentPill/24_r.svg", + "staticwebassets/icons/DocumentPrint/20_f.svg", + "staticwebassets/icons/DocumentPrint/20_r.svg", + "staticwebassets/icons/DocumentPrint/24_f.svg", + "staticwebassets/icons/DocumentPrint/24_r.svg", + "staticwebassets/icons/DocumentPrint/28_f.svg", + "staticwebassets/icons/DocumentPrint/28_r.svg", + "staticwebassets/icons/DocumentPrint/32_f.svg", + "staticwebassets/icons/DocumentPrint/32_r.svg", + "staticwebassets/icons/DocumentPrint/48_f.svg", + "staticwebassets/icons/DocumentPrint/48_r.svg", + "staticwebassets/icons/DocumentProhibited/20_f.svg", + "staticwebassets/icons/DocumentProhibited/20_r.svg", + "staticwebassets/icons/DocumentProhibited/24_f.svg", + "staticwebassets/icons/DocumentProhibited/24_r.svg", + "staticwebassets/icons/DocumentQuestionMark/16_f.svg", + "staticwebassets/icons/DocumentQuestionMark/16_r.svg", + "staticwebassets/icons/DocumentQuestionMark/20_f.svg", + "staticwebassets/icons/DocumentQuestionMark/20_r.svg", + "staticwebassets/icons/DocumentQuestionMark/24_f.svg", + "staticwebassets/icons/DocumentQuestionMark/24_r.svg", + "staticwebassets/icons/DocumentQueue/20_f.svg", + "staticwebassets/icons/DocumentQueue/20_r.svg", + "staticwebassets/icons/DocumentQueue/24_f.svg", + "staticwebassets/icons/DocumentQueue/24_r.svg", + "staticwebassets/icons/DocumentQueueAdd/20_f.svg", + "staticwebassets/icons/DocumentQueueAdd/20_r.svg", + "staticwebassets/icons/DocumentQueueAdd/24_f.svg", + "staticwebassets/icons/DocumentQueueAdd/24_r.svg", + "staticwebassets/icons/DocumentQueueMultiple/20_f.svg", + "staticwebassets/icons/DocumentQueueMultiple/20_r.svg", + "staticwebassets/icons/DocumentQueueMultiple/24_f.svg", + "staticwebassets/icons/DocumentQueueMultiple/24_r.svg", + "staticwebassets/icons/DocumentRB/16_f.svg", + "staticwebassets/icons/DocumentRB/16_r.svg", + "staticwebassets/icons/DocumentRibbon/16_f.svg", + "staticwebassets/icons/DocumentRibbon/16_r.svg", + "staticwebassets/icons/DocumentRibbon/20_f.svg", + "staticwebassets/icons/DocumentRibbon/20_r.svg", + "staticwebassets/icons/DocumentRibbon/24_f.svg", + "staticwebassets/icons/DocumentRibbon/24_r.svg", + "staticwebassets/icons/DocumentRibbon/28_f.svg", + "staticwebassets/icons/DocumentRibbon/28_r.svg", + "staticwebassets/icons/DocumentRibbon/32_f.svg", + "staticwebassets/icons/DocumentRibbon/32_r.svg", + "staticwebassets/icons/DocumentRibbon/48_f.svg", + "staticwebassets/icons/DocumentRibbon/48_r.svg", + "staticwebassets/icons/DocumentSASS/16_f.svg", + "staticwebassets/icons/DocumentSASS/16_r.svg", + "staticwebassets/icons/DocumentSASS/20_f.svg", + "staticwebassets/icons/DocumentSASS/20_r.svg", + "staticwebassets/icons/DocumentSave/20_f.svg", + "staticwebassets/icons/DocumentSave/20_r.svg", + "staticwebassets/icons/DocumentSave/24_f.svg", + "staticwebassets/icons/DocumentSave/24_r.svg", + "staticwebassets/icons/DocumentSearch/16_f.svg", + "staticwebassets/icons/DocumentSearch/16_r.svg", + "staticwebassets/icons/DocumentSearch/20_f.svg", + "staticwebassets/icons/DocumentSearch/20_r.svg", + "staticwebassets/icons/DocumentSearch/24_f.svg", + "staticwebassets/icons/DocumentSearch/24_r.svg", + "staticwebassets/icons/DocumentSettings/16_f.svg", + "staticwebassets/icons/DocumentSettings/16_r.svg", + "staticwebassets/icons/DocumentSettings/20_f.svg", + "staticwebassets/icons/DocumentSettings/20_r.svg", + "staticwebassets/icons/DocumentSplitHint/16_f.svg", + "staticwebassets/icons/DocumentSplitHint/16_r.svg", + "staticwebassets/icons/DocumentSplitHint/20_f.svg", + "staticwebassets/icons/DocumentSplitHint/20_r.svg", + "staticwebassets/icons/DocumentSplitHint/24_f.svg", + "staticwebassets/icons/DocumentSplitHint/24_r.svg", + "staticwebassets/icons/DocumentSplitHintOff/16_f.svg", + "staticwebassets/icons/DocumentSplitHintOff/16_r.svg", + "staticwebassets/icons/DocumentSplitHintOff/20_f.svg", + "staticwebassets/icons/DocumentSplitHintOff/20_r.svg", + "staticwebassets/icons/DocumentSplitHintOff/24_f.svg", + "staticwebassets/icons/DocumentSplitHintOff/24_r.svg", + "staticwebassets/icons/DocumentSync/16_f.svg", + "staticwebassets/icons/DocumentSync/16_r.svg", + "staticwebassets/icons/DocumentSync/20_f.svg", + "staticwebassets/icons/DocumentSync/20_r.svg", + "staticwebassets/icons/DocumentSync/24_f.svg", + "staticwebassets/icons/DocumentSync/24_r.svg", + "staticwebassets/icons/DocumentSync/32_f.svg", + "staticwebassets/icons/DocumentSync/32_r.svg", + "staticwebassets/icons/DocumentTS/16_f.svg", + "staticwebassets/icons/DocumentTS/16_r.svg", + "staticwebassets/icons/DocumentTable/16_f.svg", + "staticwebassets/icons/DocumentTable/16_r.svg", + "staticwebassets/icons/DocumentTable/20_f.svg", + "staticwebassets/icons/DocumentTable/20_r.svg", + "staticwebassets/icons/DocumentTable/24_f.svg", + "staticwebassets/icons/DocumentTable/24_r.svg", + "staticwebassets/icons/DocumentTableArrowRight/20_f.svg", + "staticwebassets/icons/DocumentTableArrowRight/20_r.svg", + "staticwebassets/icons/DocumentTableArrowRight/24_f.svg", + "staticwebassets/icons/DocumentTableArrowRight/24_r.svg", + "staticwebassets/icons/DocumentTableCheckmark/20_f.svg", + "staticwebassets/icons/DocumentTableCheckmark/20_r.svg", + "staticwebassets/icons/DocumentTableCheckmark/24_f.svg", + "staticwebassets/icons/DocumentTableCheckmark/24_r.svg", + "staticwebassets/icons/DocumentTableCube/20_f.svg", + "staticwebassets/icons/DocumentTableCube/20_r.svg", + "staticwebassets/icons/DocumentTableCube/24_f.svg", + "staticwebassets/icons/DocumentTableCube/24_r.svg", + "staticwebassets/icons/DocumentTableSearch/20_f.svg", + "staticwebassets/icons/DocumentTableSearch/20_r.svg", + "staticwebassets/icons/DocumentTableSearch/24_f.svg", + "staticwebassets/icons/DocumentTableSearch/24_r.svg", + "staticwebassets/icons/DocumentTableTruck/20_f.svg", + "staticwebassets/icons/DocumentTableTruck/20_r.svg", + "staticwebassets/icons/DocumentTableTruck/24_f.svg", + "staticwebassets/icons/DocumentTableTruck/24_r.svg", + "staticwebassets/icons/DocumentTarget/16_f.svg", + "staticwebassets/icons/DocumentTarget/16_r.svg", + "staticwebassets/icons/DocumentText/16_f.svg", + "staticwebassets/icons/DocumentText/16_r.svg", + "staticwebassets/icons/DocumentText/20_f.svg", + "staticwebassets/icons/DocumentText/20_r.svg", + "staticwebassets/icons/DocumentText/24_f.svg", + "staticwebassets/icons/DocumentText/24_r.svg", + "staticwebassets/icons/DocumentTextClock/20_f.svg", + "staticwebassets/icons/DocumentTextClock/20_r.svg", + "staticwebassets/icons/DocumentTextClock/24_f.svg", + "staticwebassets/icons/DocumentTextClock/24_r.svg", + "staticwebassets/icons/DocumentTextExtract/20_f.svg", + "staticwebassets/icons/DocumentTextExtract/20_r.svg", + "staticwebassets/icons/DocumentTextExtract/24_f.svg", + "staticwebassets/icons/DocumentTextExtract/24_r.svg", + "staticwebassets/icons/DocumentTextLink/20_f.svg", + "staticwebassets/icons/DocumentTextLink/20_r.svg", + "staticwebassets/icons/DocumentTextLink/24_f.svg", + "staticwebassets/icons/DocumentTextLink/24_r.svg", + "staticwebassets/icons/DocumentTextToolbox/20_f.svg", + "staticwebassets/icons/DocumentTextToolbox/20_r.svg", + "staticwebassets/icons/DocumentTextToolbox/24_f.svg", + "staticwebassets/icons/DocumentTextToolbox/24_r.svg", + "staticwebassets/icons/DocumentToolbox/20_f.svg", + "staticwebassets/icons/DocumentToolbox/20_r.svg", + "staticwebassets/icons/DocumentToolbox/24_f.svg", + "staticwebassets/icons/DocumentToolbox/24_r.svg", + "staticwebassets/icons/DocumentVB/16_f.svg", + "staticwebassets/icons/DocumentVB/16_r.svg", + "staticwebassets/icons/DocumentWidth/20_f.svg", + "staticwebassets/icons/DocumentWidth/20_r.svg", + "staticwebassets/icons/DocumentWidth/24_f.svg", + "staticwebassets/icons/DocumentWidth/24_r.svg", + "staticwebassets/icons/DocumentYML/16_f.svg", + "staticwebassets/icons/DocumentYML/16_r.svg", + "staticwebassets/icons/DocumentYML/20_f.svg", + "staticwebassets/icons/DocumentYML/20_r.svg", + "staticwebassets/icons/Door/16_f.svg", + "staticwebassets/icons/Door/16_r.svg", + "staticwebassets/icons/Door/20_f.svg", + "staticwebassets/icons/Door/20_r.svg", + "staticwebassets/icons/Door/28_f.svg", + "staticwebassets/icons/Door/28_r.svg", + "staticwebassets/icons/DoorArrowLeft/16_f.svg", + "staticwebassets/icons/DoorArrowLeft/16_r.svg", + "staticwebassets/icons/DoorArrowLeft/20_f.svg", + "staticwebassets/icons/DoorArrowLeft/20_r.svg", + "staticwebassets/icons/DoorArrowLeft/24_f.svg", + "staticwebassets/icons/DoorArrowLeft/24_r.svg", + "staticwebassets/icons/DoorArrowRight/16_f.svg", + "staticwebassets/icons/DoorArrowRight/16_r.svg", + "staticwebassets/icons/DoorArrowRight/20_f.svg", + "staticwebassets/icons/DoorArrowRight/20_r.svg", + "staticwebassets/icons/DoorArrowRight/28_f.svg", + "staticwebassets/icons/DoorArrowRight/28_r.svg", + "staticwebassets/icons/DoorTag/20_f.svg", + "staticwebassets/icons/DoorTag/20_r.svg", + "staticwebassets/icons/DoorTag/24_f.svg", + "staticwebassets/icons/DoorTag/24_r.svg", + "staticwebassets/icons/DoubleSwipeDown/20_f.svg", + "staticwebassets/icons/DoubleSwipeDown/20_r.svg", + "staticwebassets/icons/DoubleSwipeDown/24_f.svg", + "staticwebassets/icons/DoubleSwipeDown/24_r.svg", + "staticwebassets/icons/DoubleSwipeUp/20_f.svg", + "staticwebassets/icons/DoubleSwipeUp/20_r.svg", + "staticwebassets/icons/DoubleSwipeUp/24_f.svg", + "staticwebassets/icons/DoubleSwipeUp/24_r.svg", + "staticwebassets/icons/DoubleTapSwipeDown/20_f.svg", + "staticwebassets/icons/DoubleTapSwipeDown/20_r.svg", + "staticwebassets/icons/DoubleTapSwipeDown/24_f.svg", + "staticwebassets/icons/DoubleTapSwipeDown/24_r.svg", + "staticwebassets/icons/DoubleTapSwipeUp/20_f.svg", + "staticwebassets/icons/DoubleTapSwipeUp/20_r.svg", + "staticwebassets/icons/DoubleTapSwipeUp/24_f.svg", + "staticwebassets/icons/DoubleTapSwipeUp/24_r.svg", + "staticwebassets/icons/Drafts/16_f.svg", + "staticwebassets/icons/Drafts/16_r.svg", + "staticwebassets/icons/Drafts/20_f.svg", + "staticwebassets/icons/Drafts/20_r.svg", + "staticwebassets/icons/Drafts/24_f.svg", + "staticwebassets/icons/Drafts/24_r.svg", + "staticwebassets/icons/Drag/20_f.svg", + "staticwebassets/icons/Drag/20_r.svg", + "staticwebassets/icons/Drag/24_f.svg", + "staticwebassets/icons/Drag/24_r.svg", + "staticwebassets/icons/DrawImage/20_f.svg", + "staticwebassets/icons/DrawImage/20_r.svg", + "staticwebassets/icons/DrawImage/24_f.svg", + "staticwebassets/icons/DrawImage/24_r.svg", + "staticwebassets/icons/DrawShape/20_f.svg", + "staticwebassets/icons/DrawShape/20_r.svg", + "staticwebassets/icons/DrawShape/24_f.svg", + "staticwebassets/icons/DrawShape/24_r.svg", + "staticwebassets/icons/DrawText/20_f.svg", + "staticwebassets/icons/DrawText/20_r.svg", + "staticwebassets/icons/DrawText/24_f.svg", + "staticwebassets/icons/DrawText/24_r.svg", + "staticwebassets/icons/DrawerAdd/20_f.svg", + "staticwebassets/icons/DrawerAdd/20_r.svg", + "staticwebassets/icons/DrawerAdd/24_f.svg", + "staticwebassets/icons/DrawerAdd/24_r.svg", + "staticwebassets/icons/DrawerArrowDownload/20_f.svg", + "staticwebassets/icons/DrawerArrowDownload/20_r.svg", + "staticwebassets/icons/DrawerArrowDownload/24_f.svg", + "staticwebassets/icons/DrawerArrowDownload/24_r.svg", + "staticwebassets/icons/DrawerDismiss/20_f.svg", + "staticwebassets/icons/DrawerDismiss/20_r.svg", + "staticwebassets/icons/DrawerDismiss/24_f.svg", + "staticwebassets/icons/DrawerDismiss/24_r.svg", + "staticwebassets/icons/DrawerPlay/20_f.svg", + "staticwebassets/icons/DrawerPlay/20_r.svg", + "staticwebassets/icons/DrawerPlay/24_f.svg", + "staticwebassets/icons/DrawerPlay/24_r.svg", + "staticwebassets/icons/DrawerSubtract/20_f.svg", + "staticwebassets/icons/DrawerSubtract/20_r.svg", + "staticwebassets/icons/DrawerSubtract/24_f.svg", + "staticwebassets/icons/DrawerSubtract/24_r.svg", + "staticwebassets/icons/DrinkBeer/16_f.svg", + "staticwebassets/icons/DrinkBeer/16_r.svg", + "staticwebassets/icons/DrinkBeer/20_f.svg", + "staticwebassets/icons/DrinkBeer/20_r.svg", + "staticwebassets/icons/DrinkBeer/24_f.svg", + "staticwebassets/icons/DrinkBeer/24_r.svg", + "staticwebassets/icons/DrinkBottle/20_f.svg", + "staticwebassets/icons/DrinkBottle/20_r.svg", + "staticwebassets/icons/DrinkBottle/32_f.svg", + "staticwebassets/icons/DrinkBottle/32_r.svg", + "staticwebassets/icons/DrinkBottleOff/20_f.svg", + "staticwebassets/icons/DrinkBottleOff/20_r.svg", + "staticwebassets/icons/DrinkBottleOff/32_f.svg", + "staticwebassets/icons/DrinkBottleOff/32_r.svg", + "staticwebassets/icons/DrinkCoffee/16_f.svg", + "staticwebassets/icons/DrinkCoffee/16_r.svg", + "staticwebassets/icons/DrinkCoffee/20_f.svg", + "staticwebassets/icons/DrinkCoffee/20_r.svg", + "staticwebassets/icons/DrinkCoffee/24_f.svg", + "staticwebassets/icons/DrinkCoffee/24_r.svg", + "staticwebassets/icons/DrinkMargarita/16_f.svg", + "staticwebassets/icons/DrinkMargarita/16_r.svg", + "staticwebassets/icons/DrinkMargarita/20_f.svg", + "staticwebassets/icons/DrinkMargarita/20_r.svg", + "staticwebassets/icons/DrinkMargarita/24_f.svg", + "staticwebassets/icons/DrinkMargarita/24_r.svg", + "staticwebassets/icons/DrinkToGo/20_f.svg", + "staticwebassets/icons/DrinkToGo/20_r.svg", + "staticwebassets/icons/DrinkToGo/24_f.svg", + "staticwebassets/icons/DrinkToGo/24_r.svg", + "staticwebassets/icons/DrinkWine/16_f.svg", + "staticwebassets/icons/DrinkWine/16_r.svg", + "staticwebassets/icons/DrinkWine/20_f.svg", + "staticwebassets/icons/DrinkWine/20_r.svg", + "staticwebassets/icons/DrinkWine/24_f.svg", + "staticwebassets/icons/DrinkWine/24_r.svg", + "staticwebassets/icons/DriveTrain/20_f.svg", + "staticwebassets/icons/DriveTrain/20_r.svg", + "staticwebassets/icons/DriveTrain/24_f.svg", + "staticwebassets/icons/DriveTrain/24_r.svg", + "staticwebassets/icons/Drop/12_f.svg", + "staticwebassets/icons/Drop/12_r.svg", + "staticwebassets/icons/Drop/16_f.svg", + "staticwebassets/icons/Drop/16_r.svg", + "staticwebassets/icons/Drop/20_f.svg", + "staticwebassets/icons/Drop/20_r.svg", + "staticwebassets/icons/Drop/24_f.svg", + "staticwebassets/icons/Drop/24_r.svg", + "staticwebassets/icons/Drop/28_f.svg", + "staticwebassets/icons/Drop/28_r.svg", + "staticwebassets/icons/Drop/48_f.svg", + "staticwebassets/icons/Drop/48_r.svg", + "staticwebassets/icons/DualScreen/20_f.svg", + "staticwebassets/icons/DualScreen/20_r.svg", + "staticwebassets/icons/DualScreen/24_f.svg", + "staticwebassets/icons/DualScreen/24_r.svg", + "staticwebassets/icons/DualScreenAdd/20_f.svg", + "staticwebassets/icons/DualScreenAdd/20_r.svg", + "staticwebassets/icons/DualScreenAdd/24_f.svg", + "staticwebassets/icons/DualScreenAdd/24_r.svg", + "staticwebassets/icons/DualScreenArrowRight/20_f.svg", + "staticwebassets/icons/DualScreenArrowRight/20_r.svg", + "staticwebassets/icons/DualScreenArrowRight/24_f.svg", + "staticwebassets/icons/DualScreenArrowRight/24_r.svg", + "staticwebassets/icons/DualScreenArrowUp/20_f.svg", + "staticwebassets/icons/DualScreenArrowUp/20_r.svg", + "staticwebassets/icons/DualScreenArrowUp/24_f.svg", + "staticwebassets/icons/DualScreenArrowUp/24_r.svg", + "staticwebassets/icons/DualScreenClock/20_f.svg", + "staticwebassets/icons/DualScreenClock/20_r.svg", + "staticwebassets/icons/DualScreenClock/24_f.svg", + "staticwebassets/icons/DualScreenClock/24_r.svg", + "staticwebassets/icons/DualScreenClosedAlert/20_f.svg", + "staticwebassets/icons/DualScreenClosedAlert/20_r.svg", + "staticwebassets/icons/DualScreenClosedAlert/24_f.svg", + "staticwebassets/icons/DualScreenClosedAlert/24_r.svg", + "staticwebassets/icons/DualScreenDesktop/20_f.svg", + "staticwebassets/icons/DualScreenDesktop/20_r.svg", + "staticwebassets/icons/DualScreenDesktop/24_f.svg", + "staticwebassets/icons/DualScreenDesktop/24_r.svg", + "staticwebassets/icons/DualScreenDismiss/20_f.svg", + "staticwebassets/icons/DualScreenDismiss/20_r.svg", + "staticwebassets/icons/DualScreenDismiss/24_f.svg", + "staticwebassets/icons/DualScreenDismiss/24_r.svg", + "staticwebassets/icons/DualScreenGroup/20_f.svg", + "staticwebassets/icons/DualScreenGroup/20_r.svg", + "staticwebassets/icons/DualScreenGroup/24_f.svg", + "staticwebassets/icons/DualScreenGroup/24_r.svg", + "staticwebassets/icons/DualScreenHeader/20_f.svg", + "staticwebassets/icons/DualScreenHeader/20_r.svg", + "staticwebassets/icons/DualScreenHeader/24_f.svg", + "staticwebassets/icons/DualScreenHeader/24_r.svg", + "staticwebassets/icons/DualScreenLock/20_f.svg", + "staticwebassets/icons/DualScreenLock/20_r.svg", + "staticwebassets/icons/DualScreenLock/24_f.svg", + "staticwebassets/icons/DualScreenLock/24_r.svg", + "staticwebassets/icons/DualScreenMirror/20_f.svg", + "staticwebassets/icons/DualScreenMirror/20_r.svg", + "staticwebassets/icons/DualScreenMirror/24_f.svg", + "staticwebassets/icons/DualScreenMirror/24_r.svg", + "staticwebassets/icons/DualScreenPagination/20_f.svg", + "staticwebassets/icons/DualScreenPagination/20_r.svg", + "staticwebassets/icons/DualScreenPagination/24_f.svg", + "staticwebassets/icons/DualScreenPagination/24_r.svg", + "staticwebassets/icons/DualScreenSettings/20_f.svg", + "staticwebassets/icons/DualScreenSettings/20_r.svg", + "staticwebassets/icons/DualScreenSettings/24_f.svg", + "staticwebassets/icons/DualScreenSettings/24_r.svg", + "staticwebassets/icons/DualScreenSpan/20_f.svg", + "staticwebassets/icons/DualScreenSpan/20_r.svg", + "staticwebassets/icons/DualScreenSpan/24_f.svg", + "staticwebassets/icons/DualScreenSpan/24_r.svg", + "staticwebassets/icons/DualScreenSpeaker/20_f.svg", + "staticwebassets/icons/DualScreenSpeaker/20_r.svg", + "staticwebassets/icons/DualScreenSpeaker/24_f.svg", + "staticwebassets/icons/DualScreenSpeaker/24_r.svg", + "staticwebassets/icons/DualScreenStatusBar/20_f.svg", + "staticwebassets/icons/DualScreenStatusBar/20_r.svg", + "staticwebassets/icons/DualScreenStatusBar/24_f.svg", + "staticwebassets/icons/DualScreenStatusBar/24_r.svg", + "staticwebassets/icons/DualScreenTablet/20_f.svg", + "staticwebassets/icons/DualScreenTablet/20_r.svg", + "staticwebassets/icons/DualScreenTablet/24_f.svg", + "staticwebassets/icons/DualScreenTablet/24_r.svg", + "staticwebassets/icons/DualScreenUpdate/20_f.svg", + "staticwebassets/icons/DualScreenUpdate/20_r.svg", + "staticwebassets/icons/DualScreenUpdate/24_f.svg", + "staticwebassets/icons/DualScreenUpdate/24_r.svg", + "staticwebassets/icons/DualScreenVerticalScroll/20_f.svg", + "staticwebassets/icons/DualScreenVerticalScroll/20_r.svg", + "staticwebassets/icons/DualScreenVerticalScroll/24_f.svg", + "staticwebassets/icons/DualScreenVerticalScroll/24_r.svg", + "staticwebassets/icons/DualScreenVibrate/20_f.svg", + "staticwebassets/icons/DualScreenVibrate/20_r.svg", + "staticwebassets/icons/DualScreenVibrate/24_f.svg", + "staticwebassets/icons/DualScreenVibrate/24_r.svg", + "staticwebassets/icons/Dumbbell/16_f.svg", + "staticwebassets/icons/Dumbbell/16_r.svg", + "staticwebassets/icons/Dumbbell/20_f.svg", + "staticwebassets/icons/Dumbbell/20_r.svg", + "staticwebassets/icons/Dumbbell/24_f.svg", + "staticwebassets/icons/Dumbbell/24_r.svg", + "staticwebassets/icons/Dumbbell/28_f.svg", + "staticwebassets/icons/Dumbbell/28_r.svg", + "staticwebassets/icons/Dust/20_f.svg", + "staticwebassets/icons/Dust/20_r.svg", + "staticwebassets/icons/Dust/24_f.svg", + "staticwebassets/icons/Dust/24_r.svg", + "staticwebassets/icons/Dust/28_f.svg", + "staticwebassets/icons/Dust/28_r.svg", + "staticwebassets/icons/Earth/16_f.svg", + "staticwebassets/icons/Earth/16_r.svg", + "staticwebassets/icons/Earth/20_f.svg", + "staticwebassets/icons/Earth/20_r.svg", + "staticwebassets/icons/Earth/24_f.svg", + "staticwebassets/icons/Earth/24_r.svg", + "staticwebassets/icons/Earth/32_f.svg", + "staticwebassets/icons/Earth/32_r.svg", + "staticwebassets/icons/Earth/48_f.svg", + "staticwebassets/icons/Earth/48_r.svg", + "staticwebassets/icons/EarthLeaf/16_f.svg", + "staticwebassets/icons/EarthLeaf/16_r.svg", + "staticwebassets/icons/EarthLeaf/20_f.svg", + "staticwebassets/icons/EarthLeaf/20_r.svg", + "staticwebassets/icons/EarthLeaf/24_f.svg", + "staticwebassets/icons/EarthLeaf/24_r.svg", + "staticwebassets/icons/EarthLeaf/32_f.svg", + "staticwebassets/icons/EarthLeaf/32_r.svg", + "staticwebassets/icons/EarthLeaf/48_f.svg", + "staticwebassets/icons/EarthLeaf/48_r.svg", + "staticwebassets/icons/Edit/16_f.svg", + "staticwebassets/icons/Edit/16_r.svg", + "staticwebassets/icons/Edit/20_f.svg", + "staticwebassets/icons/Edit/20_r.svg", + "staticwebassets/icons/Edit/24_f.svg", + "staticwebassets/icons/Edit/24_r.svg", + "staticwebassets/icons/Edit/28_f.svg", + "staticwebassets/icons/Edit/28_r.svg", + "staticwebassets/icons/Edit/32_f.svg", + "staticwebassets/icons/Edit/32_r.svg", + "staticwebassets/icons/Edit/48_f.svg", + "staticwebassets/icons/Edit/48_r.svg", + "staticwebassets/icons/EditArrowBack/16_f.svg", + "staticwebassets/icons/EditArrowBack/16_r.svg", + "staticwebassets/icons/EditArrowBack/20_f.svg", + "staticwebassets/icons/EditArrowBack/20_r.svg", + "staticwebassets/icons/EditArrowBack/24_f.svg", + "staticwebassets/icons/EditArrowBack/24_r.svg", + "staticwebassets/icons/EditOff/16_f.svg", + "staticwebassets/icons/EditOff/16_r.svg", + "staticwebassets/icons/EditOff/20_f.svg", + "staticwebassets/icons/EditOff/20_r.svg", + "staticwebassets/icons/EditOff/24_f.svg", + "staticwebassets/icons/EditOff/24_r.svg", + "staticwebassets/icons/EditOff/28_f.svg", + "staticwebassets/icons/EditOff/28_r.svg", + "staticwebassets/icons/EditOff/32_f.svg", + "staticwebassets/icons/EditOff/32_r.svg", + "staticwebassets/icons/EditOff/48_f.svg", + "staticwebassets/icons/EditOff/48_r.svg", + "staticwebassets/icons/EditProhibited/16_f.svg", + "staticwebassets/icons/EditProhibited/16_r.svg", + "staticwebassets/icons/EditProhibited/20_f.svg", + "staticwebassets/icons/EditProhibited/20_r.svg", + "staticwebassets/icons/EditProhibited/24_f.svg", + "staticwebassets/icons/EditProhibited/24_r.svg", + "staticwebassets/icons/EditProhibited/28_f.svg", + "staticwebassets/icons/EditProhibited/28_r.svg", + "staticwebassets/icons/EditProhibited/32_f.svg", + "staticwebassets/icons/EditProhibited/32_r.svg", + "staticwebassets/icons/EditProhibited/48_f.svg", + "staticwebassets/icons/EditProhibited/48_r.svg", + "staticwebassets/icons/EditSettings/20_f.svg", + "staticwebassets/icons/EditSettings/20_r.svg", + "staticwebassets/icons/EditSettings/24_f.svg", + "staticwebassets/icons/EditSettings/24_r.svg", + "staticwebassets/icons/Elevator/20_f.svg", + "staticwebassets/icons/Elevator/20_r.svg", + "staticwebassets/icons/Elevator/24_f.svg", + "staticwebassets/icons/Elevator/24_r.svg", + "staticwebassets/icons/Elevator/32_f.svg", + "staticwebassets/icons/Elevator/32_r.svg", + "staticwebassets/icons/Elevator/48_f.svg", + "staticwebassets/icons/Elevator/48_r.svg", + "staticwebassets/icons/Emoji/16_f.svg", + "staticwebassets/icons/Emoji/16_r.svg", + "staticwebassets/icons/Emoji/20_f.svg", + "staticwebassets/icons/Emoji/20_r.svg", + "staticwebassets/icons/Emoji/24_f.svg", + "staticwebassets/icons/Emoji/24_r.svg", + "staticwebassets/icons/Emoji/28_f.svg", + "staticwebassets/icons/Emoji/28_r.svg", + "staticwebassets/icons/Emoji/32_f.svg", + "staticwebassets/icons/Emoji/32_r.svg", + "staticwebassets/icons/Emoji/48_f.svg", + "staticwebassets/icons/Emoji/48_r.svg", + "staticwebassets/icons/EmojiAdd/16_f.svg", + "staticwebassets/icons/EmojiAdd/16_r.svg", + "staticwebassets/icons/EmojiAdd/20_f.svg", + "staticwebassets/icons/EmojiAdd/20_r.svg", + "staticwebassets/icons/EmojiAdd/24_f.svg", + "staticwebassets/icons/EmojiAdd/24_r.svg", + "staticwebassets/icons/EmojiAngry/16_f.svg", + "staticwebassets/icons/EmojiAngry/16_r.svg", + "staticwebassets/icons/EmojiAngry/20_f.svg", + "staticwebassets/icons/EmojiAngry/20_r.svg", + "staticwebassets/icons/EmojiAngry/24_f.svg", + "staticwebassets/icons/EmojiAngry/24_r.svg", + "staticwebassets/icons/EmojiEdit/16_f.svg", + "staticwebassets/icons/EmojiEdit/16_r.svg", + "staticwebassets/icons/EmojiEdit/20_f.svg", + "staticwebassets/icons/EmojiEdit/20_r.svg", + "staticwebassets/icons/EmojiEdit/24_f.svg", + "staticwebassets/icons/EmojiEdit/24_r.svg", + "staticwebassets/icons/EmojiEdit/28_f.svg", + "staticwebassets/icons/EmojiEdit/28_r.svg", + "staticwebassets/icons/EmojiEdit/48_f.svg", + "staticwebassets/icons/EmojiEdit/48_r.svg", + "staticwebassets/icons/EmojiHand/16_f.svg", + "staticwebassets/icons/EmojiHand/16_r.svg", + "staticwebassets/icons/EmojiHand/20_f.svg", + "staticwebassets/icons/EmojiHand/20_r.svg", + "staticwebassets/icons/EmojiHand/24_f.svg", + "staticwebassets/icons/EmojiHand/24_r.svg", + "staticwebassets/icons/EmojiHand/28_f.svg", + "staticwebassets/icons/EmojiHand/28_r.svg", + "staticwebassets/icons/EmojiHand/32_f.svg", + "staticwebassets/icons/EmojiHand/32_r.svg", + "staticwebassets/icons/EmojiHand/48_f.svg", + "staticwebassets/icons/EmojiHand/48_r.svg", + "staticwebassets/icons/EmojiHint/16_f.svg", + "staticwebassets/icons/EmojiHint/16_r.svg", + "staticwebassets/icons/EmojiHint/20_f.svg", + "staticwebassets/icons/EmojiHint/20_r.svg", + "staticwebassets/icons/EmojiHint/24_f.svg", + "staticwebassets/icons/EmojiHint/24_r.svg", + "staticwebassets/icons/EmojiHint/28_f.svg", + "staticwebassets/icons/EmojiHint/28_r.svg", + "staticwebassets/icons/EmojiHint/32_f.svg", + "staticwebassets/icons/EmojiHint/32_r.svg", + "staticwebassets/icons/EmojiHint/48_f.svg", + "staticwebassets/icons/EmojiHint/48_r.svg", + "staticwebassets/icons/EmojiLaugh/16_f.svg", + "staticwebassets/icons/EmojiLaugh/16_r.svg", + "staticwebassets/icons/EmojiLaugh/20_f.svg", + "staticwebassets/icons/EmojiLaugh/20_r.svg", + "staticwebassets/icons/EmojiLaugh/24_f.svg", + "staticwebassets/icons/EmojiLaugh/24_r.svg", + "staticwebassets/icons/EmojiMeh/16_f.svg", + "staticwebassets/icons/EmojiMeh/16_r.svg", + "staticwebassets/icons/EmojiMeh/20_f.svg", + "staticwebassets/icons/EmojiMeh/20_r.svg", + "staticwebassets/icons/EmojiMeh/24_f.svg", + "staticwebassets/icons/EmojiMeh/24_r.svg", + "staticwebassets/icons/EmojiMultiple/20_f.svg", + "staticwebassets/icons/EmojiMultiple/20_r.svg", + "staticwebassets/icons/EmojiMultiple/24_f.svg", + "staticwebassets/icons/EmojiMultiple/24_r.svg", + "staticwebassets/icons/EmojiSad/16_f.svg", + "staticwebassets/icons/EmojiSad/16_r.svg", + "staticwebassets/icons/EmojiSad/20_f.svg", + "staticwebassets/icons/EmojiSad/20_r.svg", + "staticwebassets/icons/EmojiSad/24_f.svg", + "staticwebassets/icons/EmojiSad/24_r.svg", + "staticwebassets/icons/EmojiSadSlight/20_f.svg", + "staticwebassets/icons/EmojiSadSlight/20_r.svg", + "staticwebassets/icons/EmojiSadSlight/24_f.svg", + "staticwebassets/icons/EmojiSadSlight/24_r.svg", + "staticwebassets/icons/EmojiSmileSlight/20_f.svg", + "staticwebassets/icons/EmojiSmileSlight/20_r.svg", + "staticwebassets/icons/EmojiSmileSlight/24_f.svg", + "staticwebassets/icons/EmojiSmileSlight/24_r.svg", + "staticwebassets/icons/EmojiSparkle/16_f.svg", + "staticwebassets/icons/EmojiSparkle/16_r.svg", + "staticwebassets/icons/EmojiSparkle/20_f.svg", + "staticwebassets/icons/EmojiSparkle/20_r.svg", + "staticwebassets/icons/EmojiSparkle/24_f.svg", + "staticwebassets/icons/EmojiSparkle/24_r.svg", + "staticwebassets/icons/EmojiSparkle/28_f.svg", + "staticwebassets/icons/EmojiSparkle/28_r.svg", + "staticwebassets/icons/EmojiSparkle/32_f.svg", + "staticwebassets/icons/EmojiSparkle/32_r.svg", + "staticwebassets/icons/EmojiSparkle/48_f.svg", + "staticwebassets/icons/EmojiSparkle/48_r.svg", + "staticwebassets/icons/EmojiSurprise/20_f.svg", + "staticwebassets/icons/EmojiSurprise/20_r.svg", + "staticwebassets/icons/EmojiSurprise/24_f.svg", + "staticwebassets/icons/EmojiSurprise/24_r.svg", + "staticwebassets/icons/Engine/20_f.svg", + "staticwebassets/icons/Engine/20_r.svg", + "staticwebassets/icons/Engine/24_f.svg", + "staticwebassets/icons/Engine/24_r.svg", + "staticwebassets/icons/EqualCircle/20_f.svg", + "staticwebassets/icons/EqualCircle/20_r.svg", + "staticwebassets/icons/EqualCircle/24_f.svg", + "staticwebassets/icons/EqualCircle/24_r.svg", + "staticwebassets/icons/EqualOff/12_f.svg", + "staticwebassets/icons/EqualOff/12_r.svg", + "staticwebassets/icons/EqualOff/16_f.svg", + "staticwebassets/icons/EqualOff/16_r.svg", + "staticwebassets/icons/EqualOff/20_f.svg", + "staticwebassets/icons/EqualOff/20_r.svg", + "staticwebassets/icons/EqualOff/24_f.svg", + "staticwebassets/icons/EqualOff/24_r.svg", + "staticwebassets/icons/Eraser/20_f.svg", + "staticwebassets/icons/Eraser/20_r.svg", + "staticwebassets/icons/Eraser/24_f.svg", + "staticwebassets/icons/Eraser/24_r.svg", + "staticwebassets/icons/EraserMedium/20_f.svg", + "staticwebassets/icons/EraserMedium/20_r.svg", + "staticwebassets/icons/EraserMedium/24_f.svg", + "staticwebassets/icons/EraserMedium/24_r.svg", + "staticwebassets/icons/EraserSegment/20_f.svg", + "staticwebassets/icons/EraserSegment/20_r.svg", + "staticwebassets/icons/EraserSegment/24_f.svg", + "staticwebassets/icons/EraserSegment/24_r.svg", + "staticwebassets/icons/EraserSmall/20_f.svg", + "staticwebassets/icons/EraserSmall/20_r.svg", + "staticwebassets/icons/EraserSmall/24_f.svg", + "staticwebassets/icons/EraserSmall/24_r.svg", + "staticwebassets/icons/EraserTool/20_f.svg", + "staticwebassets/icons/EraserTool/20_r.svg", + "staticwebassets/icons/EraserTool/24_f.svg", + "staticwebassets/icons/EraserTool/24_r.svg", + "staticwebassets/icons/ErrorCircle/12_f.svg", + "staticwebassets/icons/ErrorCircle/12_r.svg", + "staticwebassets/icons/ErrorCircle/16_f.svg", + "staticwebassets/icons/ErrorCircle/16_r.svg", + "staticwebassets/icons/ErrorCircle/20_f.svg", + "staticwebassets/icons/ErrorCircle/20_r.svg", + "staticwebassets/icons/ErrorCircle/24_f.svg", + "staticwebassets/icons/ErrorCircle/24_r.svg", + "staticwebassets/icons/ErrorCircleSettings/16_f.svg", + "staticwebassets/icons/ErrorCircleSettings/16_r.svg", + "staticwebassets/icons/ErrorCircleSettings/20_f.svg", + "staticwebassets/icons/ErrorCircleSettings/20_r.svg", + "staticwebassets/icons/ExpandUpLeft/16_f.svg", + "staticwebassets/icons/ExpandUpLeft/16_r.svg", + "staticwebassets/icons/ExpandUpLeft/20_f.svg", + "staticwebassets/icons/ExpandUpLeft/20_r.svg", + "staticwebassets/icons/ExpandUpLeft/24_f.svg", + "staticwebassets/icons/ExpandUpLeft/24_r.svg", + "staticwebassets/icons/ExpandUpLeft/28_f.svg", + "staticwebassets/icons/ExpandUpLeft/28_r.svg", + "staticwebassets/icons/ExpandUpLeft/32_f.svg", + "staticwebassets/icons/ExpandUpLeft/32_r.svg", + "staticwebassets/icons/ExpandUpLeft/48_f.svg", + "staticwebassets/icons/ExpandUpLeft/48_r.svg", + "staticwebassets/icons/ExpandUpRight/16_f.svg", + "staticwebassets/icons/ExpandUpRight/16_r.svg", + "staticwebassets/icons/ExpandUpRight/20_f.svg", + "staticwebassets/icons/ExpandUpRight/20_r.svg", + "staticwebassets/icons/ExpandUpRight/24_f.svg", + "staticwebassets/icons/ExpandUpRight/24_r.svg", + "staticwebassets/icons/ExpandUpRight/28_f.svg", + "staticwebassets/icons/ExpandUpRight/28_r.svg", + "staticwebassets/icons/ExpandUpRight/32_f.svg", + "staticwebassets/icons/ExpandUpRight/32_r.svg", + "staticwebassets/icons/ExpandUpRight/48_f.svg", + "staticwebassets/icons/ExpandUpRight/48_r.svg", + "staticwebassets/icons/ExtendedDock/20_f.svg", + "staticwebassets/icons/ExtendedDock/20_r.svg", + "staticwebassets/icons/ExtendedDock/24_f.svg", + "staticwebassets/icons/ExtendedDock/24_r.svg", + "staticwebassets/icons/Eye/12_f.svg", + "staticwebassets/icons/Eye/12_r.svg", + "staticwebassets/icons/Eye/16_f.svg", + "staticwebassets/icons/Eye/16_r.svg", + "staticwebassets/icons/Eye/20_f.svg", + "staticwebassets/icons/Eye/20_r.svg", + "staticwebassets/icons/Eye/24_f.svg", + "staticwebassets/icons/Eye/24_r.svg", + "staticwebassets/icons/Eye/28_f.svg", + "staticwebassets/icons/Eye/28_r.svg", + "staticwebassets/icons/Eye/32_f.svg", + "staticwebassets/icons/Eye/32_r.svg", + "staticwebassets/icons/Eye/48_f.svg", + "staticwebassets/icons/Eye/48_r.svg", + "staticwebassets/icons/EyeLines/20_f.svg", + "staticwebassets/icons/EyeLines/20_r.svg", + "staticwebassets/icons/EyeLines/24_f.svg", + "staticwebassets/icons/EyeLines/24_r.svg", + "staticwebassets/icons/EyeLines/28_f.svg", + "staticwebassets/icons/EyeLines/28_r.svg", + "staticwebassets/icons/EyeLines/32_f.svg", + "staticwebassets/icons/EyeLines/32_r.svg", + "staticwebassets/icons/EyeLines/48_f.svg", + "staticwebassets/icons/EyeLines/48_r.svg", + "staticwebassets/icons/EyeOff/16_f.svg", + "staticwebassets/icons/EyeOff/16_r.svg", + "staticwebassets/icons/EyeOff/20_f.svg", + "staticwebassets/icons/EyeOff/20_r.svg", + "staticwebassets/icons/EyeOff/24_f.svg", + "staticwebassets/icons/EyeOff/24_r.svg", + "staticwebassets/icons/EyeTracking/16_f.svg", + "staticwebassets/icons/EyeTracking/16_r.svg", + "staticwebassets/icons/EyeTracking/20_f.svg", + "staticwebassets/icons/EyeTracking/20_r.svg", + "staticwebassets/icons/EyeTracking/24_f.svg", + "staticwebassets/icons/EyeTracking/24_r.svg", + "staticwebassets/icons/EyeTrackingOff/16_f.svg", + "staticwebassets/icons/EyeTrackingOff/16_r.svg", + "staticwebassets/icons/EyeTrackingOff/20_f.svg", + "staticwebassets/icons/EyeTrackingOff/20_r.svg", + "staticwebassets/icons/EyeTrackingOff/24_f.svg", + "staticwebassets/icons/EyeTrackingOff/24_r.svg", + "staticwebassets/icons/Eyedropper/16_f.svg", + "staticwebassets/icons/Eyedropper/16_r.svg", + "staticwebassets/icons/Eyedropper/20_f.svg", + "staticwebassets/icons/Eyedropper/20_r.svg", + "staticwebassets/icons/Eyedropper/24_f.svg", + "staticwebassets/icons/Eyedropper/24_r.svg", + "staticwebassets/icons/EyedropperOff/20_f.svg", + "staticwebassets/icons/EyedropperOff/20_r.svg", + "staticwebassets/icons/EyedropperOff/24_f.svg", + "staticwebassets/icons/EyedropperOff/24_r.svg", + "staticwebassets/icons/FPS120/20_f.svg", + "staticwebassets/icons/FPS120/20_r.svg", + "staticwebassets/icons/FPS120/24_f.svg", + "staticwebassets/icons/FPS120/24_r.svg", + "staticwebassets/icons/FPS240/20_f.svg", + "staticwebassets/icons/FPS240/20_r.svg", + "staticwebassets/icons/FPS240/24_f.svg", + "staticwebassets/icons/FPS240/24_r.svg", + "staticwebassets/icons/FPS30/16_f.svg", + "staticwebassets/icons/FPS30/16_r.svg", + "staticwebassets/icons/FPS30/20_f.svg", + "staticwebassets/icons/FPS30/20_r.svg", + "staticwebassets/icons/FPS30/24_f.svg", + "staticwebassets/icons/FPS30/24_r.svg", + "staticwebassets/icons/FPS30/28_f.svg", + "staticwebassets/icons/FPS30/28_r.svg", + "staticwebassets/icons/FPS30/48_f.svg", + "staticwebassets/icons/FPS30/48_r.svg", + "staticwebassets/icons/FPS60/16_f.svg", + "staticwebassets/icons/FPS60/16_r.svg", + "staticwebassets/icons/FPS60/20_f.svg", + "staticwebassets/icons/FPS60/20_r.svg", + "staticwebassets/icons/FPS60/24_f.svg", + "staticwebassets/icons/FPS60/24_r.svg", + "staticwebassets/icons/FPS60/28_f.svg", + "staticwebassets/icons/FPS60/28_r.svg", + "staticwebassets/icons/FPS60/48_f.svg", + "staticwebassets/icons/FPS60/48_r.svg", + "staticwebassets/icons/FPS960/20_f.svg", + "staticwebassets/icons/FPS960/20_r.svg", + "staticwebassets/icons/FPS960/24_f.svg", + "staticwebassets/icons/FPS960/24_r.svg", + "staticwebassets/icons/FStop/16_f.svg", + "staticwebassets/icons/FStop/16_r.svg", + "staticwebassets/icons/FStop/20_f.svg", + "staticwebassets/icons/FStop/20_r.svg", + "staticwebassets/icons/FStop/24_f.svg", + "staticwebassets/icons/FStop/24_r.svg", + "staticwebassets/icons/FStop/28_f.svg", + "staticwebassets/icons/FStop/28_r.svg", + "staticwebassets/icons/FastAcceleration/20_f.svg", + "staticwebassets/icons/FastAcceleration/20_r.svg", + "staticwebassets/icons/FastAcceleration/24_f.svg", + "staticwebassets/icons/FastAcceleration/24_r.svg", + "staticwebassets/icons/FastForward/16_f.svg", + "staticwebassets/icons/FastForward/16_r.svg", + "staticwebassets/icons/FastForward/20_f.svg", + "staticwebassets/icons/FastForward/20_r.svg", + "staticwebassets/icons/FastForward/24_f.svg", + "staticwebassets/icons/FastForward/24_r.svg", + "staticwebassets/icons/FastForward/28_f.svg", + "staticwebassets/icons/FastForward/28_r.svg", + "staticwebassets/icons/Fax/16_f.svg", + "staticwebassets/icons/Fax/16_r.svg", + "staticwebassets/icons/Fax/20_f.svg", + "staticwebassets/icons/Fax/20_r.svg", + "staticwebassets/icons/Feed/16_f.svg", + "staticwebassets/icons/Feed/16_r.svg", + "staticwebassets/icons/Feed/20_f.svg", + "staticwebassets/icons/Feed/20_r.svg", + "staticwebassets/icons/Feed/24_f.svg", + "staticwebassets/icons/Feed/24_r.svg", + "staticwebassets/icons/Feed/28_f.svg", + "staticwebassets/icons/Feed/28_r.svg", + "staticwebassets/icons/Feed/32_f.svg", + "staticwebassets/icons/Feed/32_r.svg", + "staticwebassets/icons/Feed/48_f.svg", + "staticwebassets/icons/Feed/48_r.svg", + "staticwebassets/icons/Filmstrip/16_f.svg", + "staticwebassets/icons/Filmstrip/16_r.svg", + "staticwebassets/icons/Filmstrip/20_f.svg", + "staticwebassets/icons/Filmstrip/20_r.svg", + "staticwebassets/icons/Filmstrip/24_f.svg", + "staticwebassets/icons/Filmstrip/24_r.svg", + "staticwebassets/icons/Filmstrip/32_f.svg", + "staticwebassets/icons/Filmstrip/32_r.svg", + "staticwebassets/icons/FilmstripPlay/16_f.svg", + "staticwebassets/icons/FilmstripPlay/16_r.svg", + "staticwebassets/icons/FilmstripPlay/20_f.svg", + "staticwebassets/icons/FilmstripPlay/20_r.svg", + "staticwebassets/icons/FilmstripPlay/24_f.svg", + "staticwebassets/icons/FilmstripPlay/24_r.svg", + "staticwebassets/icons/FilmstripPlay/32_f.svg", + "staticwebassets/icons/FilmstripPlay/32_r.svg", + "staticwebassets/icons/FilmstripSplit/16_f.svg", + "staticwebassets/icons/FilmstripSplit/16_r.svg", + "staticwebassets/icons/FilmstripSplit/20_f.svg", + "staticwebassets/icons/FilmstripSplit/20_r.svg", + "staticwebassets/icons/FilmstripSplit/24_f.svg", + "staticwebassets/icons/FilmstripSplit/24_r.svg", + "staticwebassets/icons/FilmstripSplit/32_f.svg", + "staticwebassets/icons/FilmstripSplit/32_r.svg", + "staticwebassets/icons/Filter/12_f.svg", + "staticwebassets/icons/Filter/12_r.svg", + "staticwebassets/icons/Filter/16_f.svg", + "staticwebassets/icons/Filter/16_r.svg", + "staticwebassets/icons/Filter/20_f.svg", + "staticwebassets/icons/Filter/20_r.svg", + "staticwebassets/icons/Filter/24_f.svg", + "staticwebassets/icons/Filter/24_r.svg", + "staticwebassets/icons/Filter/28_f.svg", + "staticwebassets/icons/Filter/28_r.svg", + "staticwebassets/icons/FilterAdd/20_f.svg", + "staticwebassets/icons/FilterAdd/20_r.svg", + "staticwebassets/icons/FilterDismiss/16_f.svg", + "staticwebassets/icons/FilterDismiss/16_r.svg", + "staticwebassets/icons/FilterDismiss/20_f.svg", + "staticwebassets/icons/FilterDismiss/20_r.svg", + "staticwebassets/icons/FilterDismiss/24_f.svg", + "staticwebassets/icons/FilterDismiss/24_r.svg", + "staticwebassets/icons/FilterSync/20_f.svg", + "staticwebassets/icons/FilterSync/20_r.svg", + "staticwebassets/icons/FilterSync/24_f.svg", + "staticwebassets/icons/FilterSync/24_r.svg", + "staticwebassets/icons/Fingerprint/20_f.svg", + "staticwebassets/icons/Fingerprint/20_r.svg", + "staticwebassets/icons/Fingerprint/24_f.svg", + "staticwebassets/icons/Fingerprint/24_r.svg", + "staticwebassets/icons/Fingerprint/48_f.svg", + "staticwebassets/icons/Fingerprint/48_r.svg", + "staticwebassets/icons/Fire/16_f.svg", + "staticwebassets/icons/Fire/16_r.svg", + "staticwebassets/icons/Fire/20_f.svg", + "staticwebassets/icons/Fire/20_r.svg", + "staticwebassets/icons/Fire/24_f.svg", + "staticwebassets/icons/Fire/24_r.svg", + "staticwebassets/icons/Fireplace/20_f.svg", + "staticwebassets/icons/Fireplace/20_r.svg", + "staticwebassets/icons/Fireplace/24_f.svg", + "staticwebassets/icons/Fireplace/24_r.svg", + "staticwebassets/icons/Fireplace/32_f.svg", + "staticwebassets/icons/Fireplace/32_r.svg", + "staticwebassets/icons/Fireplace/48_f.svg", + "staticwebassets/icons/Fireplace/48_r.svg", + "staticwebassets/icons/FixedWidth/20_f.svg", + "staticwebassets/icons/FixedWidth/20_r.svg", + "staticwebassets/icons/FixedWidth/24_f.svg", + "staticwebassets/icons/FixedWidth/24_r.svg", + "staticwebassets/icons/Flag/16_f.svg", + "staticwebassets/icons/Flag/16_r.svg", + "staticwebassets/icons/Flag/20_f.svg", + "staticwebassets/icons/Flag/20_r.svg", + "staticwebassets/icons/Flag/24_f.svg", + "staticwebassets/icons/Flag/24_r.svg", + "staticwebassets/icons/Flag/28_f.svg", + "staticwebassets/icons/Flag/28_r.svg", + "staticwebassets/icons/Flag/32_f.svg", + "staticwebassets/icons/Flag/32_r.svg", + "staticwebassets/icons/Flag/48_f.svg", + "staticwebassets/icons/Flag/48_r.svg", + "staticwebassets/icons/FlagCheckered/20_f.svg", + "staticwebassets/icons/FlagCheckered/20_r.svg", + "staticwebassets/icons/FlagClock/16_f.svg", + "staticwebassets/icons/FlagClock/16_r.svg", + "staticwebassets/icons/FlagClock/20_f.svg", + "staticwebassets/icons/FlagClock/20_r.svg", + "staticwebassets/icons/FlagClock/24_f.svg", + "staticwebassets/icons/FlagClock/24_r.svg", + "staticwebassets/icons/FlagClock/28_f.svg", + "staticwebassets/icons/FlagClock/28_r.svg", + "staticwebassets/icons/FlagClock/32_f.svg", + "staticwebassets/icons/FlagClock/32_r.svg", + "staticwebassets/icons/FlagClock/48_f.svg", + "staticwebassets/icons/FlagClock/48_r.svg", + "staticwebassets/icons/FlagOff/16_f.svg", + "staticwebassets/icons/FlagOff/16_r.svg", + "staticwebassets/icons/FlagOff/20_f.svg", + "staticwebassets/icons/FlagOff/20_r.svg", + "staticwebassets/icons/FlagOff/24_f.svg", + "staticwebassets/icons/FlagOff/24_r.svg", + "staticwebassets/icons/FlagOff/28_f.svg", + "staticwebassets/icons/FlagOff/28_r.svg", + "staticwebassets/icons/FlagOff/48_f.svg", + "staticwebassets/icons/FlagOff/48_r.svg", + "staticwebassets/icons/FlagPride/16_f.svg", + "staticwebassets/icons/FlagPride/20_f.svg", + "staticwebassets/icons/FlagPride/24_f.svg", + "staticwebassets/icons/FlagPride/28_f.svg", + "staticwebassets/icons/FlagPride/48_f.svg", + "staticwebassets/icons/Flash/16_f.svg", + "staticwebassets/icons/Flash/16_r.svg", + "staticwebassets/icons/Flash/20_f.svg", + "staticwebassets/icons/Flash/20_r.svg", + "staticwebassets/icons/Flash/24_f.svg", + "staticwebassets/icons/Flash/24_r.svg", + "staticwebassets/icons/Flash/28_f.svg", + "staticwebassets/icons/Flash/28_r.svg", + "staticwebassets/icons/FlashAdd/20_f.svg", + "staticwebassets/icons/FlashAdd/20_r.svg", + "staticwebassets/icons/FlashAuto/20_f.svg", + "staticwebassets/icons/FlashAuto/20_r.svg", + "staticwebassets/icons/FlashAuto/24_f.svg", + "staticwebassets/icons/FlashAuto/24_r.svg", + "staticwebassets/icons/FlashCheckmark/16_f.svg", + "staticwebassets/icons/FlashCheckmark/16_r.svg", + "staticwebassets/icons/FlashCheckmark/20_f.svg", + "staticwebassets/icons/FlashCheckmark/20_r.svg", + "staticwebassets/icons/FlashCheckmark/24_f.svg", + "staticwebassets/icons/FlashCheckmark/24_r.svg", + "staticwebassets/icons/FlashCheckmark/28_f.svg", + "staticwebassets/icons/FlashCheckmark/28_r.svg", + "staticwebassets/icons/FlashFlow/16_f.svg", + "staticwebassets/icons/FlashFlow/16_r.svg", + "staticwebassets/icons/FlashFlow/20_f.svg", + "staticwebassets/icons/FlashFlow/20_r.svg", + "staticwebassets/icons/FlashFlow/24_f.svg", + "staticwebassets/icons/FlashFlow/24_r.svg", + "staticwebassets/icons/FlashOff/20_f.svg", + "staticwebassets/icons/FlashOff/20_r.svg", + "staticwebassets/icons/FlashOff/24_f.svg", + "staticwebassets/icons/FlashOff/24_r.svg", + "staticwebassets/icons/FlashPlay/20_f.svg", + "staticwebassets/icons/FlashPlay/20_r.svg", + "staticwebassets/icons/FlashSettings/20_f.svg", + "staticwebassets/icons/FlashSettings/20_r.svg", + "staticwebassets/icons/FlashSettings/24_f.svg", + "staticwebassets/icons/FlashSettings/24_r.svg", + "staticwebassets/icons/Flashlight/16_f.svg", + "staticwebassets/icons/Flashlight/16_r.svg", + "staticwebassets/icons/Flashlight/20_f.svg", + "staticwebassets/icons/Flashlight/20_r.svg", + "staticwebassets/icons/Flashlight/24_f.svg", + "staticwebassets/icons/Flashlight/24_r.svg", + "staticwebassets/icons/FlashlightOff/20_f.svg", + "staticwebassets/icons/FlashlightOff/20_r.svg", + "staticwebassets/icons/FlashlightOff/24_f.svg", + "staticwebassets/icons/FlashlightOff/24_r.svg", + "staticwebassets/icons/FlipHorizontal/16_f.svg", + "staticwebassets/icons/FlipHorizontal/16_r.svg", + "staticwebassets/icons/FlipHorizontal/20_f.svg", + "staticwebassets/icons/FlipHorizontal/20_r.svg", + "staticwebassets/icons/FlipHorizontal/24_f.svg", + "staticwebassets/icons/FlipHorizontal/24_r.svg", + "staticwebassets/icons/FlipHorizontal/28_f.svg", + "staticwebassets/icons/FlipHorizontal/28_r.svg", + "staticwebassets/icons/FlipHorizontal/32_f.svg", + "staticwebassets/icons/FlipHorizontal/32_r.svg", + "staticwebassets/icons/FlipHorizontal/48_f.svg", + "staticwebassets/icons/FlipHorizontal/48_r.svg", + "staticwebassets/icons/FlipVertical/16_f.svg", + "staticwebassets/icons/FlipVertical/16_r.svg", + "staticwebassets/icons/FlipVertical/20_f.svg", + "staticwebassets/icons/FlipVertical/20_r.svg", + "staticwebassets/icons/FlipVertical/24_f.svg", + "staticwebassets/icons/FlipVertical/24_r.svg", + "staticwebassets/icons/FlipVertical/28_f.svg", + "staticwebassets/icons/FlipVertical/28_r.svg", + "staticwebassets/icons/FlipVertical/32_f.svg", + "staticwebassets/icons/FlipVertical/32_r.svg", + "staticwebassets/icons/FlipVertical/48_f.svg", + "staticwebassets/icons/FlipVertical/48_r.svg", + "staticwebassets/icons/Flow/16_f.svg", + "staticwebassets/icons/Flow/16_r.svg", + "staticwebassets/icons/Flow/20_f.svg", + "staticwebassets/icons/Flow/20_r.svg", + "staticwebassets/icons/Flowchart/20_f.svg", + "staticwebassets/icons/Flowchart/20_r.svg", + "staticwebassets/icons/Flowchart/24_f.svg", + "staticwebassets/icons/Flowchart/24_r.svg", + "staticwebassets/icons/FlowchartCircle/20_f.svg", + "staticwebassets/icons/FlowchartCircle/20_r.svg", + "staticwebassets/icons/FlowchartCircle/24_f.svg", + "staticwebassets/icons/FlowchartCircle/24_r.svg", + "staticwebassets/icons/Fluent/20_f.svg", + "staticwebassets/icons/Fluent/20_r.svg", + "staticwebassets/icons/Fluent/24_f.svg", + "staticwebassets/icons/Fluent/24_r.svg", + "staticwebassets/icons/Fluent/32_f.svg", + "staticwebassets/icons/Fluent/32_r.svg", + "staticwebassets/icons/Fluent/48_f.svg", + "staticwebassets/icons/Fluent/48_r.svg", + "staticwebassets/icons/Fluid/16_f.svg", + "staticwebassets/icons/Fluid/16_r.svg", + "staticwebassets/icons/Fluid/20_f.svg", + "staticwebassets/icons/Fluid/20_r.svg", + "staticwebassets/icons/Fluid/24_f.svg", + "staticwebassets/icons/Fluid/24_r.svg", + "staticwebassets/icons/Folder/16_f.svg", + "staticwebassets/icons/Folder/16_r.svg", + "staticwebassets/icons/Folder/20_f.svg", + "staticwebassets/icons/Folder/20_r.svg", + "staticwebassets/icons/Folder/24_f.svg", + "staticwebassets/icons/Folder/24_r.svg", + "staticwebassets/icons/Folder/28_f.svg", + "staticwebassets/icons/Folder/28_r.svg", + "staticwebassets/icons/Folder/32_f.svg", + "staticwebassets/icons/Folder/32_r.svg", + "staticwebassets/icons/Folder/48_f.svg", + "staticwebassets/icons/Folder/48_r.svg", + "staticwebassets/icons/FolderAdd/16_f.svg", + "staticwebassets/icons/FolderAdd/16_r.svg", + "staticwebassets/icons/FolderAdd/20_f.svg", + "staticwebassets/icons/FolderAdd/20_r.svg", + "staticwebassets/icons/FolderAdd/24_f.svg", + "staticwebassets/icons/FolderAdd/24_r.svg", + "staticwebassets/icons/FolderAdd/28_f.svg", + "staticwebassets/icons/FolderAdd/28_r.svg", + "staticwebassets/icons/FolderAdd/48_f.svg", + "staticwebassets/icons/FolderAdd/48_r.svg", + "staticwebassets/icons/FolderArrowLeft/16_f.svg", + "staticwebassets/icons/FolderArrowLeft/16_r.svg", + "staticwebassets/icons/FolderArrowLeft/20_f.svg", + "staticwebassets/icons/FolderArrowLeft/20_r.svg", + "staticwebassets/icons/FolderArrowLeft/24_f.svg", + "staticwebassets/icons/FolderArrowLeft/24_r.svg", + "staticwebassets/icons/FolderArrowLeft/28_f.svg", + "staticwebassets/icons/FolderArrowLeft/28_r.svg", + "staticwebassets/icons/FolderArrowLeft/32_f.svg", + "staticwebassets/icons/FolderArrowLeft/32_r.svg", + "staticwebassets/icons/FolderArrowRight/16_f.svg", + "staticwebassets/icons/FolderArrowRight/16_r.svg", + "staticwebassets/icons/FolderArrowRight/20_f.svg", + "staticwebassets/icons/FolderArrowRight/20_r.svg", + "staticwebassets/icons/FolderArrowRight/24_f.svg", + "staticwebassets/icons/FolderArrowRight/24_r.svg", + "staticwebassets/icons/FolderArrowRight/28_f.svg", + "staticwebassets/icons/FolderArrowRight/28_r.svg", + "staticwebassets/icons/FolderArrowRight/48_f.svg", + "staticwebassets/icons/FolderArrowRight/48_r.svg", + "staticwebassets/icons/FolderArrowUp/16_f.svg", + "staticwebassets/icons/FolderArrowUp/16_r.svg", + "staticwebassets/icons/FolderArrowUp/20_f.svg", + "staticwebassets/icons/FolderArrowUp/20_r.svg", + "staticwebassets/icons/FolderArrowUp/24_f.svg", + "staticwebassets/icons/FolderArrowUp/24_r.svg", + "staticwebassets/icons/FolderArrowUp/28_f.svg", + "staticwebassets/icons/FolderArrowUp/28_r.svg", + "staticwebassets/icons/FolderArrowUp/48_f.svg", + "staticwebassets/icons/FolderArrowUp/48_r.svg", + "staticwebassets/icons/FolderBriefcase/20_f.svg", + "staticwebassets/icons/FolderBriefcase/20_r.svg", + "staticwebassets/icons/FolderGlobe/16_f.svg", + "staticwebassets/icons/FolderGlobe/16_r.svg", + "staticwebassets/icons/FolderGlobe/20_f.svg", + "staticwebassets/icons/FolderGlobe/20_r.svg", + "staticwebassets/icons/FolderLink/20_f.svg", + "staticwebassets/icons/FolderLink/20_r.svg", + "staticwebassets/icons/FolderLink/24_f.svg", + "staticwebassets/icons/FolderLink/24_r.svg", + "staticwebassets/icons/FolderLink/28_f.svg", + "staticwebassets/icons/FolderLink/28_r.svg", + "staticwebassets/icons/FolderLink/48_f.svg", + "staticwebassets/icons/FolderLink/48_r.svg", + "staticwebassets/icons/FolderList/16_f.svg", + "staticwebassets/icons/FolderList/16_r.svg", + "staticwebassets/icons/FolderList/20_f.svg", + "staticwebassets/icons/FolderList/20_r.svg", + "staticwebassets/icons/FolderMail/16_f.svg", + "staticwebassets/icons/FolderMail/16_r.svg", + "staticwebassets/icons/FolderMail/20_f.svg", + "staticwebassets/icons/FolderMail/20_r.svg", + "staticwebassets/icons/FolderMail/24_f.svg", + "staticwebassets/icons/FolderMail/24_r.svg", + "staticwebassets/icons/FolderMail/28_f.svg", + "staticwebassets/icons/FolderMail/28_r.svg", + "staticwebassets/icons/FolderMultiple/16_f.svg", + "staticwebassets/icons/FolderMultiple/16_r.svg", + "staticwebassets/icons/FolderOpen/16_f.svg", + "staticwebassets/icons/FolderOpen/16_r.svg", + "staticwebassets/icons/FolderOpen/20_f.svg", + "staticwebassets/icons/FolderOpen/20_r.svg", + "staticwebassets/icons/FolderOpen/24_f.svg", + "staticwebassets/icons/FolderOpen/24_r.svg", + "staticwebassets/icons/FolderOpenVertical/16_f.svg", + "staticwebassets/icons/FolderOpenVertical/16_r.svg", + "staticwebassets/icons/FolderOpenVertical/20_f.svg", + "staticwebassets/icons/FolderOpenVertical/20_r.svg", + "staticwebassets/icons/FolderPeople/20_f.svg", + "staticwebassets/icons/FolderPeople/20_r.svg", + "staticwebassets/icons/FolderPeople/24_f.svg", + "staticwebassets/icons/FolderPeople/24_r.svg", + "staticwebassets/icons/FolderPerson/16_f.svg", + "staticwebassets/icons/FolderPerson/16_r.svg", + "staticwebassets/icons/FolderPerson/20_f.svg", + "staticwebassets/icons/FolderPerson/20_r.svg", + "staticwebassets/icons/FolderProhibited/16_f.svg", + "staticwebassets/icons/FolderProhibited/16_r.svg", + "staticwebassets/icons/FolderProhibited/20_f.svg", + "staticwebassets/icons/FolderProhibited/20_r.svg", + "staticwebassets/icons/FolderProhibited/24_f.svg", + "staticwebassets/icons/FolderProhibited/24_r.svg", + "staticwebassets/icons/FolderProhibited/28_f.svg", + "staticwebassets/icons/FolderProhibited/28_r.svg", + "staticwebassets/icons/FolderProhibited/48_f.svg", + "staticwebassets/icons/FolderProhibited/48_r.svg", + "staticwebassets/icons/FolderSwap/16_f.svg", + "staticwebassets/icons/FolderSwap/16_r.svg", + "staticwebassets/icons/FolderSwap/20_f.svg", + "staticwebassets/icons/FolderSwap/20_r.svg", + "staticwebassets/icons/FolderSwap/24_f.svg", + "staticwebassets/icons/FolderSwap/24_r.svg", + "staticwebassets/icons/FolderSync/16_f.svg", + "staticwebassets/icons/FolderSync/16_r.svg", + "staticwebassets/icons/FolderSync/20_f.svg", + "staticwebassets/icons/FolderSync/20_r.svg", + "staticwebassets/icons/FolderSync/24_f.svg", + "staticwebassets/icons/FolderSync/24_r.svg", + "staticwebassets/icons/FolderZip/16_f.svg", + "staticwebassets/icons/FolderZip/16_r.svg", + "staticwebassets/icons/FolderZip/20_f.svg", + "staticwebassets/icons/FolderZip/20_r.svg", + "staticwebassets/icons/FolderZip/24_f.svg", + "staticwebassets/icons/FolderZip/24_r.svg", + "staticwebassets/icons/FontDecrease/20_f.svg", + "staticwebassets/icons/FontDecrease/20_r.svg", + "staticwebassets/icons/FontDecrease/24_f.svg", + "staticwebassets/icons/FontDecrease/24_r.svg", + "staticwebassets/icons/FontIncrease/20_f.svg", + "staticwebassets/icons/FontIncrease/20_r.svg", + "staticwebassets/icons/FontIncrease/24_f.svg", + "staticwebassets/icons/FontIncrease/24_r.svg", + "staticwebassets/icons/FontSpaceTrackingIn/16_f.svg", + "staticwebassets/icons/FontSpaceTrackingIn/16_r.svg", + "staticwebassets/icons/FontSpaceTrackingIn/20_f.svg", + "staticwebassets/icons/FontSpaceTrackingIn/20_r.svg", + "staticwebassets/icons/FontSpaceTrackingIn/24_f.svg", + "staticwebassets/icons/FontSpaceTrackingIn/24_r.svg", + "staticwebassets/icons/FontSpaceTrackingIn/28_f.svg", + "staticwebassets/icons/FontSpaceTrackingIn/28_r.svg", + "staticwebassets/icons/FontSpaceTrackingOut/16_f.svg", + "staticwebassets/icons/FontSpaceTrackingOut/16_r.svg", + "staticwebassets/icons/FontSpaceTrackingOut/20_f.svg", + "staticwebassets/icons/FontSpaceTrackingOut/20_r.svg", + "staticwebassets/icons/FontSpaceTrackingOut/24_f.svg", + "staticwebassets/icons/FontSpaceTrackingOut/24_r.svg", + "staticwebassets/icons/FontSpaceTrackingOut/28_f.svg", + "staticwebassets/icons/FontSpaceTrackingOut/28_r.svg", + "staticwebassets/icons/Food/16_f.svg", + "staticwebassets/icons/Food/16_r.svg", + "staticwebassets/icons/Food/20_f.svg", + "staticwebassets/icons/Food/20_r.svg", + "staticwebassets/icons/Food/24_f.svg", + "staticwebassets/icons/Food/24_r.svg", + "staticwebassets/icons/FoodApple/20_f.svg", + "staticwebassets/icons/FoodApple/20_r.svg", + "staticwebassets/icons/FoodApple/24_f.svg", + "staticwebassets/icons/FoodApple/24_r.svg", + "staticwebassets/icons/FoodCake/12_f.svg", + "staticwebassets/icons/FoodCake/12_r.svg", + "staticwebassets/icons/FoodCake/16_f.svg", + "staticwebassets/icons/FoodCake/16_r.svg", + "staticwebassets/icons/FoodCake/20_f.svg", + "staticwebassets/icons/FoodCake/20_r.svg", + "staticwebassets/icons/FoodCake/24_f.svg", + "staticwebassets/icons/FoodCake/24_r.svg", + "staticwebassets/icons/FoodCarrot/20_f.svg", + "staticwebassets/icons/FoodCarrot/20_r.svg", + "staticwebassets/icons/FoodCarrot/24_f.svg", + "staticwebassets/icons/FoodCarrot/24_r.svg", + "staticwebassets/icons/FoodChickenLeg/16_f.svg", + "staticwebassets/icons/FoodChickenLeg/16_r.svg", + "staticwebassets/icons/FoodChickenLeg/20_f.svg", + "staticwebassets/icons/FoodChickenLeg/20_r.svg", + "staticwebassets/icons/FoodChickenLeg/24_f.svg", + "staticwebassets/icons/FoodChickenLeg/24_r.svg", + "staticwebassets/icons/FoodChickenLeg/32_f.svg", + "staticwebassets/icons/FoodChickenLeg/32_r.svg", + "staticwebassets/icons/FoodEgg/16_f.svg", + "staticwebassets/icons/FoodEgg/16_r.svg", + "staticwebassets/icons/FoodEgg/20_f.svg", + "staticwebassets/icons/FoodEgg/20_r.svg", + "staticwebassets/icons/FoodEgg/24_f.svg", + "staticwebassets/icons/FoodEgg/24_r.svg", + "staticwebassets/icons/FoodFish/20_f.svg", + "staticwebassets/icons/FoodFish/20_r.svg", + "staticwebassets/icons/FoodFish/24_f.svg", + "staticwebassets/icons/FoodFish/24_r.svg", + "staticwebassets/icons/FoodGrains/20_f.svg", + "staticwebassets/icons/FoodGrains/20_r.svg", + "staticwebassets/icons/FoodGrains/24_f.svg", + "staticwebassets/icons/FoodGrains/24_r.svg", + "staticwebassets/icons/FoodPizza/20_f.svg", + "staticwebassets/icons/FoodPizza/20_r.svg", + "staticwebassets/icons/FoodPizza/24_f.svg", + "staticwebassets/icons/FoodPizza/24_r.svg", + "staticwebassets/icons/FoodToast/16_f.svg", + "staticwebassets/icons/FoodToast/16_r.svg", + "staticwebassets/icons/FoodToast/20_f.svg", + "staticwebassets/icons/FoodToast/20_r.svg", + "staticwebassets/icons/FoodToast/24_f.svg", + "staticwebassets/icons/FoodToast/24_r.svg", + "staticwebassets/icons/Form/20_f.svg", + "staticwebassets/icons/Form/20_r.svg", + "staticwebassets/icons/Form/24_f.svg", + "staticwebassets/icons/Form/24_r.svg", + "staticwebassets/icons/Form/28_f.svg", + "staticwebassets/icons/Form/28_r.svg", + "staticwebassets/icons/Form/48_f.svg", + "staticwebassets/icons/Form/48_r.svg", + "staticwebassets/icons/FormMultiple/20_f.svg", + "staticwebassets/icons/FormMultiple/20_r.svg", + "staticwebassets/icons/FormMultiple/24_f.svg", + "staticwebassets/icons/FormMultiple/24_r.svg", + "staticwebassets/icons/FormMultiple/28_f.svg", + "staticwebassets/icons/FormMultiple/28_r.svg", + "staticwebassets/icons/FormMultiple/48_f.svg", + "staticwebassets/icons/FormMultiple/48_r.svg", + "staticwebassets/icons/FormNew/20_f.svg", + "staticwebassets/icons/FormNew/20_r.svg", + "staticwebassets/icons/FormNew/24_f.svg", + "staticwebassets/icons/FormNew/24_r.svg", + "staticwebassets/icons/FormNew/28_f.svg", + "staticwebassets/icons/FormNew/28_r.svg", + "staticwebassets/icons/FormNew/48_f.svg", + "staticwebassets/icons/FormNew/48_r.svg", + "staticwebassets/icons/Frame/16_f.svg", + "staticwebassets/icons/Frame/16_r.svg", + "staticwebassets/icons/Frame/20_f.svg", + "staticwebassets/icons/Frame/20_r.svg", + "staticwebassets/icons/Frame/24_f.svg", + "staticwebassets/icons/Frame/24_r.svg", + "staticwebassets/icons/FullScreenMaximize/16_f.svg", + "staticwebassets/icons/FullScreenMaximize/16_r.svg", + "staticwebassets/icons/FullScreenMaximize/20_f.svg", + "staticwebassets/icons/FullScreenMaximize/20_r.svg", + "staticwebassets/icons/FullScreenMaximize/24_f.svg", + "staticwebassets/icons/FullScreenMaximize/24_r.svg", + "staticwebassets/icons/FullScreenMinimize/16_f.svg", + "staticwebassets/icons/FullScreenMinimize/16_r.svg", + "staticwebassets/icons/FullScreenMinimize/20_f.svg", + "staticwebassets/icons/FullScreenMinimize/20_r.svg", + "staticwebassets/icons/FullScreenMinimize/24_f.svg", + "staticwebassets/icons/FullScreenMinimize/24_r.svg", + "staticwebassets/icons/GIF/16_f.svg", + "staticwebassets/icons/GIF/16_r.svg", + "staticwebassets/icons/GIF/20_f.svg", + "staticwebassets/icons/GIF/20_r.svg", + "staticwebassets/icons/GIF/24_f.svg", + "staticwebassets/icons/GIF/24_r.svg", + "staticwebassets/icons/Games/16_f.svg", + "staticwebassets/icons/Games/16_r.svg", + "staticwebassets/icons/Games/20_f.svg", + "staticwebassets/icons/Games/20_r.svg", + "staticwebassets/icons/Games/24_f.svg", + "staticwebassets/icons/Games/24_r.svg", + "staticwebassets/icons/Games/28_f.svg", + "staticwebassets/icons/Games/28_r.svg", + "staticwebassets/icons/Games/32_f.svg", + "staticwebassets/icons/Games/32_r.svg", + "staticwebassets/icons/Games/48_f.svg", + "staticwebassets/icons/Games/48_r.svg", + "staticwebassets/icons/GanttChart/16_f.svg", + "staticwebassets/icons/GanttChart/16_r.svg", + "staticwebassets/icons/GanttChart/20_f.svg", + "staticwebassets/icons/GanttChart/20_r.svg", + "staticwebassets/icons/GanttChart/24_f.svg", + "staticwebassets/icons/GanttChart/24_r.svg", + "staticwebassets/icons/Gas/20_f.svg", + "staticwebassets/icons/Gas/20_r.svg", + "staticwebassets/icons/Gas/24_f.svg", + "staticwebassets/icons/Gas/24_r.svg", + "staticwebassets/icons/GasPump/20_f.svg", + "staticwebassets/icons/GasPump/20_r.svg", + "staticwebassets/icons/GasPump/24_f.svg", + "staticwebassets/icons/GasPump/24_r.svg", + "staticwebassets/icons/Gather/20_f.svg", + "staticwebassets/icons/Gather/20_r.svg", + "staticwebassets/icons/Gauge/20_f.svg", + "staticwebassets/icons/Gauge/20_r.svg", + "staticwebassets/icons/Gauge/24_f.svg", + "staticwebassets/icons/Gauge/24_r.svg", + "staticwebassets/icons/Gauge/32_f.svg", + "staticwebassets/icons/Gauge/32_r.svg", + "staticwebassets/icons/GaugeAdd/20_f.svg", + "staticwebassets/icons/GaugeAdd/20_r.svg", + "staticwebassets/icons/Gavel/16_f.svg", + "staticwebassets/icons/Gavel/16_r.svg", + "staticwebassets/icons/Gavel/20_f.svg", + "staticwebassets/icons/Gavel/20_r.svg", + "staticwebassets/icons/Gavel/24_f.svg", + "staticwebassets/icons/Gavel/24_r.svg", + "staticwebassets/icons/Gavel/32_f.svg", + "staticwebassets/icons/Gavel/32_r.svg", + "staticwebassets/icons/GavelProhibited/16_f.svg", + "staticwebassets/icons/GavelProhibited/16_r.svg", + "staticwebassets/icons/GavelProhibited/20_f.svg", + "staticwebassets/icons/GavelProhibited/20_r.svg", + "staticwebassets/icons/Gesture/20_f.svg", + "staticwebassets/icons/Gesture/20_r.svg", + "staticwebassets/icons/Gesture/24_f.svg", + "staticwebassets/icons/Gesture/24_r.svg", + "staticwebassets/icons/Gift/16_f.svg", + "staticwebassets/icons/Gift/16_r.svg", + "staticwebassets/icons/Gift/20_f.svg", + "staticwebassets/icons/Gift/20_r.svg", + "staticwebassets/icons/Gift/24_f.svg", + "staticwebassets/icons/Gift/24_r.svg", + "staticwebassets/icons/GiftCard/16_f.svg", + "staticwebassets/icons/GiftCard/16_r.svg", + "staticwebassets/icons/GiftCard/20_f.svg", + "staticwebassets/icons/GiftCard/20_r.svg", + "staticwebassets/icons/GiftCard/24_f.svg", + "staticwebassets/icons/GiftCard/24_r.svg", + "staticwebassets/icons/GiftCardAdd/20_f.svg", + "staticwebassets/icons/GiftCardAdd/20_r.svg", + "staticwebassets/icons/GiftCardAdd/24_f.svg", + "staticwebassets/icons/GiftCardAdd/24_r.svg", + "staticwebassets/icons/GiftCardArrowRight/20_f.svg", + "staticwebassets/icons/GiftCardArrowRight/20_r.svg", + "staticwebassets/icons/GiftCardArrowRight/24_f.svg", + "staticwebassets/icons/GiftCardArrowRight/24_r.svg", + "staticwebassets/icons/GiftCardMoney/20_f.svg", + "staticwebassets/icons/GiftCardMoney/20_r.svg", + "staticwebassets/icons/GiftCardMoney/24_f.svg", + "staticwebassets/icons/GiftCardMoney/24_r.svg", + "staticwebassets/icons/GiftCardMultiple/20_f.svg", + "staticwebassets/icons/GiftCardMultiple/20_r.svg", + "staticwebassets/icons/GiftCardMultiple/24_f.svg", + "staticwebassets/icons/GiftCardMultiple/24_r.svg", + "staticwebassets/icons/GiftOpen/16_f.svg", + "staticwebassets/icons/GiftOpen/16_r.svg", + "staticwebassets/icons/GiftOpen/20_f.svg", + "staticwebassets/icons/GiftOpen/20_r.svg", + "staticwebassets/icons/GiftOpen/24_f.svg", + "staticwebassets/icons/GiftOpen/24_r.svg", + "staticwebassets/icons/Glance/12_f.svg", + "staticwebassets/icons/Glance/12_r.svg", + "staticwebassets/icons/Glance/20_f.svg", + "staticwebassets/icons/Glance/20_r.svg", + "staticwebassets/icons/Glance/24_f.svg", + "staticwebassets/icons/Glance/24_r.svg", + "staticwebassets/icons/GlanceDefault/12_f.svg", + "staticwebassets/icons/GlanceDefault/12_r.svg", + "staticwebassets/icons/GlanceHorizontal/12_f.svg", + "staticwebassets/icons/GlanceHorizontal/12_r.svg", + "staticwebassets/icons/GlanceHorizontal/16_f.svg", + "staticwebassets/icons/GlanceHorizontal/16_r.svg", + "staticwebassets/icons/GlanceHorizontal/20_f.svg", + "staticwebassets/icons/GlanceHorizontal/20_r.svg", + "staticwebassets/icons/GlanceHorizontal/24_f.svg", + "staticwebassets/icons/GlanceHorizontal/24_r.svg", + "staticwebassets/icons/GlanceHorizontalSparkles/16_f.svg", + "staticwebassets/icons/GlanceHorizontalSparkles/16_r.svg", + "staticwebassets/icons/GlanceHorizontalSparkles/24_f.svg", + "staticwebassets/icons/GlanceHorizontalSparkles/24_r.svg", + "staticwebassets/icons/Glasses/16_f.svg", + "staticwebassets/icons/Glasses/16_r.svg", + "staticwebassets/icons/Glasses/20_f.svg", + "staticwebassets/icons/Glasses/20_r.svg", + "staticwebassets/icons/Glasses/24_f.svg", + "staticwebassets/icons/Glasses/24_r.svg", + "staticwebassets/icons/Glasses/28_f.svg", + "staticwebassets/icons/Glasses/28_r.svg", + "staticwebassets/icons/Glasses/32_f.svg", + "staticwebassets/icons/Glasses/32_r.svg", + "staticwebassets/icons/Glasses/48_f.svg", + "staticwebassets/icons/Glasses/48_r.svg", + "staticwebassets/icons/GlassesOff/16_f.svg", + "staticwebassets/icons/GlassesOff/16_r.svg", + "staticwebassets/icons/GlassesOff/20_f.svg", + "staticwebassets/icons/GlassesOff/20_r.svg", + "staticwebassets/icons/GlassesOff/24_f.svg", + "staticwebassets/icons/GlassesOff/24_r.svg", + "staticwebassets/icons/GlassesOff/28_f.svg", + "staticwebassets/icons/GlassesOff/28_r.svg", + "staticwebassets/icons/GlassesOff/32_f.svg", + "staticwebassets/icons/GlassesOff/32_r.svg", + "staticwebassets/icons/GlassesOff/48_f.svg", + "staticwebassets/icons/GlassesOff/48_r.svg", + "staticwebassets/icons/Globe/12_f.svg", + "staticwebassets/icons/Globe/12_r.svg", + "staticwebassets/icons/Globe/16_f.svg", + "staticwebassets/icons/Globe/16_r.svg", + "staticwebassets/icons/Globe/20_f.svg", + "staticwebassets/icons/Globe/20_r.svg", + "staticwebassets/icons/Globe/24_f.svg", + "staticwebassets/icons/Globe/24_r.svg", + "staticwebassets/icons/Globe/32_f.svg", + "staticwebassets/icons/Globe/32_r.svg", + "staticwebassets/icons/GlobeAdd/20_f.svg", + "staticwebassets/icons/GlobeAdd/20_r.svg", + "staticwebassets/icons/GlobeAdd/24_f.svg", + "staticwebassets/icons/GlobeAdd/24_r.svg", + "staticwebassets/icons/GlobeClock/16_f.svg", + "staticwebassets/icons/GlobeClock/16_r.svg", + "staticwebassets/icons/GlobeClock/20_f.svg", + "staticwebassets/icons/GlobeClock/20_r.svg", + "staticwebassets/icons/GlobeClock/24_f.svg", + "staticwebassets/icons/GlobeClock/24_r.svg", + "staticwebassets/icons/GlobeDesktop/20_f.svg", + "staticwebassets/icons/GlobeDesktop/20_r.svg", + "staticwebassets/icons/GlobeDesktop/24_f.svg", + "staticwebassets/icons/GlobeDesktop/24_r.svg", + "staticwebassets/icons/GlobeLocation/20_f.svg", + "staticwebassets/icons/GlobeLocation/20_r.svg", + "staticwebassets/icons/GlobeLocation/24_f.svg", + "staticwebassets/icons/GlobeLocation/24_r.svg", + "staticwebassets/icons/GlobePerson/20_f.svg", + "staticwebassets/icons/GlobePerson/20_r.svg", + "staticwebassets/icons/GlobePerson/24_f.svg", + "staticwebassets/icons/GlobePerson/24_r.svg", + "staticwebassets/icons/GlobeProhibited/20_f.svg", + "staticwebassets/icons/GlobeProhibited/20_r.svg", + "staticwebassets/icons/GlobeSearch/20_f.svg", + "staticwebassets/icons/GlobeSearch/20_r.svg", + "staticwebassets/icons/GlobeSearch/24_f.svg", + "staticwebassets/icons/GlobeSearch/24_r.svg", + "staticwebassets/icons/GlobeShield/20_f.svg", + "staticwebassets/icons/GlobeShield/20_r.svg", + "staticwebassets/icons/GlobeShield/24_f.svg", + "staticwebassets/icons/GlobeShield/24_r.svg", + "staticwebassets/icons/GlobeStar/16_f.svg", + "staticwebassets/icons/GlobeStar/16_r.svg", + "staticwebassets/icons/GlobeStar/20_f.svg", + "staticwebassets/icons/GlobeStar/20_r.svg", + "staticwebassets/icons/GlobeSurface/20_f.svg", + "staticwebassets/icons/GlobeSurface/20_r.svg", + "staticwebassets/icons/GlobeSurface/24_f.svg", + "staticwebassets/icons/GlobeSurface/24_r.svg", + "staticwebassets/icons/GlobeSurface/32_f.svg", + "staticwebassets/icons/GlobeSurface/32_r.svg", + "staticwebassets/icons/GlobeVideo/20_f.svg", + "staticwebassets/icons/GlobeVideo/20_r.svg", + "staticwebassets/icons/GlobeVideo/24_f.svg", + "staticwebassets/icons/GlobeVideo/24_r.svg", + "staticwebassets/icons/GlobeVideo/28_f.svg", + "staticwebassets/icons/GlobeVideo/28_r.svg", + "staticwebassets/icons/GlobeVideo/32_f.svg", + "staticwebassets/icons/GlobeVideo/32_r.svg", + "staticwebassets/icons/GlobeVideo/48_f.svg", + "staticwebassets/icons/GlobeVideo/48_r.svg", + "staticwebassets/icons/Grid/16_f.svg", + "staticwebassets/icons/Grid/16_r.svg", + "staticwebassets/icons/Grid/20_f.svg", + "staticwebassets/icons/Grid/20_r.svg", + "staticwebassets/icons/Grid/24_f.svg", + "staticwebassets/icons/Grid/24_r.svg", + "staticwebassets/icons/Grid/28_f.svg", + "staticwebassets/icons/Grid/28_r.svg", + "staticwebassets/icons/GridCircles/24_f.svg", + "staticwebassets/icons/GridCircles/24_r.svg", + "staticwebassets/icons/GridCircles/28_f.svg", + "staticwebassets/icons/GridCircles/28_r.svg", + "staticwebassets/icons/GridDots/20_f.svg", + "staticwebassets/icons/GridDots/20_r.svg", + "staticwebassets/icons/GridDots/24_f.svg", + "staticwebassets/icons/GridDots/24_r.svg", + "staticwebassets/icons/GridDots/28_f.svg", + "staticwebassets/icons/GridDots/28_r.svg", + "staticwebassets/icons/GridKanban/16_f.svg", + "staticwebassets/icons/GridKanban/16_r.svg", + "staticwebassets/icons/GridKanban/20_f.svg", + "staticwebassets/icons/GridKanban/20_r.svg", + "staticwebassets/icons/Group/20_f.svg", + "staticwebassets/icons/Group/20_r.svg", + "staticwebassets/icons/Group/24_f.svg", + "staticwebassets/icons/Group/24_r.svg", + "staticwebassets/icons/GroupDismiss/20_f.svg", + "staticwebassets/icons/GroupDismiss/20_r.svg", + "staticwebassets/icons/GroupDismiss/24_f.svg", + "staticwebassets/icons/GroupDismiss/24_r.svg", + "staticwebassets/icons/GroupList/20_f.svg", + "staticwebassets/icons/GroupList/20_r.svg", + "staticwebassets/icons/GroupList/24_f.svg", + "staticwebassets/icons/GroupList/24_r.svg", + "staticwebassets/icons/GroupReturn/20_f.svg", + "staticwebassets/icons/GroupReturn/20_r.svg", + "staticwebassets/icons/GroupReturn/24_f.svg", + "staticwebassets/icons/GroupReturn/24_r.svg", + "staticwebassets/icons/Guardian/20_f.svg", + "staticwebassets/icons/Guardian/20_r.svg", + "staticwebassets/icons/Guardian/24_f.svg", + "staticwebassets/icons/Guardian/24_r.svg", + "staticwebassets/icons/Guardian/28_f.svg", + "staticwebassets/icons/Guardian/28_r.svg", + "staticwebassets/icons/Guardian/48_f.svg", + "staticwebassets/icons/Guardian/48_r.svg", + "staticwebassets/icons/Guest/16_f.svg", + "staticwebassets/icons/Guest/16_r.svg", + "staticwebassets/icons/Guest/20_f.svg", + "staticwebassets/icons/Guest/20_r.svg", + "staticwebassets/icons/Guest/24_f.svg", + "staticwebassets/icons/Guest/24_r.svg", + "staticwebassets/icons/Guest/28_f.svg", + "staticwebassets/icons/Guest/28_r.svg", + "staticwebassets/icons/GuestAdd/20_f.svg", + "staticwebassets/icons/GuestAdd/20_r.svg", + "staticwebassets/icons/GuestAdd/24_f.svg", + "staticwebassets/icons/GuestAdd/24_r.svg", + "staticwebassets/icons/Guitar/16_f.svg", + "staticwebassets/icons/Guitar/16_r.svg", + "staticwebassets/icons/Guitar/20_f.svg", + "staticwebassets/icons/Guitar/20_r.svg", + "staticwebassets/icons/Guitar/24_f.svg", + "staticwebassets/icons/Guitar/24_r.svg", + "staticwebassets/icons/Guitar/28_f.svg", + "staticwebassets/icons/Guitar/28_r.svg", + "staticwebassets/icons/HD/16_f.svg", + "staticwebassets/icons/HD/16_r.svg", + "staticwebassets/icons/HD/20_f.svg", + "staticwebassets/icons/HD/20_r.svg", + "staticwebassets/icons/HD/24_f.svg", + "staticwebassets/icons/HD/24_r.svg", + "staticwebassets/icons/HDR/20_f.svg", + "staticwebassets/icons/HDR/20_r.svg", + "staticwebassets/icons/HDR/24_f.svg", + "staticwebassets/icons/HDR/24_r.svg", + "staticwebassets/icons/HDROff/20_f.svg", + "staticwebassets/icons/HDROff/20_r.svg", + "staticwebassets/icons/HDROff/24_f.svg", + "staticwebassets/icons/HDROff/24_r.svg", + "staticwebassets/icons/HandDraw/16_f.svg", + "staticwebassets/icons/HandDraw/16_r.svg", + "staticwebassets/icons/HandDraw/20_f.svg", + "staticwebassets/icons/HandDraw/20_r.svg", + "staticwebassets/icons/HandDraw/24_f.svg", + "staticwebassets/icons/HandDraw/24_r.svg", + "staticwebassets/icons/HandDraw/28_f.svg", + "staticwebassets/icons/HandDraw/28_r.svg", + "staticwebassets/icons/HandLeft/16_f.svg", + "staticwebassets/icons/HandLeft/16_r.svg", + "staticwebassets/icons/HandLeft/20_f.svg", + "staticwebassets/icons/HandLeft/20_r.svg", + "staticwebassets/icons/HandLeft/24_f.svg", + "staticwebassets/icons/HandLeft/24_r.svg", + "staticwebassets/icons/HandLeft/28_f.svg", + "staticwebassets/icons/HandLeft/28_r.svg", + "staticwebassets/icons/HandLeftChat/16_f.svg", + "staticwebassets/icons/HandLeftChat/16_r.svg", + "staticwebassets/icons/HandLeftChat/20_f.svg", + "staticwebassets/icons/HandLeftChat/20_r.svg", + "staticwebassets/icons/HandLeftChat/24_f.svg", + "staticwebassets/icons/HandLeftChat/24_r.svg", + "staticwebassets/icons/HandLeftChat/28_f.svg", + "staticwebassets/icons/HandLeftChat/28_r.svg", + "staticwebassets/icons/HandOpenHeart/20_f.svg", + "staticwebassets/icons/HandOpenHeart/20_r.svg", + "staticwebassets/icons/HandOpenHeart/32_f.svg", + "staticwebassets/icons/HandOpenHeart/32_r.svg", + "staticwebassets/icons/HandRight/16_f.svg", + "staticwebassets/icons/HandRight/16_r.svg", + "staticwebassets/icons/HandRight/20_f.svg", + "staticwebassets/icons/HandRight/20_r.svg", + "staticwebassets/icons/HandRight/24_f.svg", + "staticwebassets/icons/HandRight/24_r.svg", + "staticwebassets/icons/HandRight/28_f.svg", + "staticwebassets/icons/HandRight/28_r.svg", + "staticwebassets/icons/HandRightOff/20_f.svg", + "staticwebassets/icons/HandRightOff/20_r.svg", + "staticwebassets/icons/HandWave/16_f.svg", + "staticwebassets/icons/HandWave/16_r.svg", + "staticwebassets/icons/HandWave/20_f.svg", + "staticwebassets/icons/HandWave/20_r.svg", + "staticwebassets/icons/HandWave/24_f.svg", + "staticwebassets/icons/HandWave/24_r.svg", + "staticwebassets/icons/Handshake/16_f.svg", + "staticwebassets/icons/Handshake/16_r.svg", + "staticwebassets/icons/Handshake/20_f.svg", + "staticwebassets/icons/Handshake/20_r.svg", + "staticwebassets/icons/Handshake/24_f.svg", + "staticwebassets/icons/Handshake/24_r.svg", + "staticwebassets/icons/Handshake/32_f.svg", + "staticwebassets/icons/Handshake/32_r.svg", + "staticwebassets/icons/HardDrive/16_f.svg", + "staticwebassets/icons/HardDrive/16_r.svg", + "staticwebassets/icons/HardDrive/20_f.svg", + "staticwebassets/icons/HardDrive/20_r.svg", + "staticwebassets/icons/HatGraduation/12_f.svg", + "staticwebassets/icons/HatGraduation/12_r.svg", + "staticwebassets/icons/HatGraduation/16_f.svg", + "staticwebassets/icons/HatGraduation/16_r.svg", + "staticwebassets/icons/HatGraduation/20_f.svg", + "staticwebassets/icons/HatGraduation/20_r.svg", + "staticwebassets/icons/HatGraduation/24_f.svg", + "staticwebassets/icons/HatGraduation/24_r.svg", + "staticwebassets/icons/Headphones/20_f.svg", + "staticwebassets/icons/Headphones/20_r.svg", + "staticwebassets/icons/Headphones/24_f.svg", + "staticwebassets/icons/Headphones/24_r.svg", + "staticwebassets/icons/Headphones/28_f.svg", + "staticwebassets/icons/Headphones/28_r.svg", + "staticwebassets/icons/Headphones/32_f.svg", + "staticwebassets/icons/Headphones/32_r.svg", + "staticwebassets/icons/Headphones/48_f.svg", + "staticwebassets/icons/Headphones/48_r.svg", + "staticwebassets/icons/HeadphonesSoundWave/20_f.svg", + "staticwebassets/icons/HeadphonesSoundWave/20_r.svg", + "staticwebassets/icons/HeadphonesSoundWave/24_f.svg", + "staticwebassets/icons/HeadphonesSoundWave/24_r.svg", + "staticwebassets/icons/HeadphonesSoundWave/28_f.svg", + "staticwebassets/icons/HeadphonesSoundWave/28_r.svg", + "staticwebassets/icons/HeadphonesSoundWave/32_f.svg", + "staticwebassets/icons/HeadphonesSoundWave/32_r.svg", + "staticwebassets/icons/HeadphonesSoundWave/48_f.svg", + "staticwebassets/icons/HeadphonesSoundWave/48_r.svg", + "staticwebassets/icons/Headset/16_f.svg", + "staticwebassets/icons/Headset/16_r.svg", + "staticwebassets/icons/Headset/20_f.svg", + "staticwebassets/icons/Headset/20_r.svg", + "staticwebassets/icons/Headset/24_f.svg", + "staticwebassets/icons/Headset/24_r.svg", + "staticwebassets/icons/Headset/28_f.svg", + "staticwebassets/icons/Headset/28_r.svg", + "staticwebassets/icons/Headset/32_f.svg", + "staticwebassets/icons/Headset/32_r.svg", + "staticwebassets/icons/Headset/48_f.svg", + "staticwebassets/icons/Headset/48_r.svg", + "staticwebassets/icons/HeadsetAdd/20_f.svg", + "staticwebassets/icons/HeadsetAdd/20_r.svg", + "staticwebassets/icons/HeadsetAdd/24_f.svg", + "staticwebassets/icons/HeadsetAdd/24_r.svg", + "staticwebassets/icons/HeadsetVR/20_f.svg", + "staticwebassets/icons/HeadsetVR/20_r.svg", + "staticwebassets/icons/HeadsetVR/24_f.svg", + "staticwebassets/icons/HeadsetVR/24_r.svg", + "staticwebassets/icons/Heart/12_f.svg", + "staticwebassets/icons/Heart/12_r.svg", + "staticwebassets/icons/Heart/16_f.svg", + "staticwebassets/icons/Heart/16_r.svg", + "staticwebassets/icons/Heart/20_f.svg", + "staticwebassets/icons/Heart/20_r.svg", + "staticwebassets/icons/Heart/24_f.svg", + "staticwebassets/icons/Heart/24_r.svg", + "staticwebassets/icons/Heart/28_f.svg", + "staticwebassets/icons/Heart/28_r.svg", + "staticwebassets/icons/Heart/32_f.svg", + "staticwebassets/icons/Heart/32_r.svg", + "staticwebassets/icons/Heart/48_f.svg", + "staticwebassets/icons/Heart/48_r.svg", + "staticwebassets/icons/HeartBroken/16_f.svg", + "staticwebassets/icons/HeartBroken/16_r.svg", + "staticwebassets/icons/HeartBroken/20_f.svg", + "staticwebassets/icons/HeartBroken/20_r.svg", + "staticwebassets/icons/HeartBroken/24_f.svg", + "staticwebassets/icons/HeartBroken/24_r.svg", + "staticwebassets/icons/HeartCircle/16_f.svg", + "staticwebassets/icons/HeartCircle/16_r.svg", + "staticwebassets/icons/HeartCircle/20_f.svg", + "staticwebassets/icons/HeartCircle/20_r.svg", + "staticwebassets/icons/HeartCircle/24_f.svg", + "staticwebassets/icons/HeartCircle/24_r.svg", + "staticwebassets/icons/HeartCircleHint/16_f.svg", + "staticwebassets/icons/HeartCircleHint/16_r.svg", + "staticwebassets/icons/HeartCircleHint/20_f.svg", + "staticwebassets/icons/HeartCircleHint/20_r.svg", + "staticwebassets/icons/HeartCircleHint/24_f.svg", + "staticwebassets/icons/HeartCircleHint/24_r.svg", + "staticwebassets/icons/HeartCircleHint/28_f.svg", + "staticwebassets/icons/HeartCircleHint/28_r.svg", + "staticwebassets/icons/HeartCircleHint/32_f.svg", + "staticwebassets/icons/HeartCircleHint/32_r.svg", + "staticwebassets/icons/HeartCircleHint/48_f.svg", + "staticwebassets/icons/HeartCircleHint/48_r.svg", + "staticwebassets/icons/HeartPulse/20_f.svg", + "staticwebassets/icons/HeartPulse/20_r.svg", + "staticwebassets/icons/HeartPulse/24_f.svg", + "staticwebassets/icons/HeartPulse/24_r.svg", + "staticwebassets/icons/HeartPulse/32_f.svg", + "staticwebassets/icons/HeartPulse/32_r.svg", + "staticwebassets/icons/Highlight/16_f.svg", + "staticwebassets/icons/Highlight/16_r.svg", + "staticwebassets/icons/Highlight/20_f.svg", + "staticwebassets/icons/Highlight/20_r.svg", + "staticwebassets/icons/Highlight/24_f.svg", + "staticwebassets/icons/Highlight/24_r.svg", + "staticwebassets/icons/HighlightAccent/16_f.svg", + "staticwebassets/icons/HighlightAccent/20_f.svg", + "staticwebassets/icons/HighlightAccent/24_f.svg", + "staticwebassets/icons/HighlightLink/20_f.svg", + "staticwebassets/icons/HighlightLink/20_r.svg", + "staticwebassets/icons/History/16_f.svg", + "staticwebassets/icons/History/16_r.svg", + "staticwebassets/icons/History/20_f.svg", + "staticwebassets/icons/History/20_r.svg", + "staticwebassets/icons/History/24_f.svg", + "staticwebassets/icons/History/24_r.svg", + "staticwebassets/icons/History/28_f.svg", + "staticwebassets/icons/History/28_r.svg", + "staticwebassets/icons/History/32_f.svg", + "staticwebassets/icons/History/32_r.svg", + "staticwebassets/icons/History/48_f.svg", + "staticwebassets/icons/History/48_r.svg", + "staticwebassets/icons/HistoryDismiss/20_f.svg", + "staticwebassets/icons/HistoryDismiss/20_r.svg", + "staticwebassets/icons/HistoryDismiss/24_f.svg", + "staticwebassets/icons/HistoryDismiss/24_r.svg", + "staticwebassets/icons/HistoryDismiss/28_f.svg", + "staticwebassets/icons/HistoryDismiss/28_r.svg", + "staticwebassets/icons/HistoryDismiss/32_f.svg", + "staticwebassets/icons/HistoryDismiss/32_r.svg", + "staticwebassets/icons/HistoryDismiss/48_f.svg", + "staticwebassets/icons/HistoryDismiss/48_r.svg", + "staticwebassets/icons/Home/12_f.svg", + "staticwebassets/icons/Home/12_r.svg", + "staticwebassets/icons/Home/16_f.svg", + "staticwebassets/icons/Home/16_r.svg", + "staticwebassets/icons/Home/20_f.svg", + "staticwebassets/icons/Home/20_r.svg", + "staticwebassets/icons/Home/24_f.svg", + "staticwebassets/icons/Home/24_r.svg", + "staticwebassets/icons/Home/28_f.svg", + "staticwebassets/icons/Home/28_r.svg", + "staticwebassets/icons/Home/32_f.svg", + "staticwebassets/icons/Home/32_r.svg", + "staticwebassets/icons/Home/48_f.svg", + "staticwebassets/icons/Home/48_r.svg", + "staticwebassets/icons/HomeAdd/20_f.svg", + "staticwebassets/icons/HomeAdd/20_r.svg", + "staticwebassets/icons/HomeAdd/24_f.svg", + "staticwebassets/icons/HomeAdd/24_r.svg", + "staticwebassets/icons/HomeCheckmark/16_f.svg", + "staticwebassets/icons/HomeCheckmark/16_r.svg", + "staticwebassets/icons/HomeCheckmark/20_f.svg", + "staticwebassets/icons/HomeCheckmark/20_r.svg", + "staticwebassets/icons/HomeCheckmark/24_f.svg", + "staticwebassets/icons/HomeCheckmark/24_r.svg", + "staticwebassets/icons/HomeDatabase/20_f.svg", + "staticwebassets/icons/HomeDatabase/20_r.svg", + "staticwebassets/icons/HomeDatabase/24_f.svg", + "staticwebassets/icons/HomeDatabase/24_r.svg", + "staticwebassets/icons/HomeDatabase/32_f.svg", + "staticwebassets/icons/HomeDatabase/32_r.svg", + "staticwebassets/icons/HomeMore/20_f.svg", + "staticwebassets/icons/HomeMore/20_r.svg", + "staticwebassets/icons/HomeMore/24_f.svg", + "staticwebassets/icons/HomeMore/24_r.svg", + "staticwebassets/icons/HomeMore/32_f.svg", + "staticwebassets/icons/HomeMore/32_r.svg", + "staticwebassets/icons/HomeMore/48_f.svg", + "staticwebassets/icons/HomeMore/48_r.svg", + "staticwebassets/icons/HomePerson/20_f.svg", + "staticwebassets/icons/HomePerson/20_r.svg", + "staticwebassets/icons/HomePerson/24_f.svg", + "staticwebassets/icons/HomePerson/24_r.svg", + "staticwebassets/icons/HomeSplit/20_f.svg", + "staticwebassets/icons/HomeSplit/20_r.svg", + "staticwebassets/icons/HomeSplit/24_f.svg", + "staticwebassets/icons/HomeSplit/24_r.svg", + "staticwebassets/icons/HomeSplit/32_f.svg", + "staticwebassets/icons/HomeSplit/32_r.svg", + "staticwebassets/icons/HomeSplit/48_f.svg", + "staticwebassets/icons/HomeSplit/48_r.svg", + "staticwebassets/icons/Hourglass/16_f.svg", + "staticwebassets/icons/Hourglass/16_r.svg", + "staticwebassets/icons/Hourglass/20_f.svg", + "staticwebassets/icons/Hourglass/20_r.svg", + "staticwebassets/icons/Hourglass/24_f.svg", + "staticwebassets/icons/Hourglass/24_r.svg", + "staticwebassets/icons/HourglassHalf/16_f.svg", + "staticwebassets/icons/HourglassHalf/16_r.svg", + "staticwebassets/icons/HourglassHalf/20_f.svg", + "staticwebassets/icons/HourglassHalf/20_r.svg", + "staticwebassets/icons/HourglassHalf/24_f.svg", + "staticwebassets/icons/HourglassHalf/24_r.svg", + "staticwebassets/icons/HourglassOneQuarter/16_f.svg", + "staticwebassets/icons/HourglassOneQuarter/16_r.svg", + "staticwebassets/icons/HourglassOneQuarter/20_f.svg", + "staticwebassets/icons/HourglassOneQuarter/20_r.svg", + "staticwebassets/icons/HourglassOneQuarter/24_f.svg", + "staticwebassets/icons/HourglassOneQuarter/24_r.svg", + "staticwebassets/icons/HourglassThreeQuarter/16_f.svg", + "staticwebassets/icons/HourglassThreeQuarter/16_r.svg", + "staticwebassets/icons/HourglassThreeQuarter/20_f.svg", + "staticwebassets/icons/HourglassThreeQuarter/20_r.svg", + "staticwebassets/icons/HourglassThreeQuarter/24_f.svg", + "staticwebassets/icons/HourglassThreeQuarter/24_r.svg", + "staticwebassets/icons/Icons/20_f.svg", + "staticwebassets/icons/Icons/20_r.svg", + "staticwebassets/icons/Icons/24_f.svg", + "staticwebassets/icons/Icons/24_r.svg", + "staticwebassets/icons/Image/16_f.svg", + "staticwebassets/icons/Image/16_r.svg", + "staticwebassets/icons/Image/20_f.svg", + "staticwebassets/icons/Image/20_r.svg", + "staticwebassets/icons/Image/24_f.svg", + "staticwebassets/icons/Image/24_r.svg", + "staticwebassets/icons/Image/28_f.svg", + "staticwebassets/icons/Image/28_r.svg", + "staticwebassets/icons/Image/32_f.svg", + "staticwebassets/icons/Image/32_r.svg", + "staticwebassets/icons/Image/48_f.svg", + "staticwebassets/icons/Image/48_r.svg", + "staticwebassets/icons/ImageAdd/20_f.svg", + "staticwebassets/icons/ImageAdd/20_r.svg", + "staticwebassets/icons/ImageAdd/24_f.svg", + "staticwebassets/icons/ImageAdd/24_r.svg", + "staticwebassets/icons/ImageAltText/16_f.svg", + "staticwebassets/icons/ImageAltText/16_r.svg", + "staticwebassets/icons/ImageAltText/20_f.svg", + "staticwebassets/icons/ImageAltText/20_r.svg", + "staticwebassets/icons/ImageAltText/24_f.svg", + "staticwebassets/icons/ImageAltText/24_r.svg", + "staticwebassets/icons/ImageArrowBack/20_f.svg", + "staticwebassets/icons/ImageArrowBack/20_r.svg", + "staticwebassets/icons/ImageArrowBack/24_f.svg", + "staticwebassets/icons/ImageArrowBack/24_r.svg", + "staticwebassets/icons/ImageArrowBack/ar/24_f.svg", + "staticwebassets/icons/ImageArrowBack/ar/24_r.svg", + "staticwebassets/icons/ImageArrowBack/he/24_f.svg", + "staticwebassets/icons/ImageArrowBack/he/24_r.svg", + "staticwebassets/icons/ImageArrowCounterclockwise/20_f.svg", + "staticwebassets/icons/ImageArrowCounterclockwise/20_r.svg", + "staticwebassets/icons/ImageArrowCounterclockwise/24_f.svg", + "staticwebassets/icons/ImageArrowCounterclockwise/24_r.svg", + "staticwebassets/icons/ImageArrowForward/20_f.svg", + "staticwebassets/icons/ImageArrowForward/20_r.svg", + "staticwebassets/icons/ImageArrowForward/24_f.svg", + "staticwebassets/icons/ImageArrowForward/24_r.svg", + "staticwebassets/icons/ImageArrowForward/ar/24_f.svg", + "staticwebassets/icons/ImageArrowForward/ar/24_r.svg", + "staticwebassets/icons/ImageArrowForward/he/24_f.svg", + "staticwebassets/icons/ImageArrowForward/he/24_r.svg", + "staticwebassets/icons/ImageBorder/16_f.svg", + "staticwebassets/icons/ImageBorder/16_r.svg", + "staticwebassets/icons/ImageBorder/20_f.svg", + "staticwebassets/icons/ImageBorder/20_r.svg", + "staticwebassets/icons/ImageBorder/24_f.svg", + "staticwebassets/icons/ImageBorder/24_r.svg", + "staticwebassets/icons/ImageBorder/28_f.svg", + "staticwebassets/icons/ImageBorder/28_r.svg", + "staticwebassets/icons/ImageBorder/32_f.svg", + "staticwebassets/icons/ImageBorder/32_r.svg", + "staticwebassets/icons/ImageBorder/48_f.svg", + "staticwebassets/icons/ImageBorder/48_r.svg", + "staticwebassets/icons/ImageCircle/16_f.svg", + "staticwebassets/icons/ImageCircle/16_r.svg", + "staticwebassets/icons/ImageCircle/20_f.svg", + "staticwebassets/icons/ImageCircle/20_r.svg", + "staticwebassets/icons/ImageCircle/24_f.svg", + "staticwebassets/icons/ImageCircle/24_r.svg", + "staticwebassets/icons/ImageCircle/28_f.svg", + "staticwebassets/icons/ImageCircle/28_r.svg", + "staticwebassets/icons/ImageCircle/32_f.svg", + "staticwebassets/icons/ImageCircle/32_r.svg", + "staticwebassets/icons/ImageCircle/48_f.svg", + "staticwebassets/icons/ImageCircle/48_r.svg", + "staticwebassets/icons/ImageCopy/20_f.svg", + "staticwebassets/icons/ImageCopy/20_r.svg", + "staticwebassets/icons/ImageCopy/24_f.svg", + "staticwebassets/icons/ImageCopy/24_r.svg", + "staticwebassets/icons/ImageCopy/28_f.svg", + "staticwebassets/icons/ImageCopy/28_r.svg", + "staticwebassets/icons/ImageEdit/16_f.svg", + "staticwebassets/icons/ImageEdit/16_r.svg", + "staticwebassets/icons/ImageEdit/20_f.svg", + "staticwebassets/icons/ImageEdit/20_r.svg", + "staticwebassets/icons/ImageEdit/24_f.svg", + "staticwebassets/icons/ImageEdit/24_r.svg", + "staticwebassets/icons/ImageGlobe/20_f.svg", + "staticwebassets/icons/ImageGlobe/20_r.svg", + "staticwebassets/icons/ImageGlobe/24_f.svg", + "staticwebassets/icons/ImageGlobe/24_r.svg", + "staticwebassets/icons/ImageMultiple/16_f.svg", + "staticwebassets/icons/ImageMultiple/16_r.svg", + "staticwebassets/icons/ImageMultiple/20_f.svg", + "staticwebassets/icons/ImageMultiple/20_r.svg", + "staticwebassets/icons/ImageMultiple/24_f.svg", + "staticwebassets/icons/ImageMultiple/24_r.svg", + "staticwebassets/icons/ImageMultiple/28_f.svg", + "staticwebassets/icons/ImageMultiple/28_r.svg", + "staticwebassets/icons/ImageMultiple/32_f.svg", + "staticwebassets/icons/ImageMultiple/32_r.svg", + "staticwebassets/icons/ImageMultiple/48_f.svg", + "staticwebassets/icons/ImageMultiple/48_r.svg", + "staticwebassets/icons/ImageMultipleOff/16_f.svg", + "staticwebassets/icons/ImageMultipleOff/16_r.svg", + "staticwebassets/icons/ImageMultipleOff/20_f.svg", + "staticwebassets/icons/ImageMultipleOff/20_r.svg", + "staticwebassets/icons/ImageOff/20_f.svg", + "staticwebassets/icons/ImageOff/20_r.svg", + "staticwebassets/icons/ImageOff/24_f.svg", + "staticwebassets/icons/ImageOff/24_r.svg", + "staticwebassets/icons/ImageProhibited/20_f.svg", + "staticwebassets/icons/ImageProhibited/20_r.svg", + "staticwebassets/icons/ImageProhibited/24_f.svg", + "staticwebassets/icons/ImageProhibited/24_r.svg", + "staticwebassets/icons/ImageReflection/20_f.svg", + "staticwebassets/icons/ImageReflection/20_r.svg", + "staticwebassets/icons/ImageReflection/24_f.svg", + "staticwebassets/icons/ImageReflection/24_r.svg", + "staticwebassets/icons/ImageSearch/20_f.svg", + "staticwebassets/icons/ImageSearch/20_r.svg", + "staticwebassets/icons/ImageSearch/24_f.svg", + "staticwebassets/icons/ImageSearch/24_r.svg", + "staticwebassets/icons/ImageShadow/20_f.svg", + "staticwebassets/icons/ImageShadow/20_r.svg", + "staticwebassets/icons/ImageShadow/24_f.svg", + "staticwebassets/icons/ImageShadow/24_r.svg", + "staticwebassets/icons/ImageStack/16_f.svg", + "staticwebassets/icons/ImageStack/16_r.svg", + "staticwebassets/icons/ImageStack/20_f.svg", + "staticwebassets/icons/ImageStack/20_r.svg", + "staticwebassets/icons/ImageTable/16_f.svg", + "staticwebassets/icons/ImageTable/16_r.svg", + "staticwebassets/icons/ImageTable/20_f.svg", + "staticwebassets/icons/ImageTable/20_r.svg", + "staticwebassets/icons/ImageTable/24_f.svg", + "staticwebassets/icons/ImageTable/24_r.svg", + "staticwebassets/icons/ImageTable/28_f.svg", + "staticwebassets/icons/ImageTable/28_r.svg", + "staticwebassets/icons/ImageTable/32_f.svg", + "staticwebassets/icons/ImageTable/32_r.svg", + "staticwebassets/icons/ImageTable/48_f.svg", + "staticwebassets/icons/ImageTable/48_r.svg", + "staticwebassets/icons/ImmersiveReader/16_f.svg", + "staticwebassets/icons/ImmersiveReader/16_r.svg", + "staticwebassets/icons/ImmersiveReader/20_f.svg", + "staticwebassets/icons/ImmersiveReader/20_r.svg", + "staticwebassets/icons/ImmersiveReader/24_f.svg", + "staticwebassets/icons/ImmersiveReader/24_r.svg", + "staticwebassets/icons/ImmersiveReader/28_f.svg", + "staticwebassets/icons/ImmersiveReader/28_r.svg", + "staticwebassets/icons/Important/12_f.svg", + "staticwebassets/icons/Important/12_r.svg", + "staticwebassets/icons/Important/16_f.svg", + "staticwebassets/icons/Important/16_r.svg", + "staticwebassets/icons/Important/20_f.svg", + "staticwebassets/icons/Important/20_r.svg", + "staticwebassets/icons/Important/24_f.svg", + "staticwebassets/icons/Important/24_r.svg", + "staticwebassets/icons/InPrivateAccount/16_f.svg", + "staticwebassets/icons/InPrivateAccount/16_r.svg", + "staticwebassets/icons/InPrivateAccount/20_f.svg", + "staticwebassets/icons/InPrivateAccount/20_r.svg", + "staticwebassets/icons/InPrivateAccount/24_f.svg", + "staticwebassets/icons/InPrivateAccount/24_r.svg", + "staticwebassets/icons/InPrivateAccount/28_f.svg", + "staticwebassets/icons/InPrivateAccount/28_r.svg", + "staticwebassets/icons/Incognito/20_f.svg", + "staticwebassets/icons/Incognito/20_r.svg", + "staticwebassets/icons/Incognito/24_f.svg", + "staticwebassets/icons/Incognito/24_r.svg", + "staticwebassets/icons/Info/12_f.svg", + "staticwebassets/icons/Info/12_r.svg", + "staticwebassets/icons/Info/16_f.svg", + "staticwebassets/icons/Info/16_r.svg", + "staticwebassets/icons/Info/20_f.svg", + "staticwebassets/icons/Info/20_r.svg", + "staticwebassets/icons/Info/24_f.svg", + "staticwebassets/icons/Info/24_r.svg", + "staticwebassets/icons/Info/28_f.svg", + "staticwebassets/icons/Info/28_r.svg", + "staticwebassets/icons/Info/32_f.svg", + "staticwebassets/icons/Info/32_r.svg", + "staticwebassets/icons/Info/48_f.svg", + "staticwebassets/icons/Info/48_r.svg", + "staticwebassets/icons/InfoShield/20_f.svg", + "staticwebassets/icons/InfoShield/20_r.svg", + "staticwebassets/icons/InkStroke/20_f.svg", + "staticwebassets/icons/InkStroke/20_r.svg", + "staticwebassets/icons/InkStroke/24_f.svg", + "staticwebassets/icons/InkStroke/24_r.svg", + "staticwebassets/icons/InkStrokeArrowDown/20_f.svg", + "staticwebassets/icons/InkStrokeArrowDown/20_r.svg", + "staticwebassets/icons/InkStrokeArrowDown/24_f.svg", + "staticwebassets/icons/InkStrokeArrowDown/24_r.svg", + "staticwebassets/icons/InkStrokeArrowUpDown/20_f.svg", + "staticwebassets/icons/InkStrokeArrowUpDown/20_r.svg", + "staticwebassets/icons/InkStrokeArrowUpDown/24_f.svg", + "staticwebassets/icons/InkStrokeArrowUpDown/24_r.svg", + "staticwebassets/icons/InkingTool/16_f.svg", + "staticwebassets/icons/InkingTool/16_r.svg", + "staticwebassets/icons/InkingTool/20_f.svg", + "staticwebassets/icons/InkingTool/20_r.svg", + "staticwebassets/icons/InkingTool/24_f.svg", + "staticwebassets/icons/InkingTool/24_r.svg", + "staticwebassets/icons/InkingTool/32_f.svg", + "staticwebassets/icons/InkingTool/32_r.svg", + "staticwebassets/icons/InkingToolAccent/16_f.svg", + "staticwebassets/icons/InkingToolAccent/20_f.svg", + "staticwebassets/icons/InkingToolAccent/24_f.svg", + "staticwebassets/icons/InkingToolAccent/32_f.svg", + "staticwebassets/icons/Insert/20_f.svg", + "staticwebassets/icons/Insert/20_r.svg", + "staticwebassets/icons/IoT/16_f.svg", + "staticwebassets/icons/IoT/16_r.svg", + "staticwebassets/icons/IoT/20_f.svg", + "staticwebassets/icons/IoT/20_r.svg", + "staticwebassets/icons/IoT/24_f.svg", + "staticwebassets/icons/IoT/24_r.svg", + "staticwebassets/icons/IoTAlert/16_f.svg", + "staticwebassets/icons/IoTAlert/16_r.svg", + "staticwebassets/icons/IoTAlert/20_f.svg", + "staticwebassets/icons/IoTAlert/20_r.svg", + "staticwebassets/icons/IoTAlert/24_f.svg", + "staticwebassets/icons/IoTAlert/24_r.svg", + "staticwebassets/icons/JavaScript/16_f.svg", + "staticwebassets/icons/JavaScript/16_r.svg", + "staticwebassets/icons/JavaScript/20_f.svg", + "staticwebassets/icons/JavaScript/20_r.svg", + "staticwebassets/icons/JavaScript/24_f.svg", + "staticwebassets/icons/JavaScript/24_r.svg", + "staticwebassets/icons/Joystick/20_f.svg", + "staticwebassets/icons/Joystick/20_r.svg", + "staticwebassets/icons/Key/16_f.svg", + "staticwebassets/icons/Key/16_r.svg", + "staticwebassets/icons/Key/20_f.svg", + "staticwebassets/icons/Key/20_r.svg", + "staticwebassets/icons/Key/24_f.svg", + "staticwebassets/icons/Key/24_r.svg", + "staticwebassets/icons/Key/32_f.svg", + "staticwebassets/icons/Key/32_r.svg", + "staticwebassets/icons/KeyCommand/16_f.svg", + "staticwebassets/icons/KeyCommand/16_r.svg", + "staticwebassets/icons/KeyCommand/20_f.svg", + "staticwebassets/icons/KeyCommand/20_r.svg", + "staticwebassets/icons/KeyCommand/24_f.svg", + "staticwebassets/icons/KeyCommand/24_r.svg", + "staticwebassets/icons/KeyMultiple/20_f.svg", + "staticwebassets/icons/KeyMultiple/20_r.svg", + "staticwebassets/icons/KeyReset/20_f.svg", + "staticwebassets/icons/KeyReset/20_r.svg", + "staticwebassets/icons/KeyReset/24_f.svg", + "staticwebassets/icons/KeyReset/24_r.svg", + "staticwebassets/icons/Keyboard/16_f.svg", + "staticwebassets/icons/Keyboard/16_r.svg", + "staticwebassets/icons/Keyboard/20_f.svg", + "staticwebassets/icons/Keyboard/20_r.svg", + "staticwebassets/icons/Keyboard/24_f.svg", + "staticwebassets/icons/Keyboard/24_r.svg", + "staticwebassets/icons/Keyboard123/20_f.svg", + "staticwebassets/icons/Keyboard123/20_r.svg", + "staticwebassets/icons/Keyboard123/24_f.svg", + "staticwebassets/icons/Keyboard123/24_r.svg", + "staticwebassets/icons/KeyboardDock/20_f.svg", + "staticwebassets/icons/KeyboardDock/20_r.svg", + "staticwebassets/icons/KeyboardDock/24_f.svg", + "staticwebassets/icons/KeyboardDock/24_r.svg", + "staticwebassets/icons/KeyboardLayoutFloat/20_f.svg", + "staticwebassets/icons/KeyboardLayoutFloat/20_r.svg", + "staticwebassets/icons/KeyboardLayoutFloat/24_f.svg", + "staticwebassets/icons/KeyboardLayoutFloat/24_r.svg", + "staticwebassets/icons/KeyboardLayoutOneHandedLeft/20_f.svg", + "staticwebassets/icons/KeyboardLayoutOneHandedLeft/20_r.svg", + "staticwebassets/icons/KeyboardLayoutOneHandedLeft/24_f.svg", + "staticwebassets/icons/KeyboardLayoutOneHandedLeft/24_r.svg", + "staticwebassets/icons/KeyboardLayoutResize/20_f.svg", + "staticwebassets/icons/KeyboardLayoutResize/20_r.svg", + "staticwebassets/icons/KeyboardLayoutResize/24_f.svg", + "staticwebassets/icons/KeyboardLayoutResize/24_r.svg", + "staticwebassets/icons/KeyboardLayoutSplit/20_f.svg", + "staticwebassets/icons/KeyboardLayoutSplit/20_r.svg", + "staticwebassets/icons/KeyboardLayoutSplit/24_f.svg", + "staticwebassets/icons/KeyboardLayoutSplit/24_r.svg", + "staticwebassets/icons/KeyboardMouse/16_f.svg", + "staticwebassets/icons/KeyboardMouse/16_r.svg", + "staticwebassets/icons/KeyboardShift/16_f.svg", + "staticwebassets/icons/KeyboardShift/16_r.svg", + "staticwebassets/icons/KeyboardShift/20_f.svg", + "staticwebassets/icons/KeyboardShift/20_r.svg", + "staticwebassets/icons/KeyboardShift/24_f.svg", + "staticwebassets/icons/KeyboardShift/24_r.svg", + "staticwebassets/icons/KeyboardShiftUppercase/16_f.svg", + "staticwebassets/icons/KeyboardShiftUppercase/16_r.svg", + "staticwebassets/icons/KeyboardShiftUppercase/20_f.svg", + "staticwebassets/icons/KeyboardShiftUppercase/20_r.svg", + "staticwebassets/icons/KeyboardShiftUppercase/24_f.svg", + "staticwebassets/icons/KeyboardShiftUppercase/24_r.svg", + "staticwebassets/icons/KeyboardTab/20_f.svg", + "staticwebassets/icons/KeyboardTab/20_r.svg", + "staticwebassets/icons/KeyboardTab/24_f.svg", + "staticwebassets/icons/KeyboardTab/24_r.svg", + "staticwebassets/icons/Laptop/16_f.svg", + "staticwebassets/icons/Laptop/16_r.svg", + "staticwebassets/icons/Laptop/20_f.svg", + "staticwebassets/icons/Laptop/20_r.svg", + "staticwebassets/icons/Laptop/24_f.svg", + "staticwebassets/icons/Laptop/24_r.svg", + "staticwebassets/icons/Laptop/28_f.svg", + "staticwebassets/icons/Laptop/28_r.svg", + "staticwebassets/icons/LaptopDismiss/16_f.svg", + "staticwebassets/icons/LaptopDismiss/16_r.svg", + "staticwebassets/icons/LaptopDismiss/20_f.svg", + "staticwebassets/icons/LaptopDismiss/20_r.svg", + "staticwebassets/icons/LaptopShield/16_f.svg", + "staticwebassets/icons/LaptopShield/16_r.svg", + "staticwebassets/icons/LaptopShield/20_f.svg", + "staticwebassets/icons/LaptopShield/20_r.svg", + "staticwebassets/icons/LaserTool/20_f.svg", + "staticwebassets/icons/LaserTool/20_r.svg", + "staticwebassets/icons/Lasso/20_f.svg", + "staticwebassets/icons/Lasso/20_r.svg", + "staticwebassets/icons/Lasso/24_f.svg", + "staticwebassets/icons/Lasso/24_r.svg", + "staticwebassets/icons/Lasso/28_f.svg", + "staticwebassets/icons/Lasso/28_r.svg", + "staticwebassets/icons/LauncherSettings/20_f.svg", + "staticwebassets/icons/LauncherSettings/20_r.svg", + "staticwebassets/icons/LauncherSettings/24_f.svg", + "staticwebassets/icons/LauncherSettings/24_r.svg", + "staticwebassets/icons/Layer/20_f.svg", + "staticwebassets/icons/Layer/20_r.svg", + "staticwebassets/icons/Layer/24_f.svg", + "staticwebassets/icons/Layer/24_r.svg", + "staticwebassets/icons/LayerDiagonal/20_f.svg", + "staticwebassets/icons/LayerDiagonal/20_r.svg", + "staticwebassets/icons/LayerDiagonalPerson/20_f.svg", + "staticwebassets/icons/LayerDiagonalPerson/20_r.svg", + "staticwebassets/icons/LeafOne/16_f.svg", + "staticwebassets/icons/LeafOne/16_r.svg", + "staticwebassets/icons/LeafOne/20_f.svg", + "staticwebassets/icons/LeafOne/20_r.svg", + "staticwebassets/icons/LeafOne/24_f.svg", + "staticwebassets/icons/LeafOne/24_r.svg", + "staticwebassets/icons/LeafOne/32_f.svg", + "staticwebassets/icons/LeafOne/32_r.svg", + "staticwebassets/icons/LeafThree/16_f.svg", + "staticwebassets/icons/LeafThree/16_r.svg", + "staticwebassets/icons/LeafThree/20_f.svg", + "staticwebassets/icons/LeafThree/20_r.svg", + "staticwebassets/icons/LeafThree/24_f.svg", + "staticwebassets/icons/LeafThree/24_r.svg", + "staticwebassets/icons/LeafTwo/16_f.svg", + "staticwebassets/icons/LeafTwo/16_r.svg", + "staticwebassets/icons/LeafTwo/20_f.svg", + "staticwebassets/icons/LeafTwo/20_r.svg", + "staticwebassets/icons/LeafTwo/24_f.svg", + "staticwebassets/icons/LeafTwo/24_r.svg", + "staticwebassets/icons/LeafTwo/32_f.svg", + "staticwebassets/icons/LeafTwo/32_r.svg", + "staticwebassets/icons/LeafTwo/48_f.svg", + "staticwebassets/icons/LeafTwo/48_r.svg", + "staticwebassets/icons/LearningApp/20_f.svg", + "staticwebassets/icons/LearningApp/20_r.svg", + "staticwebassets/icons/LearningApp/24_f.svg", + "staticwebassets/icons/LearningApp/24_r.svg", + "staticwebassets/icons/Library/16_f.svg", + "staticwebassets/icons/Library/16_r.svg", + "staticwebassets/icons/Library/20_f.svg", + "staticwebassets/icons/Library/20_r.svg", + "staticwebassets/icons/Library/24_f.svg", + "staticwebassets/icons/Library/24_r.svg", + "staticwebassets/icons/Library/28_f.svg", + "staticwebassets/icons/Library/28_r.svg", + "staticwebassets/icons/Lightbulb/16_f.svg", + "staticwebassets/icons/Lightbulb/16_r.svg", + "staticwebassets/icons/Lightbulb/20_f.svg", + "staticwebassets/icons/Lightbulb/20_r.svg", + "staticwebassets/icons/Lightbulb/24_f.svg", + "staticwebassets/icons/Lightbulb/24_r.svg", + "staticwebassets/icons/Lightbulb/28_f.svg", + "staticwebassets/icons/Lightbulb/28_r.svg", + "staticwebassets/icons/Lightbulb/32_f.svg", + "staticwebassets/icons/Lightbulb/32_r.svg", + "staticwebassets/icons/Lightbulb/48_f.svg", + "staticwebassets/icons/Lightbulb/48_r.svg", + "staticwebassets/icons/LightbulbCheckmark/20_f.svg", + "staticwebassets/icons/LightbulbCheckmark/20_r.svg", + "staticwebassets/icons/LightbulbCircle/20_f.svg", + "staticwebassets/icons/LightbulbCircle/20_r.svg", + "staticwebassets/icons/LightbulbCircle/24_f.svg", + "staticwebassets/icons/LightbulbCircle/24_r.svg", + "staticwebassets/icons/LightbulbFilament/16_f.svg", + "staticwebassets/icons/LightbulbFilament/16_r.svg", + "staticwebassets/icons/LightbulbFilament/20_f.svg", + "staticwebassets/icons/LightbulbFilament/20_r.svg", + "staticwebassets/icons/LightbulbFilament/24_f.svg", + "staticwebassets/icons/LightbulbFilament/24_r.svg", + "staticwebassets/icons/LightbulbFilament/48_f.svg", + "staticwebassets/icons/LightbulbFilament/48_r.svg", + "staticwebassets/icons/LightbulbPerson/16_f.svg", + "staticwebassets/icons/LightbulbPerson/16_r.svg", + "staticwebassets/icons/LightbulbPerson/20_f.svg", + "staticwebassets/icons/LightbulbPerson/20_r.svg", + "staticwebassets/icons/LightbulbPerson/24_f.svg", + "staticwebassets/icons/LightbulbPerson/24_r.svg", + "staticwebassets/icons/LightbulbPerson/28_f.svg", + "staticwebassets/icons/LightbulbPerson/28_r.svg", + "staticwebassets/icons/LightbulbPerson/32_f.svg", + "staticwebassets/icons/LightbulbPerson/32_r.svg", + "staticwebassets/icons/LightbulbPerson/48_f.svg", + "staticwebassets/icons/LightbulbPerson/48_r.svg", + "staticwebassets/icons/Likert/16_f.svg", + "staticwebassets/icons/Likert/16_r.svg", + "staticwebassets/icons/Likert/20_f.svg", + "staticwebassets/icons/Likert/20_r.svg", + "staticwebassets/icons/Likert/24_f.svg", + "staticwebassets/icons/Likert/24_r.svg", + "staticwebassets/icons/Line/20_f.svg", + "staticwebassets/icons/Line/20_r.svg", + "staticwebassets/icons/Line/24_f.svg", + "staticwebassets/icons/Line/24_r.svg", + "staticwebassets/icons/Line/32_f.svg", + "staticwebassets/icons/Line/32_r.svg", + "staticwebassets/icons/Line/48_f.svg", + "staticwebassets/icons/Line/48_r.svg", + "staticwebassets/icons/LineDashes/20_f.svg", + "staticwebassets/icons/LineDashes/20_r.svg", + "staticwebassets/icons/LineDashes/24_f.svg", + "staticwebassets/icons/LineDashes/24_r.svg", + "staticwebassets/icons/LineDashes/32_f.svg", + "staticwebassets/icons/LineDashes/32_r.svg", + "staticwebassets/icons/LineDashes/48_f.svg", + "staticwebassets/icons/LineDashes/48_r.svg", + "staticwebassets/icons/LineHorizontal1/20_f.svg", + "staticwebassets/icons/LineHorizontal1/20_r.svg", + "staticwebassets/icons/LineHorizontal3/20_f.svg", + "staticwebassets/icons/LineHorizontal3/20_r.svg", + "staticwebassets/icons/LineHorizontal4/16_f.svg", + "staticwebassets/icons/LineHorizontal4/16_r.svg", + "staticwebassets/icons/LineHorizontal4/20_f.svg", + "staticwebassets/icons/LineHorizontal4/20_r.svg", + "staticwebassets/icons/LineHorizontal4Search/16_f.svg", + "staticwebassets/icons/LineHorizontal4Search/16_r.svg", + "staticwebassets/icons/LineHorizontal4Search/20_f.svg", + "staticwebassets/icons/LineHorizontal4Search/20_r.svg", + "staticwebassets/icons/LineHorizontal5/20_f.svg", + "staticwebassets/icons/LineHorizontal5/20_r.svg", + "staticwebassets/icons/LineHorizontal5Error/20_f.svg", + "staticwebassets/icons/LineHorizontal5Error/20_r.svg", + "staticwebassets/icons/LineStyle/20_f.svg", + "staticwebassets/icons/LineStyle/20_r.svg", + "staticwebassets/icons/LineStyle/24_f.svg", + "staticwebassets/icons/LineStyle/24_r.svg", + "staticwebassets/icons/LineThickness/20_f.svg", + "staticwebassets/icons/LineThickness/20_r.svg", + "staticwebassets/icons/LineThickness/24_f.svg", + "staticwebassets/icons/LineThickness/24_r.svg", + "staticwebassets/icons/Link/12_f.svg", + "staticwebassets/icons/Link/12_r.svg", + "staticwebassets/icons/Link/16_f.svg", + "staticwebassets/icons/Link/16_r.svg", + "staticwebassets/icons/Link/20_f.svg", + "staticwebassets/icons/Link/20_r.svg", + "staticwebassets/icons/Link/24_f.svg", + "staticwebassets/icons/Link/24_r.svg", + "staticwebassets/icons/Link/28_f.svg", + "staticwebassets/icons/Link/28_r.svg", + "staticwebassets/icons/Link/32_f.svg", + "staticwebassets/icons/Link/32_r.svg", + "staticwebassets/icons/Link/48_f.svg", + "staticwebassets/icons/Link/48_r.svg", + "staticwebassets/icons/LinkDismiss/16_f.svg", + "staticwebassets/icons/LinkDismiss/16_r.svg", + "staticwebassets/icons/LinkDismiss/20_f.svg", + "staticwebassets/icons/LinkDismiss/20_r.svg", + "staticwebassets/icons/LinkDismiss/24_f.svg", + "staticwebassets/icons/LinkDismiss/24_r.svg", + "staticwebassets/icons/LinkEdit/16_f.svg", + "staticwebassets/icons/LinkEdit/16_r.svg", + "staticwebassets/icons/LinkEdit/20_f.svg", + "staticwebassets/icons/LinkEdit/20_r.svg", + "staticwebassets/icons/LinkEdit/24_f.svg", + "staticwebassets/icons/LinkEdit/24_r.svg", + "staticwebassets/icons/LinkSquare/12_f.svg", + "staticwebassets/icons/LinkSquare/12_r.svg", + "staticwebassets/icons/LinkSquare/16_f.svg", + "staticwebassets/icons/LinkSquare/16_r.svg", + "staticwebassets/icons/LinkSquare/20_f.svg", + "staticwebassets/icons/LinkSquare/20_r.svg", + "staticwebassets/icons/LinkSquare/24_f.svg", + "staticwebassets/icons/LinkSquare/24_r.svg", + "staticwebassets/icons/LinkToolbox/20_f.svg", + "staticwebassets/icons/LinkToolbox/20_r.svg", + "staticwebassets/icons/List/16_f.svg", + "staticwebassets/icons/List/16_r.svg", + "staticwebassets/icons/List/20_f.svg", + "staticwebassets/icons/List/20_r.svg", + "staticwebassets/icons/List/24_f.svg", + "staticwebassets/icons/List/24_r.svg", + "staticwebassets/icons/List/28_f.svg", + "staticwebassets/icons/List/28_r.svg", + "staticwebassets/icons/ListBar/16_f.svg", + "staticwebassets/icons/ListBar/16_r.svg", + "staticwebassets/icons/ListBar/20_f.svg", + "staticwebassets/icons/ListBar/20_r.svg", + "staticwebassets/icons/ListBarTree/16_f.svg", + "staticwebassets/icons/ListBarTree/16_r.svg", + "staticwebassets/icons/ListBarTree/20_f.svg", + "staticwebassets/icons/ListBarTree/20_r.svg", + "staticwebassets/icons/ListBarTreeOffset/16_f.svg", + "staticwebassets/icons/ListBarTreeOffset/16_r.svg", + "staticwebassets/icons/ListBarTreeOffset/20_f.svg", + "staticwebassets/icons/ListBarTreeOffset/20_r.svg", + "staticwebassets/icons/ListRTL/16_f.svg", + "staticwebassets/icons/ListRTL/16_r.svg", + "staticwebassets/icons/ListRTL/20_f.svg", + "staticwebassets/icons/ListRTL/20_r.svg", + "staticwebassets/icons/Live/20_f.svg", + "staticwebassets/icons/Live/20_r.svg", + "staticwebassets/icons/Live/24_f.svg", + "staticwebassets/icons/Live/24_r.svg", + "staticwebassets/icons/LiveOff/20_f.svg", + "staticwebassets/icons/LiveOff/20_r.svg", + "staticwebassets/icons/LiveOff/24_f.svg", + "staticwebassets/icons/LiveOff/24_r.svg", + "staticwebassets/icons/LocalLanguage/16_f.svg", + "staticwebassets/icons/LocalLanguage/16_r.svg", + "staticwebassets/icons/LocalLanguage/20_f.svg", + "staticwebassets/icons/LocalLanguage/20_r.svg", + "staticwebassets/icons/LocalLanguage/24_f.svg", + "staticwebassets/icons/LocalLanguage/24_r.svg", + "staticwebassets/icons/LocalLanguage/28_f.svg", + "staticwebassets/icons/LocalLanguage/28_r.svg", + "staticwebassets/icons/LocalLanguage/en/16_f.svg", + "staticwebassets/icons/LocalLanguage/en/16_r.svg", + "staticwebassets/icons/LocalLanguage/en/20_f.svg", + "staticwebassets/icons/LocalLanguage/en/20_r.svg", + "staticwebassets/icons/LocalLanguage/en/24_f.svg", + "staticwebassets/icons/LocalLanguage/en/24_r.svg", + "staticwebassets/icons/LocalLanguage/en/28_f.svg", + "staticwebassets/icons/LocalLanguage/en/28_r.svg", + "staticwebassets/icons/LocalLanguage/ja/20_f.svg", + "staticwebassets/icons/LocalLanguage/ja/20_r.svg", + "staticwebassets/icons/LocalLanguage/ja/24_f.svg", + "staticwebassets/icons/LocalLanguage/ja/24_r.svg", + "staticwebassets/icons/LocalLanguage/ko/16_f.svg", + "staticwebassets/icons/LocalLanguage/ko/16_r.svg", + "staticwebassets/icons/LocalLanguage/ko/20_f.svg", + "staticwebassets/icons/LocalLanguage/ko/20_r.svg", + "staticwebassets/icons/LocalLanguage/ko/24_f.svg", + "staticwebassets/icons/LocalLanguage/ko/24_r.svg", + "staticwebassets/icons/LocalLanguage/ko/28_f.svg", + "staticwebassets/icons/LocalLanguage/ko/28_r.svg", + "staticwebassets/icons/LocalLanguage/zh/20_f.svg", + "staticwebassets/icons/LocalLanguage/zh/20_r.svg", + "staticwebassets/icons/LocalLanguage/zh/24_f.svg", + "staticwebassets/icons/LocalLanguage/zh/24_r.svg", + "staticwebassets/icons/Location/12_f.svg", + "staticwebassets/icons/Location/12_r.svg", + "staticwebassets/icons/Location/16_f.svg", + "staticwebassets/icons/Location/16_r.svg", + "staticwebassets/icons/Location/20_f.svg", + "staticwebassets/icons/Location/20_r.svg", + "staticwebassets/icons/Location/24_f.svg", + "staticwebassets/icons/Location/24_r.svg", + "staticwebassets/icons/Location/28_f.svg", + "staticwebassets/icons/Location/28_r.svg", + "staticwebassets/icons/Location/48_f.svg", + "staticwebassets/icons/Location/48_r.svg", + "staticwebassets/icons/LocationAdd/16_f.svg", + "staticwebassets/icons/LocationAdd/16_r.svg", + "staticwebassets/icons/LocationAdd/20_f.svg", + "staticwebassets/icons/LocationAdd/20_r.svg", + "staticwebassets/icons/LocationAdd/24_f.svg", + "staticwebassets/icons/LocationAdd/24_r.svg", + "staticwebassets/icons/LocationAddLeft/20_f.svg", + "staticwebassets/icons/LocationAddLeft/20_r.svg", + "staticwebassets/icons/LocationAddRight/20_f.svg", + "staticwebassets/icons/LocationAddRight/20_r.svg", + "staticwebassets/icons/LocationAddUp/20_f.svg", + "staticwebassets/icons/LocationAddUp/20_r.svg", + "staticwebassets/icons/LocationArrow/12_f.svg", + "staticwebassets/icons/LocationArrow/12_r.svg", + "staticwebassets/icons/LocationArrow/16_f.svg", + "staticwebassets/icons/LocationArrow/16_r.svg", + "staticwebassets/icons/LocationArrow/20_f.svg", + "staticwebassets/icons/LocationArrow/20_r.svg", + "staticwebassets/icons/LocationArrow/24_f.svg", + "staticwebassets/icons/LocationArrow/24_r.svg", + "staticwebassets/icons/LocationArrow/28_f.svg", + "staticwebassets/icons/LocationArrow/28_r.svg", + "staticwebassets/icons/LocationArrow/32_f.svg", + "staticwebassets/icons/LocationArrow/32_r.svg", + "staticwebassets/icons/LocationArrow/48_f.svg", + "staticwebassets/icons/LocationArrow/48_r.svg", + "staticwebassets/icons/LocationArrowLeft/16_f.svg", + "staticwebassets/icons/LocationArrowLeft/16_r.svg", + "staticwebassets/icons/LocationArrowLeft/20_f.svg", + "staticwebassets/icons/LocationArrowLeft/20_r.svg", + "staticwebassets/icons/LocationArrowLeft/48_f.svg", + "staticwebassets/icons/LocationArrowLeft/48_r.svg", + "staticwebassets/icons/LocationArrowRight/16_f.svg", + "staticwebassets/icons/LocationArrowRight/16_r.svg", + "staticwebassets/icons/LocationArrowRight/20_f.svg", + "staticwebassets/icons/LocationArrowRight/20_r.svg", + "staticwebassets/icons/LocationArrowRight/48_f.svg", + "staticwebassets/icons/LocationArrowRight/48_r.svg", + "staticwebassets/icons/LocationArrowUp/16_f.svg", + "staticwebassets/icons/LocationArrowUp/16_r.svg", + "staticwebassets/icons/LocationArrowUp/20_f.svg", + "staticwebassets/icons/LocationArrowUp/20_r.svg", + "staticwebassets/icons/LocationArrowUp/48_f.svg", + "staticwebassets/icons/LocationArrowUp/48_r.svg", + "staticwebassets/icons/LocationDismiss/20_f.svg", + "staticwebassets/icons/LocationDismiss/20_r.svg", + "staticwebassets/icons/LocationDismiss/24_f.svg", + "staticwebassets/icons/LocationDismiss/24_r.svg", + "staticwebassets/icons/LocationLive/20_f.svg", + "staticwebassets/icons/LocationLive/20_r.svg", + "staticwebassets/icons/LocationLive/24_f.svg", + "staticwebassets/icons/LocationLive/24_r.svg", + "staticwebassets/icons/LocationOff/16_f.svg", + "staticwebassets/icons/LocationOff/16_r.svg", + "staticwebassets/icons/LocationOff/20_f.svg", + "staticwebassets/icons/LocationOff/20_r.svg", + "staticwebassets/icons/LocationOff/24_f.svg", + "staticwebassets/icons/LocationOff/24_r.svg", + "staticwebassets/icons/LocationOff/28_f.svg", + "staticwebassets/icons/LocationOff/28_r.svg", + "staticwebassets/icons/LocationOff/48_f.svg", + "staticwebassets/icons/LocationOff/48_r.svg", + "staticwebassets/icons/LockClosed/12_f.svg", + "staticwebassets/icons/LockClosed/12_r.svg", + "staticwebassets/icons/LockClosed/16_f.svg", + "staticwebassets/icons/LockClosed/16_r.svg", + "staticwebassets/icons/LockClosed/20_f.svg", + "staticwebassets/icons/LockClosed/20_r.svg", + "staticwebassets/icons/LockClosed/24_f.svg", + "staticwebassets/icons/LockClosed/24_r.svg", + "staticwebassets/icons/LockClosed/32_f.svg", + "staticwebassets/icons/LockClosed/32_r.svg", + "staticwebassets/icons/LockClosedKey/16_f.svg", + "staticwebassets/icons/LockClosedKey/16_r.svg", + "staticwebassets/icons/LockClosedKey/20_f.svg", + "staticwebassets/icons/LockClosedKey/20_r.svg", + "staticwebassets/icons/LockClosedKey/24_f.svg", + "staticwebassets/icons/LockClosedKey/24_r.svg", + "staticwebassets/icons/LockMultiple/20_f.svg", + "staticwebassets/icons/LockMultiple/20_r.svg", + "staticwebassets/icons/LockMultiple/24_f.svg", + "staticwebassets/icons/LockMultiple/24_r.svg", + "staticwebassets/icons/LockOpen/16_f.svg", + "staticwebassets/icons/LockOpen/16_r.svg", + "staticwebassets/icons/LockOpen/20_f.svg", + "staticwebassets/icons/LockOpen/20_r.svg", + "staticwebassets/icons/LockOpen/24_f.svg", + "staticwebassets/icons/LockOpen/24_r.svg", + "staticwebassets/icons/LockOpen/28_f.svg", + "staticwebassets/icons/LockOpen/28_r.svg", + "staticwebassets/icons/LockShield/20_f.svg", + "staticwebassets/icons/LockShield/20_r.svg", + "staticwebassets/icons/LockShield/24_f.svg", + "staticwebassets/icons/LockShield/24_r.svg", + "staticwebassets/icons/LockShield/48_f.svg", + "staticwebassets/icons/LockShield/48_r.svg", + "staticwebassets/icons/Lottery/20_f.svg", + "staticwebassets/icons/Lottery/20_r.svg", + "staticwebassets/icons/Lottery/24_f.svg", + "staticwebassets/icons/Lottery/24_r.svg", + "staticwebassets/icons/Luggage/16_f.svg", + "staticwebassets/icons/Luggage/16_r.svg", + "staticwebassets/icons/Luggage/20_f.svg", + "staticwebassets/icons/Luggage/20_r.svg", + "staticwebassets/icons/Luggage/24_f.svg", + "staticwebassets/icons/Luggage/24_r.svg", + "staticwebassets/icons/Luggage/28_f.svg", + "staticwebassets/icons/Luggage/28_r.svg", + "staticwebassets/icons/Luggage/32_f.svg", + "staticwebassets/icons/Luggage/32_r.svg", + "staticwebassets/icons/Luggage/48_f.svg", + "staticwebassets/icons/Luggage/48_r.svg", + "staticwebassets/icons/Mail/12_f.svg", + "staticwebassets/icons/Mail/12_r.svg", + "staticwebassets/icons/Mail/16_f.svg", + "staticwebassets/icons/Mail/16_r.svg", + "staticwebassets/icons/Mail/20_f.svg", + "staticwebassets/icons/Mail/20_r.svg", + "staticwebassets/icons/Mail/24_f.svg", + "staticwebassets/icons/Mail/24_r.svg", + "staticwebassets/icons/Mail/28_f.svg", + "staticwebassets/icons/Mail/28_r.svg", + "staticwebassets/icons/Mail/48_f.svg", + "staticwebassets/icons/Mail/48_r.svg", + "staticwebassets/icons/MailAdd/16_f.svg", + "staticwebassets/icons/MailAdd/16_r.svg", + "staticwebassets/icons/MailAdd/20_f.svg", + "staticwebassets/icons/MailAdd/20_r.svg", + "staticwebassets/icons/MailAdd/24_f.svg", + "staticwebassets/icons/MailAdd/24_r.svg", + "staticwebassets/icons/MailAlert/16_f.svg", + "staticwebassets/icons/MailAlert/16_r.svg", + "staticwebassets/icons/MailAlert/20_f.svg", + "staticwebassets/icons/MailAlert/20_r.svg", + "staticwebassets/icons/MailAlert/24_f.svg", + "staticwebassets/icons/MailAlert/24_r.svg", + "staticwebassets/icons/MailAlert/28_f.svg", + "staticwebassets/icons/MailAlert/28_r.svg", + "staticwebassets/icons/MailAllRead/16_f.svg", + "staticwebassets/icons/MailAllRead/16_r.svg", + "staticwebassets/icons/MailAllRead/20_f.svg", + "staticwebassets/icons/MailAllRead/20_r.svg", + "staticwebassets/icons/MailAllRead/24_f.svg", + "staticwebassets/icons/MailAllRead/24_r.svg", + "staticwebassets/icons/MailAllRead/28_f.svg", + "staticwebassets/icons/MailAllRead/28_r.svg", + "staticwebassets/icons/MailAllUnread/20_f.svg", + "staticwebassets/icons/MailAllUnread/20_r.svg", + "staticwebassets/icons/MailArrowDoubleBack/16_f.svg", + "staticwebassets/icons/MailArrowDoubleBack/16_r.svg", + "staticwebassets/icons/MailArrowDoubleBack/20_f.svg", + "staticwebassets/icons/MailArrowDoubleBack/20_r.svg", + "staticwebassets/icons/MailArrowDoubleBack/24_f.svg", + "staticwebassets/icons/MailArrowDoubleBack/24_r.svg", + "staticwebassets/icons/MailArrowDown/16_f.svg", + "staticwebassets/icons/MailArrowDown/16_r.svg", + "staticwebassets/icons/MailArrowDown/20_f.svg", + "staticwebassets/icons/MailArrowDown/20_r.svg", + "staticwebassets/icons/MailArrowForward/16_f.svg", + "staticwebassets/icons/MailArrowForward/16_r.svg", + "staticwebassets/icons/MailArrowForward/20_f.svg", + "staticwebassets/icons/MailArrowForward/20_r.svg", + "staticwebassets/icons/MailArrowUp/16_f.svg", + "staticwebassets/icons/MailArrowUp/16_r.svg", + "staticwebassets/icons/MailArrowUp/20_f.svg", + "staticwebassets/icons/MailArrowUp/20_r.svg", + "staticwebassets/icons/MailArrowUp/24_f.svg", + "staticwebassets/icons/MailArrowUp/24_r.svg", + "staticwebassets/icons/MailAttach/16_f.svg", + "staticwebassets/icons/MailAttach/16_r.svg", + "staticwebassets/icons/MailAttach/20_f.svg", + "staticwebassets/icons/MailAttach/20_r.svg", + "staticwebassets/icons/MailAttach/24_f.svg", + "staticwebassets/icons/MailAttach/24_r.svg", + "staticwebassets/icons/MailAttach/28_f.svg", + "staticwebassets/icons/MailAttach/28_r.svg", + "staticwebassets/icons/MailCheckmark/16_f.svg", + "staticwebassets/icons/MailCheckmark/16_r.svg", + "staticwebassets/icons/MailCheckmark/20_f.svg", + "staticwebassets/icons/MailCheckmark/20_r.svg", + "staticwebassets/icons/MailCheckmark/24_f.svg", + "staticwebassets/icons/MailCheckmark/24_r.svg", + "staticwebassets/icons/MailClock/16_f.svg", + "staticwebassets/icons/MailClock/16_r.svg", + "staticwebassets/icons/MailClock/20_f.svg", + "staticwebassets/icons/MailClock/20_r.svg", + "staticwebassets/icons/MailClock/24_f.svg", + "staticwebassets/icons/MailClock/24_r.svg", + "staticwebassets/icons/MailCopy/20_f.svg", + "staticwebassets/icons/MailCopy/20_r.svg", + "staticwebassets/icons/MailCopy/24_f.svg", + "staticwebassets/icons/MailCopy/24_r.svg", + "staticwebassets/icons/MailDismiss/16_f.svg", + "staticwebassets/icons/MailDismiss/16_r.svg", + "staticwebassets/icons/MailDismiss/20_f.svg", + "staticwebassets/icons/MailDismiss/20_r.svg", + "staticwebassets/icons/MailDismiss/24_f.svg", + "staticwebassets/icons/MailDismiss/24_r.svg", + "staticwebassets/icons/MailDismiss/28_f.svg", + "staticwebassets/icons/MailDismiss/28_r.svg", + "staticwebassets/icons/MailEdit/20_f.svg", + "staticwebassets/icons/MailEdit/20_r.svg", + "staticwebassets/icons/MailEdit/24_f.svg", + "staticwebassets/icons/MailEdit/24_r.svg", + "staticwebassets/icons/MailError/16_f.svg", + "staticwebassets/icons/MailError/16_r.svg", + "staticwebassets/icons/MailError/20_f.svg", + "staticwebassets/icons/MailError/20_r.svg", + "staticwebassets/icons/MailError/24_f.svg", + "staticwebassets/icons/MailError/24_r.svg", + "staticwebassets/icons/MailInbox/16_f.svg", + "staticwebassets/icons/MailInbox/16_r.svg", + "staticwebassets/icons/MailInbox/20_f.svg", + "staticwebassets/icons/MailInbox/20_r.svg", + "staticwebassets/icons/MailInbox/24_f.svg", + "staticwebassets/icons/MailInbox/24_r.svg", + "staticwebassets/icons/MailInbox/28_f.svg", + "staticwebassets/icons/MailInbox/28_r.svg", + "staticwebassets/icons/MailInboxAdd/16_f.svg", + "staticwebassets/icons/MailInboxAdd/16_r.svg", + "staticwebassets/icons/MailInboxAdd/20_f.svg", + "staticwebassets/icons/MailInboxAdd/20_r.svg", + "staticwebassets/icons/MailInboxAdd/24_f.svg", + "staticwebassets/icons/MailInboxAdd/24_r.svg", + "staticwebassets/icons/MailInboxAdd/28_f.svg", + "staticwebassets/icons/MailInboxAdd/28_r.svg", + "staticwebassets/icons/MailInboxAll/20_f.svg", + "staticwebassets/icons/MailInboxAll/20_r.svg", + "staticwebassets/icons/MailInboxAll/24_f.svg", + "staticwebassets/icons/MailInboxAll/24_r.svg", + "staticwebassets/icons/MailInboxArrowDown/16_f.svg", + "staticwebassets/icons/MailInboxArrowDown/16_r.svg", + "staticwebassets/icons/MailInboxArrowDown/20_f.svg", + "staticwebassets/icons/MailInboxArrowDown/20_r.svg", + "staticwebassets/icons/MailInboxArrowRight/20_f.svg", + "staticwebassets/icons/MailInboxArrowRight/20_r.svg", + "staticwebassets/icons/MailInboxArrowRight/24_f.svg", + "staticwebassets/icons/MailInboxArrowRight/24_r.svg", + "staticwebassets/icons/MailInboxArrowUp/20_f.svg", + "staticwebassets/icons/MailInboxArrowUp/20_r.svg", + "staticwebassets/icons/MailInboxArrowUp/24_f.svg", + "staticwebassets/icons/MailInboxArrowUp/24_r.svg", + "staticwebassets/icons/MailInboxCheckmark/16_f.svg", + "staticwebassets/icons/MailInboxCheckmark/16_r.svg", + "staticwebassets/icons/MailInboxCheckmark/20_f.svg", + "staticwebassets/icons/MailInboxCheckmark/20_r.svg", + "staticwebassets/icons/MailInboxCheckmark/24_f.svg", + "staticwebassets/icons/MailInboxCheckmark/24_r.svg", + "staticwebassets/icons/MailInboxCheckmark/28_f.svg", + "staticwebassets/icons/MailInboxCheckmark/28_r.svg", + "staticwebassets/icons/MailInboxDismiss/16_f.svg", + "staticwebassets/icons/MailInboxDismiss/16_r.svg", + "staticwebassets/icons/MailInboxDismiss/20_f.svg", + "staticwebassets/icons/MailInboxDismiss/20_r.svg", + "staticwebassets/icons/MailInboxDismiss/24_f.svg", + "staticwebassets/icons/MailInboxDismiss/24_r.svg", + "staticwebassets/icons/MailInboxDismiss/28_f.svg", + "staticwebassets/icons/MailInboxDismiss/28_r.svg", + "staticwebassets/icons/MailLink/20_f.svg", + "staticwebassets/icons/MailLink/20_r.svg", + "staticwebassets/icons/MailLink/24_f.svg", + "staticwebassets/icons/MailLink/24_r.svg", + "staticwebassets/icons/MailList/16_f.svg", + "staticwebassets/icons/MailList/16_r.svg", + "staticwebassets/icons/MailList/20_f.svg", + "staticwebassets/icons/MailList/20_r.svg", + "staticwebassets/icons/MailList/24_f.svg", + "staticwebassets/icons/MailList/24_r.svg", + "staticwebassets/icons/MailList/28_f.svg", + "staticwebassets/icons/MailList/28_r.svg", + "staticwebassets/icons/MailMultiple/16_f.svg", + "staticwebassets/icons/MailMultiple/16_r.svg", + "staticwebassets/icons/MailMultiple/20_f.svg", + "staticwebassets/icons/MailMultiple/20_r.svg", + "staticwebassets/icons/MailMultiple/24_f.svg", + "staticwebassets/icons/MailMultiple/24_r.svg", + "staticwebassets/icons/MailMultiple/28_f.svg", + "staticwebassets/icons/MailMultiple/28_r.svg", + "staticwebassets/icons/MailOff/20_f.svg", + "staticwebassets/icons/MailOff/20_r.svg", + "staticwebassets/icons/MailOff/24_f.svg", + "staticwebassets/icons/MailOff/24_r.svg", + "staticwebassets/icons/MailOpenPerson/16_f.svg", + "staticwebassets/icons/MailOpenPerson/16_r.svg", + "staticwebassets/icons/MailOpenPerson/20_f.svg", + "staticwebassets/icons/MailOpenPerson/20_r.svg", + "staticwebassets/icons/MailOpenPerson/24_f.svg", + "staticwebassets/icons/MailOpenPerson/24_r.svg", + "staticwebassets/icons/MailPause/16_f.svg", + "staticwebassets/icons/MailPause/16_r.svg", + "staticwebassets/icons/MailPause/20_f.svg", + "staticwebassets/icons/MailPause/20_r.svg", + "staticwebassets/icons/MailProhibited/16_f.svg", + "staticwebassets/icons/MailProhibited/16_r.svg", + "staticwebassets/icons/MailProhibited/20_f.svg", + "staticwebassets/icons/MailProhibited/20_r.svg", + "staticwebassets/icons/MailProhibited/24_f.svg", + "staticwebassets/icons/MailProhibited/24_r.svg", + "staticwebassets/icons/MailProhibited/28_f.svg", + "staticwebassets/icons/MailProhibited/28_r.svg", + "staticwebassets/icons/MailRead/16_f.svg", + "staticwebassets/icons/MailRead/16_r.svg", + "staticwebassets/icons/MailRead/20_f.svg", + "staticwebassets/icons/MailRead/20_r.svg", + "staticwebassets/icons/MailRead/24_f.svg", + "staticwebassets/icons/MailRead/24_r.svg", + "staticwebassets/icons/MailRead/28_f.svg", + "staticwebassets/icons/MailRead/28_r.svg", + "staticwebassets/icons/MailRead/48_f.svg", + "staticwebassets/icons/MailRead/48_r.svg", + "staticwebassets/icons/MailReadMultiple/16_f.svg", + "staticwebassets/icons/MailReadMultiple/16_r.svg", + "staticwebassets/icons/MailReadMultiple/20_f.svg", + "staticwebassets/icons/MailReadMultiple/20_r.svg", + "staticwebassets/icons/MailReadMultiple/24_f.svg", + "staticwebassets/icons/MailReadMultiple/24_r.svg", + "staticwebassets/icons/MailReadMultiple/28_f.svg", + "staticwebassets/icons/MailReadMultiple/28_r.svg", + "staticwebassets/icons/MailReadMultiple/32_f.svg", + "staticwebassets/icons/MailReadMultiple/32_r.svg", + "staticwebassets/icons/MailSettings/16_f.svg", + "staticwebassets/icons/MailSettings/16_r.svg", + "staticwebassets/icons/MailSettings/20_f.svg", + "staticwebassets/icons/MailSettings/20_r.svg", + "staticwebassets/icons/MailShield/16_f.svg", + "staticwebassets/icons/MailShield/16_r.svg", + "staticwebassets/icons/MailShield/20_f.svg", + "staticwebassets/icons/MailShield/20_r.svg", + "staticwebassets/icons/MailTemplate/16_f.svg", + "staticwebassets/icons/MailTemplate/16_r.svg", + "staticwebassets/icons/MailTemplate/20_f.svg", + "staticwebassets/icons/MailTemplate/20_r.svg", + "staticwebassets/icons/MailTemplate/24_f.svg", + "staticwebassets/icons/MailTemplate/24_r.svg", + "staticwebassets/icons/MailUnread/12_f.svg", + "staticwebassets/icons/MailUnread/12_r.svg", + "staticwebassets/icons/MailUnread/16_f.svg", + "staticwebassets/icons/MailUnread/16_r.svg", + "staticwebassets/icons/MailUnread/20_f.svg", + "staticwebassets/icons/MailUnread/20_r.svg", + "staticwebassets/icons/MailUnread/24_f.svg", + "staticwebassets/icons/MailUnread/24_r.svg", + "staticwebassets/icons/MailUnread/28_f.svg", + "staticwebassets/icons/MailUnread/28_r.svg", + "staticwebassets/icons/MailUnread/48_f.svg", + "staticwebassets/icons/MailUnread/48_r.svg", + "staticwebassets/icons/MailWarning/16_f.svg", + "staticwebassets/icons/MailWarning/16_r.svg", + "staticwebassets/icons/MailWarning/20_f.svg", + "staticwebassets/icons/MailWarning/20_r.svg", + "staticwebassets/icons/MailWarning/24_f.svg", + "staticwebassets/icons/MailWarning/24_r.svg", + "staticwebassets/icons/Map/16_f.svg", + "staticwebassets/icons/Map/16_r.svg", + "staticwebassets/icons/Map/20_f.svg", + "staticwebassets/icons/Map/20_r.svg", + "staticwebassets/icons/Map/24_f.svg", + "staticwebassets/icons/Map/24_r.svg", + "staticwebassets/icons/MapDrive/16_f.svg", + "staticwebassets/icons/MapDrive/16_r.svg", + "staticwebassets/icons/MapDrive/20_f.svg", + "staticwebassets/icons/MapDrive/20_r.svg", + "staticwebassets/icons/MapDrive/24_f.svg", + "staticwebassets/icons/MapDrive/24_r.svg", + "staticwebassets/icons/Markdown/20_f.svg", + "staticwebassets/icons/Markdown/20_r.svg", + "staticwebassets/icons/MatchAppLayout/20_f.svg", + "staticwebassets/icons/MatchAppLayout/20_r.svg", + "staticwebassets/icons/MatchAppLayout/24_f.svg", + "staticwebassets/icons/MatchAppLayout/24_r.svg", + "staticwebassets/icons/MathFormatLinear/20_f.svg", + "staticwebassets/icons/MathFormatLinear/20_r.svg", + "staticwebassets/icons/MathFormatLinear/24_f.svg", + "staticwebassets/icons/MathFormatLinear/24_r.svg", + "staticwebassets/icons/MathFormatProfessional/16_f.svg", + "staticwebassets/icons/MathFormatProfessional/16_r.svg", + "staticwebassets/icons/MathFormatProfessional/20_f.svg", + "staticwebassets/icons/MathFormatProfessional/20_r.svg", + "staticwebassets/icons/MathFormatProfessional/24_f.svg", + "staticwebassets/icons/MathFormatProfessional/24_r.svg", + "staticwebassets/icons/MathFormula/16_f.svg", + "staticwebassets/icons/MathFormula/16_r.svg", + "staticwebassets/icons/MathFormula/20_f.svg", + "staticwebassets/icons/MathFormula/20_r.svg", + "staticwebassets/icons/MathFormula/24_f.svg", + "staticwebassets/icons/MathFormula/24_r.svg", + "staticwebassets/icons/MathFormula/32_f.svg", + "staticwebassets/icons/MathFormula/32_r.svg", + "staticwebassets/icons/MathSymbols/16_f.svg", + "staticwebassets/icons/MathSymbols/16_r.svg", + "staticwebassets/icons/MathSymbols/20_f.svg", + "staticwebassets/icons/MathSymbols/20_r.svg", + "staticwebassets/icons/MathSymbols/24_f.svg", + "staticwebassets/icons/MathSymbols/24_r.svg", + "staticwebassets/icons/MathSymbols/28_f.svg", + "staticwebassets/icons/MathSymbols/28_r.svg", + "staticwebassets/icons/MathSymbols/32_f.svg", + "staticwebassets/icons/MathSymbols/32_r.svg", + "staticwebassets/icons/MathSymbols/48_f.svg", + "staticwebassets/icons/MathSymbols/48_r.svg", + "staticwebassets/icons/Maximize/16_f.svg", + "staticwebassets/icons/Maximize/16_r.svg", + "staticwebassets/icons/Maximize/20_f.svg", + "staticwebassets/icons/Maximize/20_r.svg", + "staticwebassets/icons/Maximize/24_f.svg", + "staticwebassets/icons/Maximize/24_r.svg", + "staticwebassets/icons/Maximize/28_f.svg", + "staticwebassets/icons/Maximize/28_r.svg", + "staticwebassets/icons/Maximize/48_f.svg", + "staticwebassets/icons/Maximize/48_r.svg", + "staticwebassets/icons/MeetNow/16_f.svg", + "staticwebassets/icons/MeetNow/16_r.svg", + "staticwebassets/icons/MeetNow/20_f.svg", + "staticwebassets/icons/MeetNow/20_r.svg", + "staticwebassets/icons/MeetNow/24_f.svg", + "staticwebassets/icons/MeetNow/24_r.svg", + "staticwebassets/icons/MeetNow/28_f.svg", + "staticwebassets/icons/MeetNow/28_r.svg", + "staticwebassets/icons/MeetNow/32_f.svg", + "staticwebassets/icons/MeetNow/32_r.svg", + "staticwebassets/icons/MeetNow/48_f.svg", + "staticwebassets/icons/MeetNow/48_r.svg", + "staticwebassets/icons/Megaphone/16_f.svg", + "staticwebassets/icons/Megaphone/16_r.svg", + "staticwebassets/icons/Megaphone/20_f.svg", + "staticwebassets/icons/Megaphone/20_r.svg", + "staticwebassets/icons/Megaphone/24_f.svg", + "staticwebassets/icons/Megaphone/24_r.svg", + "staticwebassets/icons/Megaphone/28_f.svg", + "staticwebassets/icons/Megaphone/28_r.svg", + "staticwebassets/icons/MegaphoneCircle/20_f.svg", + "staticwebassets/icons/MegaphoneCircle/20_r.svg", + "staticwebassets/icons/MegaphoneCircle/24_f.svg", + "staticwebassets/icons/MegaphoneCircle/24_r.svg", + "staticwebassets/icons/MegaphoneLoud/16_f.svg", + "staticwebassets/icons/MegaphoneLoud/16_r.svg", + "staticwebassets/icons/MegaphoneLoud/20_f.svg", + "staticwebassets/icons/MegaphoneLoud/20_r.svg", + "staticwebassets/icons/MegaphoneLoud/24_f.svg", + "staticwebassets/icons/MegaphoneLoud/24_r.svg", + "staticwebassets/icons/MegaphoneLoud/28_f.svg", + "staticwebassets/icons/MegaphoneLoud/28_r.svg", + "staticwebassets/icons/MegaphoneLoud/32_f.svg", + "staticwebassets/icons/MegaphoneLoud/32_r.svg", + "staticwebassets/icons/MegaphoneOff/16_f.svg", + "staticwebassets/icons/MegaphoneOff/16_r.svg", + "staticwebassets/icons/MegaphoneOff/20_f.svg", + "staticwebassets/icons/MegaphoneOff/20_r.svg", + "staticwebassets/icons/MegaphoneOff/24_f.svg", + "staticwebassets/icons/MegaphoneOff/24_r.svg", + "staticwebassets/icons/MegaphoneOff/28_f.svg", + "staticwebassets/icons/MegaphoneOff/28_r.svg", + "staticwebassets/icons/Memory/16_f.svg", + "staticwebassets/icons/Memory/16_r.svg", + "staticwebassets/icons/Mention/12_f.svg", + "staticwebassets/icons/Mention/12_r.svg", + "staticwebassets/icons/Mention/16_f.svg", + "staticwebassets/icons/Mention/16_r.svg", + "staticwebassets/icons/Mention/20_f.svg", + "staticwebassets/icons/Mention/20_r.svg", + "staticwebassets/icons/Mention/24_f.svg", + "staticwebassets/icons/Mention/24_r.svg", + "staticwebassets/icons/Mention/32_f.svg", + "staticwebassets/icons/Mention/32_r.svg", + "staticwebassets/icons/Mention/48_f.svg", + "staticwebassets/icons/Mention/48_r.svg", + "staticwebassets/icons/MentionArrowDown/20_f.svg", + "staticwebassets/icons/MentionArrowDown/20_r.svg", + "staticwebassets/icons/MentionBrackets/20_f.svg", + "staticwebassets/icons/MentionBrackets/20_r.svg", + "staticwebassets/icons/Merge/16_f.svg", + "staticwebassets/icons/Merge/16_r.svg", + "staticwebassets/icons/Merge/20_f.svg", + "staticwebassets/icons/Merge/20_r.svg", + "staticwebassets/icons/Merge/24_f.svg", + "staticwebassets/icons/Merge/24_r.svg", + "staticwebassets/icons/Mic/16_f.svg", + "staticwebassets/icons/Mic/16_r.svg", + "staticwebassets/icons/Mic/20_f.svg", + "staticwebassets/icons/Mic/20_r.svg", + "staticwebassets/icons/Mic/24_f.svg", + "staticwebassets/icons/Mic/24_r.svg", + "staticwebassets/icons/Mic/28_f.svg", + "staticwebassets/icons/Mic/28_r.svg", + "staticwebassets/icons/Mic/32_f.svg", + "staticwebassets/icons/Mic/32_r.svg", + "staticwebassets/icons/Mic/48_f.svg", + "staticwebassets/icons/Mic/48_r.svg", + "staticwebassets/icons/MicOff/12_f.svg", + "staticwebassets/icons/MicOff/12_r.svg", + "staticwebassets/icons/MicOff/16_f.svg", + "staticwebassets/icons/MicOff/16_r.svg", + "staticwebassets/icons/MicOff/20_f.svg", + "staticwebassets/icons/MicOff/20_r.svg", + "staticwebassets/icons/MicOff/24_f.svg", + "staticwebassets/icons/MicOff/24_r.svg", + "staticwebassets/icons/MicOff/28_f.svg", + "staticwebassets/icons/MicOff/28_r.svg", + "staticwebassets/icons/MicOff/32_f.svg", + "staticwebassets/icons/MicOff/32_r.svg", + "staticwebassets/icons/MicOff/48_f.svg", + "staticwebassets/icons/MicOff/48_r.svg", + "staticwebassets/icons/MicProhibited/16_f.svg", + "staticwebassets/icons/MicProhibited/16_r.svg", + "staticwebassets/icons/MicProhibited/20_f.svg", + "staticwebassets/icons/MicProhibited/20_r.svg", + "staticwebassets/icons/MicProhibited/24_f.svg", + "staticwebassets/icons/MicProhibited/24_r.svg", + "staticwebassets/icons/MicProhibited/28_f.svg", + "staticwebassets/icons/MicProhibited/28_r.svg", + "staticwebassets/icons/MicProhibited/48_f.svg", + "staticwebassets/icons/MicProhibited/48_r.svg", + "staticwebassets/icons/MicPulse/16_f.svg", + "staticwebassets/icons/MicPulse/16_r.svg", + "staticwebassets/icons/MicPulse/20_f.svg", + "staticwebassets/icons/MicPulse/20_r.svg", + "staticwebassets/icons/MicPulse/24_f.svg", + "staticwebassets/icons/MicPulse/24_r.svg", + "staticwebassets/icons/MicPulse/28_f.svg", + "staticwebassets/icons/MicPulse/28_r.svg", + "staticwebassets/icons/MicPulse/32_f.svg", + "staticwebassets/icons/MicPulse/32_r.svg", + "staticwebassets/icons/MicPulse/48_f.svg", + "staticwebassets/icons/MicPulse/48_r.svg", + "staticwebassets/icons/MicPulseOff/16_f.svg", + "staticwebassets/icons/MicPulseOff/16_r.svg", + "staticwebassets/icons/MicPulseOff/20_f.svg", + "staticwebassets/icons/MicPulseOff/20_r.svg", + "staticwebassets/icons/MicPulseOff/24_f.svg", + "staticwebassets/icons/MicPulseOff/24_r.svg", + "staticwebassets/icons/MicPulseOff/28_f.svg", + "staticwebassets/icons/MicPulseOff/28_r.svg", + "staticwebassets/icons/MicPulseOff/32_f.svg", + "staticwebassets/icons/MicPulseOff/32_r.svg", + "staticwebassets/icons/MicPulseOff/48_f.svg", + "staticwebassets/icons/MicPulseOff/48_r.svg", + "staticwebassets/icons/MicSettings/20_f.svg", + "staticwebassets/icons/MicSettings/20_r.svg", + "staticwebassets/icons/MicSettings/24_f.svg", + "staticwebassets/icons/MicSettings/24_r.svg", + "staticwebassets/icons/MicSparkle/16_f.svg", + "staticwebassets/icons/MicSparkle/16_r.svg", + "staticwebassets/icons/MicSparkle/20_f.svg", + "staticwebassets/icons/MicSparkle/20_r.svg", + "staticwebassets/icons/MicSparkle/24_f.svg", + "staticwebassets/icons/MicSparkle/24_r.svg", + "staticwebassets/icons/MicSync/20_f.svg", + "staticwebassets/icons/MicSync/20_r.svg", + "staticwebassets/icons/Microscope/20_f.svg", + "staticwebassets/icons/Microscope/20_r.svg", + "staticwebassets/icons/Microscope/24_f.svg", + "staticwebassets/icons/Microscope/24_r.svg", + "staticwebassets/icons/Midi/20_f.svg", + "staticwebassets/icons/Midi/20_r.svg", + "staticwebassets/icons/Midi/24_f.svg", + "staticwebassets/icons/Midi/24_r.svg", + "staticwebassets/icons/MobileOptimized/20_f.svg", + "staticwebassets/icons/MobileOptimized/20_r.svg", + "staticwebassets/icons/MobileOptimized/24_f.svg", + "staticwebassets/icons/MobileOptimized/24_r.svg", + "staticwebassets/icons/Mold/20_f.svg", + "staticwebassets/icons/Mold/20_r.svg", + "staticwebassets/icons/Mold/24_f.svg", + "staticwebassets/icons/Mold/24_r.svg", + "staticwebassets/icons/Mold/28_f.svg", + "staticwebassets/icons/Mold/28_r.svg", + "staticwebassets/icons/Molecule/16_f.svg", + "staticwebassets/icons/Molecule/16_r.svg", + "staticwebassets/icons/Molecule/20_f.svg", + "staticwebassets/icons/Molecule/20_r.svg", + "staticwebassets/icons/Molecule/24_f.svg", + "staticwebassets/icons/Molecule/24_r.svg", + "staticwebassets/icons/Molecule/28_f.svg", + "staticwebassets/icons/Molecule/28_r.svg", + "staticwebassets/icons/Molecule/32_f.svg", + "staticwebassets/icons/Molecule/32_r.svg", + "staticwebassets/icons/Molecule/48_f.svg", + "staticwebassets/icons/Molecule/48_r.svg", + "staticwebassets/icons/Money/16_f.svg", + "staticwebassets/icons/Money/16_r.svg", + "staticwebassets/icons/Money/20_f.svg", + "staticwebassets/icons/Money/20_r.svg", + "staticwebassets/icons/Money/24_f.svg", + "staticwebassets/icons/Money/24_r.svg", + "staticwebassets/icons/MoneyCalculator/20_f.svg", + "staticwebassets/icons/MoneyCalculator/20_r.svg", + "staticwebassets/icons/MoneyCalculator/24_f.svg", + "staticwebassets/icons/MoneyCalculator/24_r.svg", + "staticwebassets/icons/MoneyDismiss/20_f.svg", + "staticwebassets/icons/MoneyDismiss/20_r.svg", + "staticwebassets/icons/MoneyDismiss/24_f.svg", + "staticwebassets/icons/MoneyDismiss/24_r.svg", + "staticwebassets/icons/MoneyHand/20_f.svg", + "staticwebassets/icons/MoneyHand/20_r.svg", + "staticwebassets/icons/MoneyHand/24_f.svg", + "staticwebassets/icons/MoneyHand/24_r.svg", + "staticwebassets/icons/MoneyOff/20_f.svg", + "staticwebassets/icons/MoneyOff/20_r.svg", + "staticwebassets/icons/MoneyOff/24_f.svg", + "staticwebassets/icons/MoneyOff/24_r.svg", + "staticwebassets/icons/MoneySettings/20_f.svg", + "staticwebassets/icons/MoneySettings/20_r.svg", + "staticwebassets/icons/MoreCircle/16_f.svg", + "staticwebassets/icons/MoreCircle/16_r.svg", + "staticwebassets/icons/MoreCircle/20_f.svg", + "staticwebassets/icons/MoreCircle/20_r.svg", + "staticwebassets/icons/MoreCircle/24_f.svg", + "staticwebassets/icons/MoreCircle/24_r.svg", + "staticwebassets/icons/MoreCircle/28_f.svg", + "staticwebassets/icons/MoreCircle/28_r.svg", + "staticwebassets/icons/MoreCircle/32_f.svg", + "staticwebassets/icons/MoreCircle/32_r.svg", + "staticwebassets/icons/MoreCircle/48_f.svg", + "staticwebassets/icons/MoreCircle/48_r.svg", + "staticwebassets/icons/MoreHorizontal/16_f.svg", + "staticwebassets/icons/MoreHorizontal/16_r.svg", + "staticwebassets/icons/MoreHorizontal/20_f.svg", + "staticwebassets/icons/MoreHorizontal/20_r.svg", + "staticwebassets/icons/MoreHorizontal/24_f.svg", + "staticwebassets/icons/MoreHorizontal/24_r.svg", + "staticwebassets/icons/MoreHorizontal/28_f.svg", + "staticwebassets/icons/MoreHorizontal/28_r.svg", + "staticwebassets/icons/MoreHorizontal/32_f.svg", + "staticwebassets/icons/MoreHorizontal/32_r.svg", + "staticwebassets/icons/MoreHorizontal/48_f.svg", + "staticwebassets/icons/MoreHorizontal/48_r.svg", + "staticwebassets/icons/MoreVertical/16_f.svg", + "staticwebassets/icons/MoreVertical/16_r.svg", + "staticwebassets/icons/MoreVertical/20_f.svg", + "staticwebassets/icons/MoreVertical/20_r.svg", + "staticwebassets/icons/MoreVertical/24_f.svg", + "staticwebassets/icons/MoreVertical/24_r.svg", + "staticwebassets/icons/MoreVertical/28_f.svg", + "staticwebassets/icons/MoreVertical/28_r.svg", + "staticwebassets/icons/MoreVertical/32_f.svg", + "staticwebassets/icons/MoreVertical/32_r.svg", + "staticwebassets/icons/MoreVertical/48_f.svg", + "staticwebassets/icons/MoreVertical/48_r.svg", + "staticwebassets/icons/MountainLocationBottom/20_f.svg", + "staticwebassets/icons/MountainLocationBottom/20_r.svg", + "staticwebassets/icons/MountainLocationBottom/24_f.svg", + "staticwebassets/icons/MountainLocationBottom/24_r.svg", + "staticwebassets/icons/MountainLocationBottom/28_f.svg", + "staticwebassets/icons/MountainLocationBottom/28_r.svg", + "staticwebassets/icons/MountainLocationTop/20_f.svg", + "staticwebassets/icons/MountainLocationTop/20_r.svg", + "staticwebassets/icons/MountainLocationTop/24_f.svg", + "staticwebassets/icons/MountainLocationTop/24_r.svg", + "staticwebassets/icons/MountainLocationTop/28_f.svg", + "staticwebassets/icons/MountainLocationTop/28_r.svg", + "staticwebassets/icons/MountainTrail/20_f.svg", + "staticwebassets/icons/MountainTrail/20_r.svg", + "staticwebassets/icons/MountainTrail/24_f.svg", + "staticwebassets/icons/MountainTrail/24_r.svg", + "staticwebassets/icons/MountainTrail/28_f.svg", + "staticwebassets/icons/MountainTrail/28_r.svg", + "staticwebassets/icons/MoviesandTV/16_f.svg", + "staticwebassets/icons/MoviesandTV/16_r.svg", + "staticwebassets/icons/MoviesandTV/20_f.svg", + "staticwebassets/icons/MoviesandTV/20_r.svg", + "staticwebassets/icons/MoviesandTV/24_f.svg", + "staticwebassets/icons/MoviesandTV/24_r.svg", + "staticwebassets/icons/Multiplier1_2x/20_f.svg", + "staticwebassets/icons/Multiplier1_2x/20_r.svg", + "staticwebassets/icons/Multiplier1_2x/24_f.svg", + "staticwebassets/icons/Multiplier1_2x/24_r.svg", + "staticwebassets/icons/Multiplier1_2x/28_f.svg", + "staticwebassets/icons/Multiplier1_2x/28_r.svg", + "staticwebassets/icons/Multiplier1_2x/32_f.svg", + "staticwebassets/icons/Multiplier1_2x/32_r.svg", + "staticwebassets/icons/Multiplier1_2x/48_f.svg", + "staticwebassets/icons/Multiplier1_2x/48_r.svg", + "staticwebassets/icons/Multiplier1_5x/20_f.svg", + "staticwebassets/icons/Multiplier1_5x/20_r.svg", + "staticwebassets/icons/Multiplier1_5x/24_f.svg", + "staticwebassets/icons/Multiplier1_5x/24_r.svg", + "staticwebassets/icons/Multiplier1_5x/28_f.svg", + "staticwebassets/icons/Multiplier1_5x/28_r.svg", + "staticwebassets/icons/Multiplier1_5x/32_f.svg", + "staticwebassets/icons/Multiplier1_5x/32_r.svg", + "staticwebassets/icons/Multiplier1_5x/48_f.svg", + "staticwebassets/icons/Multiplier1_5x/48_r.svg", + "staticwebassets/icons/Multiplier1_8x/20_f.svg", + "staticwebassets/icons/Multiplier1_8x/20_r.svg", + "staticwebassets/icons/Multiplier1_8x/24_f.svg", + "staticwebassets/icons/Multiplier1_8x/24_r.svg", + "staticwebassets/icons/Multiplier1_8x/28_f.svg", + "staticwebassets/icons/Multiplier1_8x/28_r.svg", + "staticwebassets/icons/Multiplier1_8x/32_f.svg", + "staticwebassets/icons/Multiplier1_8x/32_r.svg", + "staticwebassets/icons/Multiplier1_8x/48_f.svg", + "staticwebassets/icons/Multiplier1_8x/48_r.svg", + "staticwebassets/icons/Multiplier1x/20_f.svg", + "staticwebassets/icons/Multiplier1x/20_r.svg", + "staticwebassets/icons/Multiplier1x/24_f.svg", + "staticwebassets/icons/Multiplier1x/24_r.svg", + "staticwebassets/icons/Multiplier1x/28_f.svg", + "staticwebassets/icons/Multiplier1x/28_r.svg", + "staticwebassets/icons/Multiplier1x/32_f.svg", + "staticwebassets/icons/Multiplier1x/32_r.svg", + "staticwebassets/icons/Multiplier1x/48_f.svg", + "staticwebassets/icons/Multiplier1x/48_r.svg", + "staticwebassets/icons/Multiplier2x/20_f.svg", + "staticwebassets/icons/Multiplier2x/20_r.svg", + "staticwebassets/icons/Multiplier2x/24_f.svg", + "staticwebassets/icons/Multiplier2x/24_r.svg", + "staticwebassets/icons/Multiplier2x/28_f.svg", + "staticwebassets/icons/Multiplier2x/28_r.svg", + "staticwebassets/icons/Multiplier2x/32_f.svg", + "staticwebassets/icons/Multiplier2x/32_r.svg", + "staticwebassets/icons/Multiplier2x/48_f.svg", + "staticwebassets/icons/Multiplier2x/48_r.svg", + "staticwebassets/icons/Multiplier_5x/20_f.svg", + "staticwebassets/icons/Multiplier_5x/20_r.svg", + "staticwebassets/icons/Multiplier_5x/24_f.svg", + "staticwebassets/icons/Multiplier_5x/24_r.svg", + "staticwebassets/icons/Multiplier_5x/28_f.svg", + "staticwebassets/icons/Multiplier_5x/28_r.svg", + "staticwebassets/icons/Multiplier_5x/32_f.svg", + "staticwebassets/icons/Multiplier_5x/32_r.svg", + "staticwebassets/icons/Multiplier_5x/48_f.svg", + "staticwebassets/icons/Multiplier_5x/48_r.svg", + "staticwebassets/icons/MultiselectLTR/16_f.svg", + "staticwebassets/icons/MultiselectLTR/16_r.svg", + "staticwebassets/icons/MultiselectLTR/20_f.svg", + "staticwebassets/icons/MultiselectLTR/20_r.svg", + "staticwebassets/icons/MultiselectLTR/24_f.svg", + "staticwebassets/icons/MultiselectLTR/24_r.svg", + "staticwebassets/icons/MultiselectRTL/16_f.svg", + "staticwebassets/icons/MultiselectRTL/16_r.svg", + "staticwebassets/icons/MultiselectRTL/20_f.svg", + "staticwebassets/icons/MultiselectRTL/20_r.svg", + "staticwebassets/icons/MultiselectRTL/24_f.svg", + "staticwebassets/icons/MultiselectRTL/24_r.svg", + "staticwebassets/icons/MusicNote1/20_f.svg", + "staticwebassets/icons/MusicNote1/20_r.svg", + "staticwebassets/icons/MusicNote1/24_f.svg", + "staticwebassets/icons/MusicNote1/24_r.svg", + "staticwebassets/icons/MusicNote2/16_f.svg", + "staticwebassets/icons/MusicNote2/16_r.svg", + "staticwebassets/icons/MusicNote2/20_f.svg", + "staticwebassets/icons/MusicNote2/20_r.svg", + "staticwebassets/icons/MusicNote2/24_f.svg", + "staticwebassets/icons/MusicNote2/24_r.svg", + "staticwebassets/icons/MusicNote2Play/20_f.svg", + "staticwebassets/icons/MusicNote2Play/20_r.svg", + "staticwebassets/icons/MusicNoteOff1/20_f.svg", + "staticwebassets/icons/MusicNoteOff1/20_r.svg", + "staticwebassets/icons/MusicNoteOff1/24_f.svg", + "staticwebassets/icons/MusicNoteOff1/24_r.svg", + "staticwebassets/icons/MusicNoteOff2/16_f.svg", + "staticwebassets/icons/MusicNoteOff2/16_r.svg", + "staticwebassets/icons/MusicNoteOff2/20_f.svg", + "staticwebassets/icons/MusicNoteOff2/20_r.svg", + "staticwebassets/icons/MusicNoteOff2/24_f.svg", + "staticwebassets/icons/MusicNoteOff2/24_r.svg", + "staticwebassets/icons/MyLocation/12_f.svg", + "staticwebassets/icons/MyLocation/12_r.svg", + "staticwebassets/icons/MyLocation/16_f.svg", + "staticwebassets/icons/MyLocation/16_r.svg", + "staticwebassets/icons/MyLocation/20_f.svg", + "staticwebassets/icons/MyLocation/20_r.svg", + "staticwebassets/icons/MyLocation/24_f.svg", + "staticwebassets/icons/MyLocation/24_r.svg", + "staticwebassets/icons/Navigation/16_f.svg", + "staticwebassets/icons/Navigation/16_r.svg", + "staticwebassets/icons/Navigation/20_f.svg", + "staticwebassets/icons/Navigation/20_r.svg", + "staticwebassets/icons/Navigation/24_f.svg", + "staticwebassets/icons/Navigation/24_r.svg", + "staticwebassets/icons/NavigationLocationTarget/20_f.svg", + "staticwebassets/icons/NavigationLocationTarget/20_r.svg", + "staticwebassets/icons/NavigationPlay/20_f.svg", + "staticwebassets/icons/NavigationPlay/20_r.svg", + "staticwebassets/icons/NavigationUnread/20_f.svg", + "staticwebassets/icons/NavigationUnread/20_r.svg", + "staticwebassets/icons/NavigationUnread/24_f.svg", + "staticwebassets/icons/NavigationUnread/24_r.svg", + "staticwebassets/icons/NetworkAdapter/16_f.svg", + "staticwebassets/icons/NetworkAdapter/16_r.svg", + "staticwebassets/icons/NetworkCheck/20_f.svg", + "staticwebassets/icons/NetworkCheck/20_r.svg", + "staticwebassets/icons/NetworkCheck/24_f.svg", + "staticwebassets/icons/NetworkCheck/24_r.svg", + "staticwebassets/icons/New/16_f.svg", + "staticwebassets/icons/New/16_r.svg", + "staticwebassets/icons/New/20_f.svg", + "staticwebassets/icons/New/20_r.svg", + "staticwebassets/icons/New/24_f.svg", + "staticwebassets/icons/New/24_r.svg", + "staticwebassets/icons/News/16_f.svg", + "staticwebassets/icons/News/16_r.svg", + "staticwebassets/icons/News/20_f.svg", + "staticwebassets/icons/News/20_r.svg", + "staticwebassets/icons/News/24_f.svg", + "staticwebassets/icons/News/24_r.svg", + "staticwebassets/icons/News/28_f.svg", + "staticwebassets/icons/News/28_r.svg", + "staticwebassets/icons/Next/16_f.svg", + "staticwebassets/icons/Next/16_r.svg", + "staticwebassets/icons/Next/20_f.svg", + "staticwebassets/icons/Next/20_r.svg", + "staticwebassets/icons/Next/24_f.svg", + "staticwebassets/icons/Next/24_r.svg", + "staticwebassets/icons/Next/28_f.svg", + "staticwebassets/icons/Next/28_r.svg", + "staticwebassets/icons/Next/32_f.svg", + "staticwebassets/icons/Next/32_r.svg", + "staticwebassets/icons/Next/48_f.svg", + "staticwebassets/icons/Next/48_r.svg", + "staticwebassets/icons/Note/16_f.svg", + "staticwebassets/icons/Note/16_r.svg", + "staticwebassets/icons/Note/20_f.svg", + "staticwebassets/icons/Note/20_r.svg", + "staticwebassets/icons/Note/24_f.svg", + "staticwebassets/icons/Note/24_r.svg", + "staticwebassets/icons/Note/28_f.svg", + "staticwebassets/icons/Note/28_r.svg", + "staticwebassets/icons/Note/48_f.svg", + "staticwebassets/icons/Note/48_r.svg", + "staticwebassets/icons/NoteAdd/16_f.svg", + "staticwebassets/icons/NoteAdd/16_r.svg", + "staticwebassets/icons/NoteAdd/20_f.svg", + "staticwebassets/icons/NoteAdd/20_r.svg", + "staticwebassets/icons/NoteAdd/24_f.svg", + "staticwebassets/icons/NoteAdd/24_r.svg", + "staticwebassets/icons/NoteAdd/28_f.svg", + "staticwebassets/icons/NoteAdd/28_r.svg", + "staticwebassets/icons/NoteAdd/48_f.svg", + "staticwebassets/icons/NoteAdd/48_r.svg", + "staticwebassets/icons/NoteEdit/20_f.svg", + "staticwebassets/icons/NoteEdit/20_r.svg", + "staticwebassets/icons/NoteEdit/24_f.svg", + "staticwebassets/icons/NoteEdit/24_r.svg", + "staticwebassets/icons/NotePin/16_f.svg", + "staticwebassets/icons/NotePin/16_r.svg", + "staticwebassets/icons/NotePin/20_f.svg", + "staticwebassets/icons/NotePin/20_r.svg", + "staticwebassets/icons/Notebook/16_f.svg", + "staticwebassets/icons/Notebook/16_r.svg", + "staticwebassets/icons/Notebook/20_f.svg", + "staticwebassets/icons/Notebook/20_r.svg", + "staticwebassets/icons/Notebook/24_f.svg", + "staticwebassets/icons/Notebook/24_r.svg", + "staticwebassets/icons/Notebook/32_f.svg", + "staticwebassets/icons/Notebook/32_r.svg", + "staticwebassets/icons/NotebookAdd/20_f.svg", + "staticwebassets/icons/NotebookAdd/20_r.svg", + "staticwebassets/icons/NotebookAdd/24_f.svg", + "staticwebassets/icons/NotebookAdd/24_r.svg", + "staticwebassets/icons/NotebookArrowCurveDown/20_f.svg", + "staticwebassets/icons/NotebookArrowCurveDown/20_r.svg", + "staticwebassets/icons/NotebookError/20_f.svg", + "staticwebassets/icons/NotebookError/20_r.svg", + "staticwebassets/icons/NotebookError/24_f.svg", + "staticwebassets/icons/NotebookError/24_r.svg", + "staticwebassets/icons/NotebookEye/20_f.svg", + "staticwebassets/icons/NotebookEye/20_r.svg", + "staticwebassets/icons/NotebookLightning/20_f.svg", + "staticwebassets/icons/NotebookLightning/20_r.svg", + "staticwebassets/icons/NotebookLightning/24_f.svg", + "staticwebassets/icons/NotebookLightning/24_r.svg", + "staticwebassets/icons/NotebookQuestionMark/20_f.svg", + "staticwebassets/icons/NotebookQuestionMark/20_r.svg", + "staticwebassets/icons/NotebookQuestionMark/24_f.svg", + "staticwebassets/icons/NotebookQuestionMark/24_r.svg", + "staticwebassets/icons/NotebookSection/20_f.svg", + "staticwebassets/icons/NotebookSection/20_r.svg", + "staticwebassets/icons/NotebookSection/24_f.svg", + "staticwebassets/icons/NotebookSection/24_r.svg", + "staticwebassets/icons/NotebookSectionArrowRight/20_f.svg", + "staticwebassets/icons/NotebookSectionArrowRight/20_r.svg", + "staticwebassets/icons/NotebookSectionArrowRight/24_f.svg", + "staticwebassets/icons/NotebookSectionArrowRight/24_r.svg", + "staticwebassets/icons/NotebookSubsection/20_f.svg", + "staticwebassets/icons/NotebookSubsection/20_r.svg", + "staticwebassets/icons/NotebookSubsection/24_f.svg", + "staticwebassets/icons/NotebookSubsection/24_r.svg", + "staticwebassets/icons/NotebookSync/20_f.svg", + "staticwebassets/icons/NotebookSync/20_r.svg", + "staticwebassets/icons/NotebookSync/24_f.svg", + "staticwebassets/icons/NotebookSync/24_r.svg", + "staticwebassets/icons/Notepad/12_f.svg", + "staticwebassets/icons/Notepad/12_r.svg", + "staticwebassets/icons/Notepad/16_f.svg", + "staticwebassets/icons/Notepad/16_r.svg", + "staticwebassets/icons/Notepad/20_f.svg", + "staticwebassets/icons/Notepad/20_r.svg", + "staticwebassets/icons/Notepad/24_f.svg", + "staticwebassets/icons/Notepad/24_r.svg", + "staticwebassets/icons/Notepad/28_f.svg", + "staticwebassets/icons/Notepad/28_r.svg", + "staticwebassets/icons/Notepad/32_f.svg", + "staticwebassets/icons/Notepad/32_r.svg", + "staticwebassets/icons/NotepadEdit/16_f.svg", + "staticwebassets/icons/NotepadEdit/16_r.svg", + "staticwebassets/icons/NotepadEdit/20_f.svg", + "staticwebassets/icons/NotepadEdit/20_r.svg", + "staticwebassets/icons/NotepadPerson/16_f.svg", + "staticwebassets/icons/NotepadPerson/16_r.svg", + "staticwebassets/icons/NotepadPerson/20_f.svg", + "staticwebassets/icons/NotepadPerson/20_r.svg", + "staticwebassets/icons/NotepadPerson/24_f.svg", + "staticwebassets/icons/NotepadPerson/24_r.svg", + "staticwebassets/icons/NumberCircle1/16_f.svg", + "staticwebassets/icons/NumberCircle1/16_r.svg", + "staticwebassets/icons/NumberCircle1/20_f.svg", + "staticwebassets/icons/NumberCircle1/20_r.svg", + "staticwebassets/icons/NumberCircle1/24_f.svg", + "staticwebassets/icons/NumberCircle1/24_r.svg", + "staticwebassets/icons/NumberCircle1/28_f.svg", + "staticwebassets/icons/NumberCircle1/28_r.svg", + "staticwebassets/icons/NumberCircle1/32_f.svg", + "staticwebassets/icons/NumberCircle1/32_r.svg", + "staticwebassets/icons/NumberCircle1/48_f.svg", + "staticwebassets/icons/NumberCircle1/48_r.svg", + "staticwebassets/icons/NumberCircle2/16_f.svg", + "staticwebassets/icons/NumberCircle2/16_r.svg", + "staticwebassets/icons/NumberCircle2/20_f.svg", + "staticwebassets/icons/NumberCircle2/20_r.svg", + "staticwebassets/icons/NumberCircle2/24_f.svg", + "staticwebassets/icons/NumberCircle2/24_r.svg", + "staticwebassets/icons/NumberCircle2/28_f.svg", + "staticwebassets/icons/NumberCircle2/28_r.svg", + "staticwebassets/icons/NumberCircle2/32_f.svg", + "staticwebassets/icons/NumberCircle2/32_r.svg", + "staticwebassets/icons/NumberCircle2/48_f.svg", + "staticwebassets/icons/NumberCircle2/48_r.svg", + "staticwebassets/icons/NumberCircle3/16_f.svg", + "staticwebassets/icons/NumberCircle3/16_r.svg", + "staticwebassets/icons/NumberCircle3/20_f.svg", + "staticwebassets/icons/NumberCircle3/20_r.svg", + "staticwebassets/icons/NumberCircle3/24_f.svg", + "staticwebassets/icons/NumberCircle3/24_r.svg", + "staticwebassets/icons/NumberCircle3/28_f.svg", + "staticwebassets/icons/NumberCircle3/28_r.svg", + "staticwebassets/icons/NumberCircle3/32_f.svg", + "staticwebassets/icons/NumberCircle3/32_r.svg", + "staticwebassets/icons/NumberCircle3/48_f.svg", + "staticwebassets/icons/NumberCircle3/48_r.svg", + "staticwebassets/icons/NumberCircle4/16_f.svg", + "staticwebassets/icons/NumberCircle4/16_r.svg", + "staticwebassets/icons/NumberCircle4/20_f.svg", + "staticwebassets/icons/NumberCircle4/20_r.svg", + "staticwebassets/icons/NumberCircle4/24_f.svg", + "staticwebassets/icons/NumberCircle4/24_r.svg", + "staticwebassets/icons/NumberCircle4/28_f.svg", + "staticwebassets/icons/NumberCircle4/28_r.svg", + "staticwebassets/icons/NumberCircle4/32_f.svg", + "staticwebassets/icons/NumberCircle4/32_r.svg", + "staticwebassets/icons/NumberCircle4/48_f.svg", + "staticwebassets/icons/NumberCircle4/48_r.svg", + "staticwebassets/icons/NumberCircle5/16_f.svg", + "staticwebassets/icons/NumberCircle5/16_r.svg", + "staticwebassets/icons/NumberCircle5/20_f.svg", + "staticwebassets/icons/NumberCircle5/20_r.svg", + "staticwebassets/icons/NumberCircle5/24_f.svg", + "staticwebassets/icons/NumberCircle5/24_r.svg", + "staticwebassets/icons/NumberCircle5/28_f.svg", + "staticwebassets/icons/NumberCircle5/28_r.svg", + "staticwebassets/icons/NumberCircle5/32_f.svg", + "staticwebassets/icons/NumberCircle5/32_r.svg", + "staticwebassets/icons/NumberCircle5/48_f.svg", + "staticwebassets/icons/NumberCircle5/48_r.svg", + "staticwebassets/icons/NumberRow/16_f.svg", + "staticwebassets/icons/NumberRow/16_r.svg", + "staticwebassets/icons/NumberRow/20_f.svg", + "staticwebassets/icons/NumberRow/20_r.svg", + "staticwebassets/icons/NumberRow/24_f.svg", + "staticwebassets/icons/NumberRow/24_r.svg", + "staticwebassets/icons/NumberSymbol/16_f.svg", + "staticwebassets/icons/NumberSymbol/16_r.svg", + "staticwebassets/icons/NumberSymbol/20_f.svg", + "staticwebassets/icons/NumberSymbol/20_r.svg", + "staticwebassets/icons/NumberSymbol/24_f.svg", + "staticwebassets/icons/NumberSymbol/24_r.svg", + "staticwebassets/icons/NumberSymbol/28_f.svg", + "staticwebassets/icons/NumberSymbol/28_r.svg", + "staticwebassets/icons/NumberSymbol/32_f.svg", + "staticwebassets/icons/NumberSymbol/32_r.svg", + "staticwebassets/icons/NumberSymbol/48_f.svg", + "staticwebassets/icons/NumberSymbol/48_r.svg", + "staticwebassets/icons/NumberSymbolDismiss/20_f.svg", + "staticwebassets/icons/NumberSymbolDismiss/20_r.svg", + "staticwebassets/icons/NumberSymbolDismiss/24_f.svg", + "staticwebassets/icons/NumberSymbolDismiss/24_r.svg", + "staticwebassets/icons/NumberSymbolSquare/20_f.svg", + "staticwebassets/icons/NumberSymbolSquare/20_r.svg", + "staticwebassets/icons/NumberSymbolSquare/24_f.svg", + "staticwebassets/icons/NumberSymbolSquare/24_r.svg", + "staticwebassets/icons/Open/16_f.svg", + "staticwebassets/icons/Open/16_r.svg", + "staticwebassets/icons/Open/20_f.svg", + "staticwebassets/icons/Open/20_r.svg", + "staticwebassets/icons/Open/24_f.svg", + "staticwebassets/icons/Open/24_r.svg", + "staticwebassets/icons/Open/28_f.svg", + "staticwebassets/icons/Open/28_r.svg", + "staticwebassets/icons/Open/32_f.svg", + "staticwebassets/icons/Open/32_r.svg", + "staticwebassets/icons/Open/48_f.svg", + "staticwebassets/icons/Open/48_r.svg", + "staticwebassets/icons/OpenFolder/16_f.svg", + "staticwebassets/icons/OpenFolder/16_r.svg", + "staticwebassets/icons/OpenFolder/20_f.svg", + "staticwebassets/icons/OpenFolder/20_r.svg", + "staticwebassets/icons/OpenFolder/24_f.svg", + "staticwebassets/icons/OpenFolder/24_r.svg", + "staticwebassets/icons/OpenFolder/28_f.svg", + "staticwebassets/icons/OpenFolder/28_r.svg", + "staticwebassets/icons/OpenFolder/48_f.svg", + "staticwebassets/icons/OpenFolder/48_r.svg", + "staticwebassets/icons/OpenOff/16_f.svg", + "staticwebassets/icons/OpenOff/16_r.svg", + "staticwebassets/icons/OpenOff/20_f.svg", + "staticwebassets/icons/OpenOff/20_r.svg", + "staticwebassets/icons/OpenOff/24_f.svg", + "staticwebassets/icons/OpenOff/24_r.svg", + "staticwebassets/icons/OpenOff/28_f.svg", + "staticwebassets/icons/OpenOff/28_r.svg", + "staticwebassets/icons/OpenOff/48_f.svg", + "staticwebassets/icons/OpenOff/48_r.svg", + "staticwebassets/icons/Options/16_f.svg", + "staticwebassets/icons/Options/16_r.svg", + "staticwebassets/icons/Options/20_f.svg", + "staticwebassets/icons/Options/20_r.svg", + "staticwebassets/icons/Options/24_f.svg", + "staticwebassets/icons/Options/24_r.svg", + "staticwebassets/icons/Options/48_f.svg", + "staticwebassets/icons/Options/48_r.svg", + "staticwebassets/icons/Organization/12_f.svg", + "staticwebassets/icons/Organization/12_r.svg", + "staticwebassets/icons/Organization/16_f.svg", + "staticwebassets/icons/Organization/16_r.svg", + "staticwebassets/icons/Organization/20_f.svg", + "staticwebassets/icons/Organization/20_r.svg", + "staticwebassets/icons/Organization/24_f.svg", + "staticwebassets/icons/Organization/24_r.svg", + "staticwebassets/icons/Organization/28_f.svg", + "staticwebassets/icons/Organization/28_r.svg", + "staticwebassets/icons/Organization/32_f.svg", + "staticwebassets/icons/Organization/32_r.svg", + "staticwebassets/icons/Organization/48_f.svg", + "staticwebassets/icons/Organization/48_r.svg", + "staticwebassets/icons/OrganizationHorizontal/20_f.svg", + "staticwebassets/icons/OrganizationHorizontal/20_r.svg", + "staticwebassets/icons/Orientation/20_f.svg", + "staticwebassets/icons/Orientation/20_r.svg", + "staticwebassets/icons/Orientation/24_f.svg", + "staticwebassets/icons/Orientation/24_r.svg", + "staticwebassets/icons/Oval/16_f.svg", + "staticwebassets/icons/Oval/16_r.svg", + "staticwebassets/icons/Oval/20_f.svg", + "staticwebassets/icons/Oval/20_r.svg", + "staticwebassets/icons/Oval/24_f.svg", + "staticwebassets/icons/Oval/24_r.svg", + "staticwebassets/icons/Oval/28_f.svg", + "staticwebassets/icons/Oval/28_r.svg", + "staticwebassets/icons/Oval/32_f.svg", + "staticwebassets/icons/Oval/32_r.svg", + "staticwebassets/icons/Oval/48_f.svg", + "staticwebassets/icons/Oval/48_r.svg", + "staticwebassets/icons/Oven/20_f.svg", + "staticwebassets/icons/Oven/20_r.svg", + "staticwebassets/icons/Oven/24_f.svg", + "staticwebassets/icons/Oven/24_r.svg", + "staticwebassets/icons/Oven/32_f.svg", + "staticwebassets/icons/Oven/32_r.svg", + "staticwebassets/icons/Oven/48_f.svg", + "staticwebassets/icons/Oven/48_r.svg", + "staticwebassets/icons/PaddingDown/20_f.svg", + "staticwebassets/icons/PaddingDown/20_r.svg", + "staticwebassets/icons/PaddingDown/24_f.svg", + "staticwebassets/icons/PaddingDown/24_r.svg", + "staticwebassets/icons/PaddingLeft/20_f.svg", + "staticwebassets/icons/PaddingLeft/20_r.svg", + "staticwebassets/icons/PaddingLeft/24_f.svg", + "staticwebassets/icons/PaddingLeft/24_r.svg", + "staticwebassets/icons/PaddingRight/20_f.svg", + "staticwebassets/icons/PaddingRight/20_r.svg", + "staticwebassets/icons/PaddingRight/24_f.svg", + "staticwebassets/icons/PaddingRight/24_r.svg", + "staticwebassets/icons/PaddingTop/20_f.svg", + "staticwebassets/icons/PaddingTop/20_r.svg", + "staticwebassets/icons/PaddingTop/24_f.svg", + "staticwebassets/icons/PaddingTop/24_r.svg", + "staticwebassets/icons/PageFit/16_f.svg", + "staticwebassets/icons/PageFit/16_r.svg", + "staticwebassets/icons/PageFit/20_f.svg", + "staticwebassets/icons/PageFit/20_r.svg", + "staticwebassets/icons/PageFit/24_f.svg", + "staticwebassets/icons/PageFit/24_r.svg", + "staticwebassets/icons/PaintBrush/16_f.svg", + "staticwebassets/icons/PaintBrush/16_r.svg", + "staticwebassets/icons/PaintBrush/20_f.svg", + "staticwebassets/icons/PaintBrush/20_r.svg", + "staticwebassets/icons/PaintBrush/24_f.svg", + "staticwebassets/icons/PaintBrush/24_r.svg", + "staticwebassets/icons/PaintBrushArrowDown/20_f.svg", + "staticwebassets/icons/PaintBrushArrowDown/20_r.svg", + "staticwebassets/icons/PaintBrushArrowDown/24_f.svg", + "staticwebassets/icons/PaintBrushArrowDown/24_r.svg", + "staticwebassets/icons/PaintBrushArrowUp/20_f.svg", + "staticwebassets/icons/PaintBrushArrowUp/20_r.svg", + "staticwebassets/icons/PaintBrushArrowUp/24_f.svg", + "staticwebassets/icons/PaintBrushArrowUp/24_r.svg", + "staticwebassets/icons/PaintBucket/16_f.svg", + "staticwebassets/icons/PaintBucket/16_r.svg", + "staticwebassets/icons/PaintBucket/20_f.svg", + "staticwebassets/icons/PaintBucket/20_r.svg", + "staticwebassets/icons/PaintBucket/24_f.svg", + "staticwebassets/icons/PaintBucket/24_r.svg", + "staticwebassets/icons/Pair/20_f.svg", + "staticwebassets/icons/Pair/20_r.svg", + "staticwebassets/icons/Pair/24_f.svg", + "staticwebassets/icons/Pair/24_r.svg", + "staticwebassets/icons/PanelBottom/20_f.svg", + "staticwebassets/icons/PanelBottom/20_r.svg", + "staticwebassets/icons/PanelBottomContract/20_f.svg", + "staticwebassets/icons/PanelBottomContract/20_r.svg", + "staticwebassets/icons/PanelBottomExpand/20_f.svg", + "staticwebassets/icons/PanelBottomExpand/20_r.svg", + "staticwebassets/icons/PanelDown/20_f.svg", + "staticwebassets/icons/PanelDown/20_r.svg", + "staticwebassets/icons/PanelLeft/16_f.svg", + "staticwebassets/icons/PanelLeft/16_r.svg", + "staticwebassets/icons/PanelLeft/20_f.svg", + "staticwebassets/icons/PanelLeft/20_r.svg", + "staticwebassets/icons/PanelLeft/24_f.svg", + "staticwebassets/icons/PanelLeft/24_r.svg", + "staticwebassets/icons/PanelLeft/28_f.svg", + "staticwebassets/icons/PanelLeft/28_r.svg", + "staticwebassets/icons/PanelLeft/32_f.svg", + "staticwebassets/icons/PanelLeft/32_r.svg", + "staticwebassets/icons/PanelLeft/48_f.svg", + "staticwebassets/icons/PanelLeft/48_r.svg", + "staticwebassets/icons/PanelLeftAdd/16_f.svg", + "staticwebassets/icons/PanelLeftAdd/16_r.svg", + "staticwebassets/icons/PanelLeftAdd/20_f.svg", + "staticwebassets/icons/PanelLeftAdd/20_r.svg", + "staticwebassets/icons/PanelLeftAdd/24_f.svg", + "staticwebassets/icons/PanelLeftAdd/24_r.svg", + "staticwebassets/icons/PanelLeftAdd/28_f.svg", + "staticwebassets/icons/PanelLeftAdd/28_r.svg", + "staticwebassets/icons/PanelLeftAdd/32_f.svg", + "staticwebassets/icons/PanelLeftAdd/32_r.svg", + "staticwebassets/icons/PanelLeftAdd/48_f.svg", + "staticwebassets/icons/PanelLeftAdd/48_r.svg", + "staticwebassets/icons/PanelLeftContract/16_f.svg", + "staticwebassets/icons/PanelLeftContract/16_r.svg", + "staticwebassets/icons/PanelLeftContract/20_f.svg", + "staticwebassets/icons/PanelLeftContract/20_r.svg", + "staticwebassets/icons/PanelLeftContract/24_f.svg", + "staticwebassets/icons/PanelLeftContract/24_r.svg", + "staticwebassets/icons/PanelLeftContract/28_f.svg", + "staticwebassets/icons/PanelLeftContract/28_r.svg", + "staticwebassets/icons/PanelLeftExpand/16_f.svg", + "staticwebassets/icons/PanelLeftExpand/16_r.svg", + "staticwebassets/icons/PanelLeftExpand/20_f.svg", + "staticwebassets/icons/PanelLeftExpand/20_r.svg", + "staticwebassets/icons/PanelLeftExpand/24_f.svg", + "staticwebassets/icons/PanelLeftExpand/24_r.svg", + "staticwebassets/icons/PanelLeftExpand/28_f.svg", + "staticwebassets/icons/PanelLeftExpand/28_r.svg", + "staticwebassets/icons/PanelLeftFocusRight/16_f.svg", + "staticwebassets/icons/PanelLeftFocusRight/20_f.svg", + "staticwebassets/icons/PanelLeftFocusRight/24_f.svg", + "staticwebassets/icons/PanelLeftFocusRight/28_f.svg", + "staticwebassets/icons/PanelLeftHeader/16_f.svg", + "staticwebassets/icons/PanelLeftHeader/16_r.svg", + "staticwebassets/icons/PanelLeftHeader/20_f.svg", + "staticwebassets/icons/PanelLeftHeader/20_r.svg", + "staticwebassets/icons/PanelLeftHeader/24_f.svg", + "staticwebassets/icons/PanelLeftHeader/24_r.svg", + "staticwebassets/icons/PanelLeftHeader/28_f.svg", + "staticwebassets/icons/PanelLeftHeader/28_r.svg", + "staticwebassets/icons/PanelLeftHeader/32_f.svg", + "staticwebassets/icons/PanelLeftHeader/32_r.svg", + "staticwebassets/icons/PanelLeftHeader/48_f.svg", + "staticwebassets/icons/PanelLeftHeader/48_r.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/16_f.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/16_r.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/20_f.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/20_r.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/24_f.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/24_r.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/28_f.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/28_r.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/32_f.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/32_r.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/48_f.svg", + "staticwebassets/icons/PanelLeftHeaderAdd/48_r.svg", + "staticwebassets/icons/PanelLeftHeaderKey/16_f.svg", + "staticwebassets/icons/PanelLeftHeaderKey/16_r.svg", + "staticwebassets/icons/PanelLeftHeaderKey/20_f.svg", + "staticwebassets/icons/PanelLeftHeaderKey/20_r.svg", + "staticwebassets/icons/PanelLeftHeaderKey/24_f.svg", + "staticwebassets/icons/PanelLeftHeaderKey/24_r.svg", + "staticwebassets/icons/PanelLeftKey/16_f.svg", + "staticwebassets/icons/PanelLeftKey/16_r.svg", + "staticwebassets/icons/PanelLeftKey/20_f.svg", + "staticwebassets/icons/PanelLeftKey/20_r.svg", + "staticwebassets/icons/PanelLeftKey/24_f.svg", + "staticwebassets/icons/PanelLeftKey/24_r.svg", + "staticwebassets/icons/PanelLeftText/16_f.svg", + "staticwebassets/icons/PanelLeftText/16_r.svg", + "staticwebassets/icons/PanelLeftText/20_f.svg", + "staticwebassets/icons/PanelLeftText/20_r.svg", + "staticwebassets/icons/PanelLeftText/24_f.svg", + "staticwebassets/icons/PanelLeftText/24_r.svg", + "staticwebassets/icons/PanelLeftText/28_f.svg", + "staticwebassets/icons/PanelLeftText/28_r.svg", + "staticwebassets/icons/PanelLeftText/32_f.svg", + "staticwebassets/icons/PanelLeftText/32_r.svg", + "staticwebassets/icons/PanelLeftText/48_f.svg", + "staticwebassets/icons/PanelLeftText/48_r.svg", + "staticwebassets/icons/PanelLeftTextAdd/16_f.svg", + "staticwebassets/icons/PanelLeftTextAdd/16_r.svg", + "staticwebassets/icons/PanelLeftTextAdd/20_f.svg", + "staticwebassets/icons/PanelLeftTextAdd/20_r.svg", + "staticwebassets/icons/PanelLeftTextAdd/24_f.svg", + "staticwebassets/icons/PanelLeftTextAdd/24_r.svg", + "staticwebassets/icons/PanelLeftTextAdd/28_f.svg", + "staticwebassets/icons/PanelLeftTextAdd/28_r.svg", + "staticwebassets/icons/PanelLeftTextAdd/32_f.svg", + "staticwebassets/icons/PanelLeftTextAdd/32_r.svg", + "staticwebassets/icons/PanelLeftTextAdd/48_f.svg", + "staticwebassets/icons/PanelLeftTextAdd/48_r.svg", + "staticwebassets/icons/PanelLeftTextDismiss/16_f.svg", + "staticwebassets/icons/PanelLeftTextDismiss/16_r.svg", + "staticwebassets/icons/PanelLeftTextDismiss/20_f.svg", + "staticwebassets/icons/PanelLeftTextDismiss/20_r.svg", + "staticwebassets/icons/PanelLeftTextDismiss/24_f.svg", + "staticwebassets/icons/PanelLeftTextDismiss/24_r.svg", + "staticwebassets/icons/PanelLeftTextDismiss/28_f.svg", + "staticwebassets/icons/PanelLeftTextDismiss/28_r.svg", + "staticwebassets/icons/PanelLeftTextDismiss/32_f.svg", + "staticwebassets/icons/PanelLeftTextDismiss/32_r.svg", + "staticwebassets/icons/PanelLeftTextDismiss/48_f.svg", + "staticwebassets/icons/PanelLeftTextDismiss/48_r.svg", + "staticwebassets/icons/PanelRight/16_f.svg", + "staticwebassets/icons/PanelRight/16_r.svg", + "staticwebassets/icons/PanelRight/20_f.svg", + "staticwebassets/icons/PanelRight/20_r.svg", + "staticwebassets/icons/PanelRight/24_f.svg", + "staticwebassets/icons/PanelRight/24_r.svg", + "staticwebassets/icons/PanelRight/28_f.svg", + "staticwebassets/icons/PanelRight/28_r.svg", + "staticwebassets/icons/PanelRight/32_f.svg", + "staticwebassets/icons/PanelRight/32_r.svg", + "staticwebassets/icons/PanelRight/48_f.svg", + "staticwebassets/icons/PanelRight/48_r.svg", + "staticwebassets/icons/PanelRightAdd/20_f.svg", + "staticwebassets/icons/PanelRightAdd/20_r.svg", + "staticwebassets/icons/PanelRightContract/16_f.svg", + "staticwebassets/icons/PanelRightContract/16_r.svg", + "staticwebassets/icons/PanelRightContract/20_f.svg", + "staticwebassets/icons/PanelRightContract/20_r.svg", + "staticwebassets/icons/PanelRightContract/24_f.svg", + "staticwebassets/icons/PanelRightContract/24_r.svg", + "staticwebassets/icons/PanelRightCursor/20_f.svg", + "staticwebassets/icons/PanelRightCursor/20_r.svg", + "staticwebassets/icons/PanelRightCursor/24_f.svg", + "staticwebassets/icons/PanelRightCursor/24_r.svg", + "staticwebassets/icons/PanelRightExpand/20_f.svg", + "staticwebassets/icons/PanelRightExpand/20_r.svg", + "staticwebassets/icons/PanelSeparateWindow/20_f.svg", + "staticwebassets/icons/PanelSeparateWindow/20_r.svg", + "staticwebassets/icons/PanelTopContract/20_f.svg", + "staticwebassets/icons/PanelTopContract/20_r.svg", + "staticwebassets/icons/PanelTopExpand/20_f.svg", + "staticwebassets/icons/PanelTopExpand/20_r.svg", + "staticwebassets/icons/Password/16_f.svg", + "staticwebassets/icons/Password/16_r.svg", + "staticwebassets/icons/Password/20_f.svg", + "staticwebassets/icons/Password/20_r.svg", + "staticwebassets/icons/Password/24_f.svg", + "staticwebassets/icons/Password/24_r.svg", + "staticwebassets/icons/Patch/20_f.svg", + "staticwebassets/icons/Patch/20_r.svg", + "staticwebassets/icons/Patch/24_f.svg", + "staticwebassets/icons/Patch/24_r.svg", + "staticwebassets/icons/Patient/20_f.svg", + "staticwebassets/icons/Patient/20_r.svg", + "staticwebassets/icons/Patient/24_f.svg", + "staticwebassets/icons/Patient/24_r.svg", + "staticwebassets/icons/Patient/32_f.svg", + "staticwebassets/icons/Patient/32_r.svg", + "staticwebassets/icons/Pause/12_f.svg", + "staticwebassets/icons/Pause/12_r.svg", + "staticwebassets/icons/Pause/16_f.svg", + "staticwebassets/icons/Pause/16_r.svg", + "staticwebassets/icons/Pause/20_f.svg", + "staticwebassets/icons/Pause/20_r.svg", + "staticwebassets/icons/Pause/24_f.svg", + "staticwebassets/icons/Pause/24_r.svg", + "staticwebassets/icons/Pause/28_f.svg", + "staticwebassets/icons/Pause/28_r.svg", + "staticwebassets/icons/Pause/32_f.svg", + "staticwebassets/icons/Pause/32_r.svg", + "staticwebassets/icons/Pause/48_f.svg", + "staticwebassets/icons/Pause/48_r.svg", + "staticwebassets/icons/PauseCircle/20_f.svg", + "staticwebassets/icons/PauseCircle/20_r.svg", + "staticwebassets/icons/PauseCircle/24_f.svg", + "staticwebassets/icons/PauseCircle/24_r.svg", + "staticwebassets/icons/PauseOff/16_f.svg", + "staticwebassets/icons/PauseOff/16_r.svg", + "staticwebassets/icons/PauseOff/20_f.svg", + "staticwebassets/icons/PauseOff/20_r.svg", + "staticwebassets/icons/PauseSettings/16_f.svg", + "staticwebassets/icons/PauseSettings/16_r.svg", + "staticwebassets/icons/PauseSettings/20_f.svg", + "staticwebassets/icons/PauseSettings/20_r.svg", + "staticwebassets/icons/Payment/16_f.svg", + "staticwebassets/icons/Payment/16_r.svg", + "staticwebassets/icons/Payment/20_f.svg", + "staticwebassets/icons/Payment/20_r.svg", + "staticwebassets/icons/Payment/24_f.svg", + "staticwebassets/icons/Payment/24_r.svg", + "staticwebassets/icons/Payment/28_f.svg", + "staticwebassets/icons/Payment/28_r.svg", + "staticwebassets/icons/Payment/32_f.svg", + "staticwebassets/icons/Payment/32_r.svg", + "staticwebassets/icons/Payment/48_f.svg", + "staticwebassets/icons/Payment/48_r.svg", + "staticwebassets/icons/Pen/16_f.svg", + "staticwebassets/icons/Pen/16_r.svg", + "staticwebassets/icons/Pen/20_f.svg", + "staticwebassets/icons/Pen/20_r.svg", + "staticwebassets/icons/Pen/24_f.svg", + "staticwebassets/icons/Pen/24_r.svg", + "staticwebassets/icons/Pen/28_f.svg", + "staticwebassets/icons/Pen/28_r.svg", + "staticwebassets/icons/Pen/32_f.svg", + "staticwebassets/icons/Pen/32_r.svg", + "staticwebassets/icons/Pen/48_f.svg", + "staticwebassets/icons/Pen/48_r.svg", + "staticwebassets/icons/PenDismiss/16_f.svg", + "staticwebassets/icons/PenDismiss/16_r.svg", + "staticwebassets/icons/PenDismiss/20_f.svg", + "staticwebassets/icons/PenDismiss/20_r.svg", + "staticwebassets/icons/PenDismiss/24_f.svg", + "staticwebassets/icons/PenDismiss/24_r.svg", + "staticwebassets/icons/PenDismiss/28_f.svg", + "staticwebassets/icons/PenDismiss/28_r.svg", + "staticwebassets/icons/PenDismiss/32_f.svg", + "staticwebassets/icons/PenDismiss/32_r.svg", + "staticwebassets/icons/PenDismiss/48_f.svg", + "staticwebassets/icons/PenDismiss/48_r.svg", + "staticwebassets/icons/PenOff/16_f.svg", + "staticwebassets/icons/PenOff/16_r.svg", + "staticwebassets/icons/PenOff/20_f.svg", + "staticwebassets/icons/PenOff/20_r.svg", + "staticwebassets/icons/PenOff/24_f.svg", + "staticwebassets/icons/PenOff/24_r.svg", + "staticwebassets/icons/PenOff/28_f.svg", + "staticwebassets/icons/PenOff/28_r.svg", + "staticwebassets/icons/PenOff/32_f.svg", + "staticwebassets/icons/PenOff/32_r.svg", + "staticwebassets/icons/PenOff/48_f.svg", + "staticwebassets/icons/PenOff/48_r.svg", + "staticwebassets/icons/PenProhibited/16_f.svg", + "staticwebassets/icons/PenProhibited/16_r.svg", + "staticwebassets/icons/PenProhibited/20_f.svg", + "staticwebassets/icons/PenProhibited/20_r.svg", + "staticwebassets/icons/PenProhibited/24_f.svg", + "staticwebassets/icons/PenProhibited/24_r.svg", + "staticwebassets/icons/PenProhibited/28_f.svg", + "staticwebassets/icons/PenProhibited/28_r.svg", + "staticwebassets/icons/PenProhibited/32_f.svg", + "staticwebassets/icons/PenProhibited/32_r.svg", + "staticwebassets/icons/PenProhibited/48_f.svg", + "staticwebassets/icons/PenProhibited/48_r.svg", + "staticwebassets/icons/Pentagon/20_f.svg", + "staticwebassets/icons/Pentagon/20_r.svg", + "staticwebassets/icons/Pentagon/32_f.svg", + "staticwebassets/icons/Pentagon/32_r.svg", + "staticwebassets/icons/Pentagon/48_f.svg", + "staticwebassets/icons/Pentagon/48_r.svg", + "staticwebassets/icons/People/12_f.svg", + "staticwebassets/icons/People/12_r.svg", + "staticwebassets/icons/People/16_f.svg", + "staticwebassets/icons/People/16_r.svg", + "staticwebassets/icons/People/20_f.svg", + "staticwebassets/icons/People/20_r.svg", + "staticwebassets/icons/People/24_f.svg", + "staticwebassets/icons/People/24_r.svg", + "staticwebassets/icons/People/28_f.svg", + "staticwebassets/icons/People/28_r.svg", + "staticwebassets/icons/People/32_f.svg", + "staticwebassets/icons/People/32_r.svg", + "staticwebassets/icons/People/48_f.svg", + "staticwebassets/icons/People/48_r.svg", + "staticwebassets/icons/PeopleAdd/16_f.svg", + "staticwebassets/icons/PeopleAdd/16_r.svg", + "staticwebassets/icons/PeopleAdd/20_f.svg", + "staticwebassets/icons/PeopleAdd/20_r.svg", + "staticwebassets/icons/PeopleAdd/24_f.svg", + "staticwebassets/icons/PeopleAdd/24_r.svg", + "staticwebassets/icons/PeopleAdd/28_f.svg", + "staticwebassets/icons/PeopleAdd/28_r.svg", + "staticwebassets/icons/PeopleAudience/20_f.svg", + "staticwebassets/icons/PeopleAudience/20_r.svg", + "staticwebassets/icons/PeopleAudience/24_f.svg", + "staticwebassets/icons/PeopleAudience/24_r.svg", + "staticwebassets/icons/PeopleCall/16_f.svg", + "staticwebassets/icons/PeopleCall/16_r.svg", + "staticwebassets/icons/PeopleCall/20_f.svg", + "staticwebassets/icons/PeopleCall/20_r.svg", + "staticwebassets/icons/PeopleCall/24_f.svg", + "staticwebassets/icons/PeopleCall/24_r.svg", + "staticwebassets/icons/PeopleCheckmark/16_f.svg", + "staticwebassets/icons/PeopleCheckmark/16_r.svg", + "staticwebassets/icons/PeopleCheckmark/20_f.svg", + "staticwebassets/icons/PeopleCheckmark/20_r.svg", + "staticwebassets/icons/PeopleCheckmark/24_f.svg", + "staticwebassets/icons/PeopleCheckmark/24_r.svg", + "staticwebassets/icons/PeopleCommunity/16_f.svg", + "staticwebassets/icons/PeopleCommunity/16_r.svg", + "staticwebassets/icons/PeopleCommunity/20_f.svg", + "staticwebassets/icons/PeopleCommunity/20_r.svg", + "staticwebassets/icons/PeopleCommunity/24_f.svg", + "staticwebassets/icons/PeopleCommunity/24_r.svg", + "staticwebassets/icons/PeopleCommunity/28_f.svg", + "staticwebassets/icons/PeopleCommunity/28_r.svg", + "staticwebassets/icons/PeopleCommunity/32_f.svg", + "staticwebassets/icons/PeopleCommunity/32_r.svg", + "staticwebassets/icons/PeopleCommunity/48_f.svg", + "staticwebassets/icons/PeopleCommunity/48_r.svg", + "staticwebassets/icons/PeopleCommunityAdd/20_f.svg", + "staticwebassets/icons/PeopleCommunityAdd/20_r.svg", + "staticwebassets/icons/PeopleCommunityAdd/24_f.svg", + "staticwebassets/icons/PeopleCommunityAdd/24_r.svg", + "staticwebassets/icons/PeopleCommunityAdd/28_f.svg", + "staticwebassets/icons/PeopleCommunityAdd/28_r.svg", + "staticwebassets/icons/PeopleEdit/20_f.svg", + "staticwebassets/icons/PeopleEdit/20_r.svg", + "staticwebassets/icons/PeopleError/16_f.svg", + "staticwebassets/icons/PeopleError/16_r.svg", + "staticwebassets/icons/PeopleError/20_f.svg", + "staticwebassets/icons/PeopleError/20_r.svg", + "staticwebassets/icons/PeopleError/24_f.svg", + "staticwebassets/icons/PeopleError/24_r.svg", + "staticwebassets/icons/PeopleList/16_f.svg", + "staticwebassets/icons/PeopleList/16_r.svg", + "staticwebassets/icons/PeopleList/20_f.svg", + "staticwebassets/icons/PeopleList/20_r.svg", + "staticwebassets/icons/PeopleList/24_f.svg", + "staticwebassets/icons/PeopleList/24_r.svg", + "staticwebassets/icons/PeopleList/28_f.svg", + "staticwebassets/icons/PeopleList/28_r.svg", + "staticwebassets/icons/PeopleLock/20_f.svg", + "staticwebassets/icons/PeopleLock/20_r.svg", + "staticwebassets/icons/PeopleLock/24_f.svg", + "staticwebassets/icons/PeopleLock/24_r.svg", + "staticwebassets/icons/PeopleMoney/20_f.svg", + "staticwebassets/icons/PeopleMoney/20_r.svg", + "staticwebassets/icons/PeopleMoney/24_f.svg", + "staticwebassets/icons/PeopleMoney/24_r.svg", + "staticwebassets/icons/PeopleProhibited/16_f.svg", + "staticwebassets/icons/PeopleProhibited/16_r.svg", + "staticwebassets/icons/PeopleProhibited/20_f.svg", + "staticwebassets/icons/PeopleProhibited/20_r.svg", + "staticwebassets/icons/PeopleProhibited/24_f.svg", + "staticwebassets/icons/PeopleProhibited/24_r.svg", + "staticwebassets/icons/PeopleQueue/20_f.svg", + "staticwebassets/icons/PeopleQueue/20_r.svg", + "staticwebassets/icons/PeopleQueue/24_f.svg", + "staticwebassets/icons/PeopleQueue/24_r.svg", + "staticwebassets/icons/PeopleSearch/20_f.svg", + "staticwebassets/icons/PeopleSearch/20_r.svg", + "staticwebassets/icons/PeopleSearch/24_f.svg", + "staticwebassets/icons/PeopleSearch/24_r.svg", + "staticwebassets/icons/PeopleSettings/20_f.svg", + "staticwebassets/icons/PeopleSettings/20_r.svg", + "staticwebassets/icons/PeopleSettings/24_f.svg", + "staticwebassets/icons/PeopleSettings/24_r.svg", + "staticwebassets/icons/PeopleSettings/28_f.svg", + "staticwebassets/icons/PeopleSettings/28_r.svg", + "staticwebassets/icons/PeopleStar/16_f.svg", + "staticwebassets/icons/PeopleStar/16_r.svg", + "staticwebassets/icons/PeopleStar/20_f.svg", + "staticwebassets/icons/PeopleStar/20_r.svg", + "staticwebassets/icons/PeopleStar/24_f.svg", + "staticwebassets/icons/PeopleStar/24_r.svg", + "staticwebassets/icons/PeopleStar/28_f.svg", + "staticwebassets/icons/PeopleStar/28_r.svg", + "staticwebassets/icons/PeopleStar/32_f.svg", + "staticwebassets/icons/PeopleStar/32_r.svg", + "staticwebassets/icons/PeopleStar/48_f.svg", + "staticwebassets/icons/PeopleStar/48_r.svg", + "staticwebassets/icons/PeopleSwap/16_f.svg", + "staticwebassets/icons/PeopleSwap/16_r.svg", + "staticwebassets/icons/PeopleSwap/20_f.svg", + "staticwebassets/icons/PeopleSwap/20_r.svg", + "staticwebassets/icons/PeopleSwap/24_f.svg", + "staticwebassets/icons/PeopleSwap/24_r.svg", + "staticwebassets/icons/PeopleSwap/28_f.svg", + "staticwebassets/icons/PeopleSwap/28_r.svg", + "staticwebassets/icons/PeopleSync/16_f.svg", + "staticwebassets/icons/PeopleSync/16_r.svg", + "staticwebassets/icons/PeopleSync/20_f.svg", + "staticwebassets/icons/PeopleSync/20_r.svg", + "staticwebassets/icons/PeopleSync/28_f.svg", + "staticwebassets/icons/PeopleSync/28_r.svg", + "staticwebassets/icons/PeopleTeam/16_f.svg", + "staticwebassets/icons/PeopleTeam/16_r.svg", + "staticwebassets/icons/PeopleTeam/20_f.svg", + "staticwebassets/icons/PeopleTeam/20_r.svg", + "staticwebassets/icons/PeopleTeam/24_f.svg", + "staticwebassets/icons/PeopleTeam/24_r.svg", + "staticwebassets/icons/PeopleTeam/28_f.svg", + "staticwebassets/icons/PeopleTeam/28_r.svg", + "staticwebassets/icons/PeopleTeam/32_f.svg", + "staticwebassets/icons/PeopleTeam/32_r.svg", + "staticwebassets/icons/PeopleTeam/48_f.svg", + "staticwebassets/icons/PeopleTeam/48_r.svg", + "staticwebassets/icons/PeopleTeamAdd/20_f.svg", + "staticwebassets/icons/PeopleTeamAdd/20_r.svg", + "staticwebassets/icons/PeopleTeamAdd/24_f.svg", + "staticwebassets/icons/PeopleTeamAdd/24_r.svg", + "staticwebassets/icons/PeopleTeamDelete/16_f.svg", + "staticwebassets/icons/PeopleTeamDelete/16_r.svg", + "staticwebassets/icons/PeopleTeamDelete/20_f.svg", + "staticwebassets/icons/PeopleTeamDelete/20_r.svg", + "staticwebassets/icons/PeopleTeamDelete/24_f.svg", + "staticwebassets/icons/PeopleTeamDelete/24_r.svg", + "staticwebassets/icons/PeopleTeamDelete/28_f.svg", + "staticwebassets/icons/PeopleTeamDelete/28_r.svg", + "staticwebassets/icons/PeopleTeamDelete/32_f.svg", + "staticwebassets/icons/PeopleTeamDelete/32_r.svg", + "staticwebassets/icons/PeopleTeamToolbox/20_f.svg", + "staticwebassets/icons/PeopleTeamToolbox/20_r.svg", + "staticwebassets/icons/PeopleTeamToolbox/24_f.svg", + "staticwebassets/icons/PeopleTeamToolbox/24_r.svg", + "staticwebassets/icons/PeopleToolbox/16_f.svg", + "staticwebassets/icons/PeopleToolbox/16_r.svg", + "staticwebassets/icons/PeopleToolbox/20_f.svg", + "staticwebassets/icons/PeopleToolbox/20_r.svg", + "staticwebassets/icons/Person/12_f.svg", + "staticwebassets/icons/Person/12_r.svg", + "staticwebassets/icons/Person/16_f.svg", + "staticwebassets/icons/Person/16_r.svg", + "staticwebassets/icons/Person/20_f.svg", + "staticwebassets/icons/Person/20_r.svg", + "staticwebassets/icons/Person/24_f.svg", + "staticwebassets/icons/Person/24_r.svg", + "staticwebassets/icons/Person/28_f.svg", + "staticwebassets/icons/Person/28_r.svg", + "staticwebassets/icons/Person/32_f.svg", + "staticwebassets/icons/Person/32_r.svg", + "staticwebassets/icons/Person/48_f.svg", + "staticwebassets/icons/Person/48_r.svg", + "staticwebassets/icons/Person5/20_f.svg", + "staticwebassets/icons/Person5/20_r.svg", + "staticwebassets/icons/Person5/32_f.svg", + "staticwebassets/icons/Person5/32_r.svg", + "staticwebassets/icons/Person6/20_f.svg", + "staticwebassets/icons/Person6/20_r.svg", + "staticwebassets/icons/Person6/32_f.svg", + "staticwebassets/icons/Person6/32_r.svg", + "staticwebassets/icons/PersonAccounts/20_f.svg", + "staticwebassets/icons/PersonAccounts/20_r.svg", + "staticwebassets/icons/PersonAccounts/24_f.svg", + "staticwebassets/icons/PersonAccounts/24_r.svg", + "staticwebassets/icons/PersonAdd/16_f.svg", + "staticwebassets/icons/PersonAdd/16_r.svg", + "staticwebassets/icons/PersonAdd/20_f.svg", + "staticwebassets/icons/PersonAdd/20_r.svg", + "staticwebassets/icons/PersonAdd/24_f.svg", + "staticwebassets/icons/PersonAdd/24_r.svg", + "staticwebassets/icons/PersonAdd/28_f.svg", + "staticwebassets/icons/PersonAdd/28_r.svg", + "staticwebassets/icons/PersonAlert/16_f.svg", + "staticwebassets/icons/PersonAlert/16_r.svg", + "staticwebassets/icons/PersonAlert/20_f.svg", + "staticwebassets/icons/PersonAlert/20_r.svg", + "staticwebassets/icons/PersonAlert/24_f.svg", + "staticwebassets/icons/PersonAlert/24_r.svg", + "staticwebassets/icons/PersonArrowBack/16_f.svg", + "staticwebassets/icons/PersonArrowBack/16_r.svg", + "staticwebassets/icons/PersonArrowBack/20_f.svg", + "staticwebassets/icons/PersonArrowBack/20_r.svg", + "staticwebassets/icons/PersonArrowBack/24_f.svg", + "staticwebassets/icons/PersonArrowBack/24_r.svg", + "staticwebassets/icons/PersonArrowBack/28_f.svg", + "staticwebassets/icons/PersonArrowBack/28_r.svg", + "staticwebassets/icons/PersonArrowBack/32_f.svg", + "staticwebassets/icons/PersonArrowBack/32_r.svg", + "staticwebassets/icons/PersonArrowBack/48_f.svg", + "staticwebassets/icons/PersonArrowBack/48_r.svg", + "staticwebassets/icons/PersonArrowLeft/16_f.svg", + "staticwebassets/icons/PersonArrowLeft/16_r.svg", + "staticwebassets/icons/PersonArrowLeft/20_f.svg", + "staticwebassets/icons/PersonArrowLeft/20_r.svg", + "staticwebassets/icons/PersonArrowLeft/24_f.svg", + "staticwebassets/icons/PersonArrowLeft/24_r.svg", + "staticwebassets/icons/PersonArrowRight/16_f.svg", + "staticwebassets/icons/PersonArrowRight/16_r.svg", + "staticwebassets/icons/PersonArrowRight/20_f.svg", + "staticwebassets/icons/PersonArrowRight/20_r.svg", + "staticwebassets/icons/PersonArrowRight/24_f.svg", + "staticwebassets/icons/PersonArrowRight/24_r.svg", + "staticwebassets/icons/PersonAvailable/16_f.svg", + "staticwebassets/icons/PersonAvailable/16_r.svg", + "staticwebassets/icons/PersonAvailable/20_f.svg", + "staticwebassets/icons/PersonAvailable/20_r.svg", + "staticwebassets/icons/PersonAvailable/24_f.svg", + "staticwebassets/icons/PersonAvailable/24_r.svg", + "staticwebassets/icons/PersonBoard/16_f.svg", + "staticwebassets/icons/PersonBoard/16_r.svg", + "staticwebassets/icons/PersonBoard/20_f.svg", + "staticwebassets/icons/PersonBoard/20_r.svg", + "staticwebassets/icons/PersonBoard/24_f.svg", + "staticwebassets/icons/PersonBoard/24_r.svg", + "staticwebassets/icons/PersonBoard/28_f.svg", + "staticwebassets/icons/PersonBoard/28_r.svg", + "staticwebassets/icons/PersonBoard/32_f.svg", + "staticwebassets/icons/PersonBoard/32_r.svg", + "staticwebassets/icons/PersonCall/16_f.svg", + "staticwebassets/icons/PersonCall/16_r.svg", + "staticwebassets/icons/PersonCall/20_f.svg", + "staticwebassets/icons/PersonCall/20_r.svg", + "staticwebassets/icons/PersonCall/24_f.svg", + "staticwebassets/icons/PersonCall/24_r.svg", + "staticwebassets/icons/PersonChat/16_f.svg", + "staticwebassets/icons/PersonChat/16_r.svg", + "staticwebassets/icons/PersonChat/20_f.svg", + "staticwebassets/icons/PersonChat/20_r.svg", + "staticwebassets/icons/PersonChat/24_f.svg", + "staticwebassets/icons/PersonChat/24_r.svg", + "staticwebassets/icons/PersonCircle/12_f.svg", + "staticwebassets/icons/PersonCircle/12_r.svg", + "staticwebassets/icons/PersonCircle/20_f.svg", + "staticwebassets/icons/PersonCircle/20_r.svg", + "staticwebassets/icons/PersonCircle/24_f.svg", + "staticwebassets/icons/PersonCircle/24_r.svg", + "staticwebassets/icons/PersonCircle/28_f.svg", + "staticwebassets/icons/PersonCircle/28_r.svg", + "staticwebassets/icons/PersonCircle/32_f.svg", + "staticwebassets/icons/PersonCircle/32_r.svg", + "staticwebassets/icons/PersonClock/16_f.svg", + "staticwebassets/icons/PersonClock/16_r.svg", + "staticwebassets/icons/PersonClock/20_f.svg", + "staticwebassets/icons/PersonClock/20_r.svg", + "staticwebassets/icons/PersonClock/24_f.svg", + "staticwebassets/icons/PersonClock/24_r.svg", + "staticwebassets/icons/PersonDelete/16_f.svg", + "staticwebassets/icons/PersonDelete/16_r.svg", + "staticwebassets/icons/PersonDelete/20_f.svg", + "staticwebassets/icons/PersonDelete/20_r.svg", + "staticwebassets/icons/PersonDelete/24_f.svg", + "staticwebassets/icons/PersonDelete/24_r.svg", + "staticwebassets/icons/PersonDesktop/20_f.svg", + "staticwebassets/icons/PersonDesktop/20_r.svg", + "staticwebassets/icons/PersonEdit/20_f.svg", + "staticwebassets/icons/PersonEdit/20_r.svg", + "staticwebassets/icons/PersonEdit/24_f.svg", + "staticwebassets/icons/PersonEdit/24_r.svg", + "staticwebassets/icons/PersonFeedback/16_f.svg", + "staticwebassets/icons/PersonFeedback/16_r.svg", + "staticwebassets/icons/PersonFeedback/20_f.svg", + "staticwebassets/icons/PersonFeedback/20_r.svg", + "staticwebassets/icons/PersonFeedback/24_f.svg", + "staticwebassets/icons/PersonFeedback/24_r.svg", + "staticwebassets/icons/PersonFeedback/28_f.svg", + "staticwebassets/icons/PersonFeedback/28_r.svg", + "staticwebassets/icons/PersonFeedback/32_f.svg", + "staticwebassets/icons/PersonFeedback/32_r.svg", + "staticwebassets/icons/PersonFeedback/48_f.svg", + "staticwebassets/icons/PersonFeedback/48_r.svg", + "staticwebassets/icons/PersonHeart/20_f.svg", + "staticwebassets/icons/PersonHeart/20_r.svg", + "staticwebassets/icons/PersonHeart/24_f.svg", + "staticwebassets/icons/PersonHeart/24_r.svg", + "staticwebassets/icons/PersonInfo/16_f.svg", + "staticwebassets/icons/PersonInfo/16_r.svg", + "staticwebassets/icons/PersonInfo/20_f.svg", + "staticwebassets/icons/PersonInfo/20_r.svg", + "staticwebassets/icons/PersonKey/20_f.svg", + "staticwebassets/icons/PersonKey/20_r.svg", + "staticwebassets/icons/PersonLightbulb/20_f.svg", + "staticwebassets/icons/PersonLightbulb/20_r.svg", + "staticwebassets/icons/PersonLightbulb/24_f.svg", + "staticwebassets/icons/PersonLightbulb/24_r.svg", + "staticwebassets/icons/PersonLightning/16_f.svg", + "staticwebassets/icons/PersonLightning/16_r.svg", + "staticwebassets/icons/PersonLightning/20_f.svg", + "staticwebassets/icons/PersonLightning/20_r.svg", + "staticwebassets/icons/PersonLink/16_f.svg", + "staticwebassets/icons/PersonLink/16_r.svg", + "staticwebassets/icons/PersonLink/20_f.svg", + "staticwebassets/icons/PersonLink/20_r.svg", + "staticwebassets/icons/PersonLink/24_f.svg", + "staticwebassets/icons/PersonLink/24_r.svg", + "staticwebassets/icons/PersonLink/28_f.svg", + "staticwebassets/icons/PersonLink/28_r.svg", + "staticwebassets/icons/PersonLink/32_f.svg", + "staticwebassets/icons/PersonLink/32_r.svg", + "staticwebassets/icons/PersonLink/48_f.svg", + "staticwebassets/icons/PersonLink/48_r.svg", + "staticwebassets/icons/PersonLock/16_f.svg", + "staticwebassets/icons/PersonLock/16_r.svg", + "staticwebassets/icons/PersonLock/20_f.svg", + "staticwebassets/icons/PersonLock/20_r.svg", + "staticwebassets/icons/PersonLock/24_f.svg", + "staticwebassets/icons/PersonLock/24_r.svg", + "staticwebassets/icons/PersonMail/16_f.svg", + "staticwebassets/icons/PersonMail/16_r.svg", + "staticwebassets/icons/PersonMail/20_f.svg", + "staticwebassets/icons/PersonMail/20_r.svg", + "staticwebassets/icons/PersonMail/24_f.svg", + "staticwebassets/icons/PersonMail/24_r.svg", + "staticwebassets/icons/PersonMail/28_f.svg", + "staticwebassets/icons/PersonMail/28_r.svg", + "staticwebassets/icons/PersonMail/48_f.svg", + "staticwebassets/icons/PersonMail/48_r.svg", + "staticwebassets/icons/PersonMoney/20_f.svg", + "staticwebassets/icons/PersonMoney/20_r.svg", + "staticwebassets/icons/PersonMoney/24_f.svg", + "staticwebassets/icons/PersonMoney/24_r.svg", + "staticwebassets/icons/PersonNote/16_f.svg", + "staticwebassets/icons/PersonNote/16_r.svg", + "staticwebassets/icons/PersonNote/20_f.svg", + "staticwebassets/icons/PersonNote/20_r.svg", + "staticwebassets/icons/PersonNote/24_f.svg", + "staticwebassets/icons/PersonNote/24_r.svg", + "staticwebassets/icons/PersonPill/20_f.svg", + "staticwebassets/icons/PersonPill/20_r.svg", + "staticwebassets/icons/PersonPill/24_f.svg", + "staticwebassets/icons/PersonPill/24_r.svg", + "staticwebassets/icons/PersonProhibited/16_f.svg", + "staticwebassets/icons/PersonProhibited/16_r.svg", + "staticwebassets/icons/PersonProhibited/20_f.svg", + "staticwebassets/icons/PersonProhibited/20_r.svg", + "staticwebassets/icons/PersonProhibited/24_f.svg", + "staticwebassets/icons/PersonProhibited/24_r.svg", + "staticwebassets/icons/PersonProhibited/28_f.svg", + "staticwebassets/icons/PersonProhibited/28_r.svg", + "staticwebassets/icons/PersonQuestionMark/16_f.svg", + "staticwebassets/icons/PersonQuestionMark/16_r.svg", + "staticwebassets/icons/PersonQuestionMark/20_f.svg", + "staticwebassets/icons/PersonQuestionMark/20_r.svg", + "staticwebassets/icons/PersonQuestionMark/24_f.svg", + "staticwebassets/icons/PersonQuestionMark/24_r.svg", + "staticwebassets/icons/PersonRibbon/16_f.svg", + "staticwebassets/icons/PersonRibbon/16_r.svg", + "staticwebassets/icons/PersonRibbon/20_f.svg", + "staticwebassets/icons/PersonRibbon/20_r.svg", + "staticwebassets/icons/PersonRunning/20_f.svg", + "staticwebassets/icons/PersonRunning/20_r.svg", + "staticwebassets/icons/PersonSearch/16_f.svg", + "staticwebassets/icons/PersonSearch/16_r.svg", + "staticwebassets/icons/PersonSearch/20_f.svg", + "staticwebassets/icons/PersonSearch/20_r.svg", + "staticwebassets/icons/PersonSearch/24_f.svg", + "staticwebassets/icons/PersonSearch/24_r.svg", + "staticwebassets/icons/PersonSearch/32_f.svg", + "staticwebassets/icons/PersonSearch/32_r.svg", + "staticwebassets/icons/PersonSettings/16_f.svg", + "staticwebassets/icons/PersonSettings/16_r.svg", + "staticwebassets/icons/PersonSettings/20_f.svg", + "staticwebassets/icons/PersonSettings/20_r.svg", + "staticwebassets/icons/PersonSquare/20_f.svg", + "staticwebassets/icons/PersonSquare/20_r.svg", + "staticwebassets/icons/PersonSquare/24_f.svg", + "staticwebassets/icons/PersonSquare/24_r.svg", + "staticwebassets/icons/PersonStanding/16_f.svg", + "staticwebassets/icons/PersonStanding/16_r.svg", + "staticwebassets/icons/PersonStar/16_f.svg", + "staticwebassets/icons/PersonStar/16_r.svg", + "staticwebassets/icons/PersonStar/20_f.svg", + "staticwebassets/icons/PersonStar/20_r.svg", + "staticwebassets/icons/PersonStar/24_f.svg", + "staticwebassets/icons/PersonStar/24_r.svg", + "staticwebassets/icons/PersonStar/28_f.svg", + "staticwebassets/icons/PersonStar/28_r.svg", + "staticwebassets/icons/PersonStar/32_f.svg", + "staticwebassets/icons/PersonStar/32_r.svg", + "staticwebassets/icons/PersonStar/48_f.svg", + "staticwebassets/icons/PersonStar/48_r.svg", + "staticwebassets/icons/PersonStarburst/20_f.svg", + "staticwebassets/icons/PersonStarburst/20_r.svg", + "staticwebassets/icons/PersonStarburst/24_f.svg", + "staticwebassets/icons/PersonStarburst/24_r.svg", + "staticwebassets/icons/PersonSubtract/16_f.svg", + "staticwebassets/icons/PersonSubtract/16_r.svg", + "staticwebassets/icons/PersonSubtract/20_f.svg", + "staticwebassets/icons/PersonSubtract/20_r.svg", + "staticwebassets/icons/PersonSupport/16_f.svg", + "staticwebassets/icons/PersonSupport/16_r.svg", + "staticwebassets/icons/PersonSupport/20_f.svg", + "staticwebassets/icons/PersonSupport/20_r.svg", + "staticwebassets/icons/PersonSupport/24_f.svg", + "staticwebassets/icons/PersonSupport/24_r.svg", + "staticwebassets/icons/PersonSwap/16_f.svg", + "staticwebassets/icons/PersonSwap/16_r.svg", + "staticwebassets/icons/PersonSwap/20_f.svg", + "staticwebassets/icons/PersonSwap/20_r.svg", + "staticwebassets/icons/PersonSwap/24_f.svg", + "staticwebassets/icons/PersonSwap/24_r.svg", + "staticwebassets/icons/PersonSync/16_f.svg", + "staticwebassets/icons/PersonSync/16_r.svg", + "staticwebassets/icons/PersonSync/20_f.svg", + "staticwebassets/icons/PersonSync/20_r.svg", + "staticwebassets/icons/PersonSync/24_f.svg", + "staticwebassets/icons/PersonSync/24_r.svg", + "staticwebassets/icons/PersonSync/28_f.svg", + "staticwebassets/icons/PersonSync/28_r.svg", + "staticwebassets/icons/PersonSync/32_f.svg", + "staticwebassets/icons/PersonSync/32_r.svg", + "staticwebassets/icons/PersonSync/48_f.svg", + "staticwebassets/icons/PersonSync/48_r.svg", + "staticwebassets/icons/PersonTag/20_f.svg", + "staticwebassets/icons/PersonTag/20_r.svg", + "staticwebassets/icons/PersonTag/24_f.svg", + "staticwebassets/icons/PersonTag/24_r.svg", + "staticwebassets/icons/PersonTag/28_f.svg", + "staticwebassets/icons/PersonTag/28_r.svg", + "staticwebassets/icons/PersonTag/32_f.svg", + "staticwebassets/icons/PersonTag/32_r.svg", + "staticwebassets/icons/PersonTag/48_f.svg", + "staticwebassets/icons/PersonTag/48_r.svg", + "staticwebassets/icons/PersonVoice/20_f.svg", + "staticwebassets/icons/PersonVoice/20_r.svg", + "staticwebassets/icons/PersonVoice/24_f.svg", + "staticwebassets/icons/PersonVoice/24_r.svg", + "staticwebassets/icons/PersonWalking/16_f.svg", + "staticwebassets/icons/PersonWalking/16_r.svg", + "staticwebassets/icons/PersonWalking/20_f.svg", + "staticwebassets/icons/PersonWalking/20_r.svg", + "staticwebassets/icons/PersonWalking/24_f.svg", + "staticwebassets/icons/PersonWalking/24_r.svg", + "staticwebassets/icons/PersonWrench/20_f.svg", + "staticwebassets/icons/PersonWrench/20_r.svg", + "staticwebassets/icons/Phone/12_f.svg", + "staticwebassets/icons/Phone/12_r.svg", + "staticwebassets/icons/Phone/16_f.svg", + "staticwebassets/icons/Phone/16_r.svg", + "staticwebassets/icons/Phone/20_f.svg", + "staticwebassets/icons/Phone/20_r.svg", + "staticwebassets/icons/Phone/24_f.svg", + "staticwebassets/icons/Phone/24_r.svg", + "staticwebassets/icons/Phone/28_f.svg", + "staticwebassets/icons/Phone/28_r.svg", + "staticwebassets/icons/Phone/32_f.svg", + "staticwebassets/icons/Phone/32_r.svg", + "staticwebassets/icons/Phone/48_f.svg", + "staticwebassets/icons/Phone/48_r.svg", + "staticwebassets/icons/PhoneAdd/20_f.svg", + "staticwebassets/icons/PhoneAdd/20_r.svg", + "staticwebassets/icons/PhoneAdd/24_f.svg", + "staticwebassets/icons/PhoneAdd/24_r.svg", + "staticwebassets/icons/PhoneArrowRight/20_f.svg", + "staticwebassets/icons/PhoneArrowRight/20_r.svg", + "staticwebassets/icons/PhoneArrowRight/24_f.svg", + "staticwebassets/icons/PhoneArrowRight/24_r.svg", + "staticwebassets/icons/PhoneChat/16_f.svg", + "staticwebassets/icons/PhoneChat/16_r.svg", + "staticwebassets/icons/PhoneChat/20_f.svg", + "staticwebassets/icons/PhoneChat/20_r.svg", + "staticwebassets/icons/PhoneChat/24_f.svg", + "staticwebassets/icons/PhoneChat/24_r.svg", + "staticwebassets/icons/PhoneChat/28_f.svg", + "staticwebassets/icons/PhoneChat/28_r.svg", + "staticwebassets/icons/PhoneCheckmark/16_f.svg", + "staticwebassets/icons/PhoneCheckmark/16_r.svg", + "staticwebassets/icons/PhoneCheckmark/20_f.svg", + "staticwebassets/icons/PhoneCheckmark/20_r.svg", + "staticwebassets/icons/PhoneDesktop/16_f.svg", + "staticwebassets/icons/PhoneDesktop/16_r.svg", + "staticwebassets/icons/PhoneDesktop/20_f.svg", + "staticwebassets/icons/PhoneDesktop/20_r.svg", + "staticwebassets/icons/PhoneDesktop/24_f.svg", + "staticwebassets/icons/PhoneDesktop/24_r.svg", + "staticwebassets/icons/PhoneDesktop/28_f.svg", + "staticwebassets/icons/PhoneDesktop/28_r.svg", + "staticwebassets/icons/PhoneDesktop/32_f.svg", + "staticwebassets/icons/PhoneDesktop/32_r.svg", + "staticwebassets/icons/PhoneDesktop/48_f.svg", + "staticwebassets/icons/PhoneDesktop/48_r.svg", + "staticwebassets/icons/PhoneDesktopAdd/20_f.svg", + "staticwebassets/icons/PhoneDesktopAdd/20_r.svg", + "staticwebassets/icons/PhoneDismiss/20_f.svg", + "staticwebassets/icons/PhoneDismiss/20_r.svg", + "staticwebassets/icons/PhoneDismiss/24_f.svg", + "staticwebassets/icons/PhoneDismiss/24_r.svg", + "staticwebassets/icons/PhoneEdit/20_f.svg", + "staticwebassets/icons/PhoneEdit/20_r.svg", + "staticwebassets/icons/PhoneEdit/24_f.svg", + "staticwebassets/icons/PhoneEdit/24_r.svg", + "staticwebassets/icons/PhoneEraser/16_f.svg", + "staticwebassets/icons/PhoneEraser/16_r.svg", + "staticwebassets/icons/PhoneEraser/20_f.svg", + "staticwebassets/icons/PhoneEraser/20_r.svg", + "staticwebassets/icons/PhoneKey/20_f.svg", + "staticwebassets/icons/PhoneKey/20_r.svg", + "staticwebassets/icons/PhoneKey/24_f.svg", + "staticwebassets/icons/PhoneKey/24_r.svg", + "staticwebassets/icons/PhoneLaptop/16_f.svg", + "staticwebassets/icons/PhoneLaptop/16_r.svg", + "staticwebassets/icons/PhoneLaptop/20_f.svg", + "staticwebassets/icons/PhoneLaptop/20_r.svg", + "staticwebassets/icons/PhoneLaptop/24_f.svg", + "staticwebassets/icons/PhoneLaptop/24_r.svg", + "staticwebassets/icons/PhoneLaptop/32_f.svg", + "staticwebassets/icons/PhoneLaptop/32_r.svg", + "staticwebassets/icons/PhoneLinkSetup/20_f.svg", + "staticwebassets/icons/PhoneLinkSetup/20_r.svg", + "staticwebassets/icons/PhoneLinkSetup/24_f.svg", + "staticwebassets/icons/PhoneLinkSetup/24_r.svg", + "staticwebassets/icons/PhoneLock/20_f.svg", + "staticwebassets/icons/PhoneLock/20_r.svg", + "staticwebassets/icons/PhoneLock/24_f.svg", + "staticwebassets/icons/PhoneLock/24_r.svg", + "staticwebassets/icons/PhonePageHeader/20_f.svg", + "staticwebassets/icons/PhonePageHeader/20_r.svg", + "staticwebassets/icons/PhonePageHeader/24_f.svg", + "staticwebassets/icons/PhonePageHeader/24_r.svg", + "staticwebassets/icons/PhonePagination/20_f.svg", + "staticwebassets/icons/PhonePagination/20_r.svg", + "staticwebassets/icons/PhonePagination/24_f.svg", + "staticwebassets/icons/PhonePagination/24_r.svg", + "staticwebassets/icons/PhoneScreenTime/20_f.svg", + "staticwebassets/icons/PhoneScreenTime/20_r.svg", + "staticwebassets/icons/PhoneScreenTime/24_f.svg", + "staticwebassets/icons/PhoneScreenTime/24_r.svg", + "staticwebassets/icons/PhoneShake/20_f.svg", + "staticwebassets/icons/PhoneShake/20_r.svg", + "staticwebassets/icons/PhoneShake/24_f.svg", + "staticwebassets/icons/PhoneShake/24_r.svg", + "staticwebassets/icons/PhoneSpanIn/16_f.svg", + "staticwebassets/icons/PhoneSpanIn/16_r.svg", + "staticwebassets/icons/PhoneSpanIn/20_f.svg", + "staticwebassets/icons/PhoneSpanIn/20_r.svg", + "staticwebassets/icons/PhoneSpanIn/24_f.svg", + "staticwebassets/icons/PhoneSpanIn/24_r.svg", + "staticwebassets/icons/PhoneSpanIn/28_f.svg", + "staticwebassets/icons/PhoneSpanIn/28_r.svg", + "staticwebassets/icons/PhoneSpanOut/16_f.svg", + "staticwebassets/icons/PhoneSpanOut/16_r.svg", + "staticwebassets/icons/PhoneSpanOut/20_f.svg", + "staticwebassets/icons/PhoneSpanOut/20_r.svg", + "staticwebassets/icons/PhoneSpanOut/24_f.svg", + "staticwebassets/icons/PhoneSpanOut/24_r.svg", + "staticwebassets/icons/PhoneSpanOut/28_f.svg", + "staticwebassets/icons/PhoneSpanOut/28_r.svg", + "staticwebassets/icons/PhoneSpeaker/20_f.svg", + "staticwebassets/icons/PhoneSpeaker/20_r.svg", + "staticwebassets/icons/PhoneSpeaker/24_f.svg", + "staticwebassets/icons/PhoneSpeaker/24_r.svg", + "staticwebassets/icons/PhoneStatusBar/20_f.svg", + "staticwebassets/icons/PhoneStatusBar/20_r.svg", + "staticwebassets/icons/PhoneStatusBar/24_f.svg", + "staticwebassets/icons/PhoneStatusBar/24_r.svg", + "staticwebassets/icons/PhoneTablet/20_f.svg", + "staticwebassets/icons/PhoneTablet/20_r.svg", + "staticwebassets/icons/PhoneTablet/24_f.svg", + "staticwebassets/icons/PhoneTablet/24_r.svg", + "staticwebassets/icons/PhoneUpdate/20_f.svg", + "staticwebassets/icons/PhoneUpdate/20_r.svg", + "staticwebassets/icons/PhoneUpdate/24_f.svg", + "staticwebassets/icons/PhoneUpdate/24_r.svg", + "staticwebassets/icons/PhoneUpdateCheckmark/20_f.svg", + "staticwebassets/icons/PhoneUpdateCheckmark/20_r.svg", + "staticwebassets/icons/PhoneUpdateCheckmark/24_f.svg", + "staticwebassets/icons/PhoneUpdateCheckmark/24_r.svg", + "staticwebassets/icons/PhoneVerticalScroll/20_f.svg", + "staticwebassets/icons/PhoneVerticalScroll/20_r.svg", + "staticwebassets/icons/PhoneVerticalScroll/24_f.svg", + "staticwebassets/icons/PhoneVerticalScroll/24_r.svg", + "staticwebassets/icons/PhoneVibrate/20_f.svg", + "staticwebassets/icons/PhoneVibrate/20_r.svg", + "staticwebassets/icons/PhoneVibrate/24_f.svg", + "staticwebassets/icons/PhoneVibrate/24_r.svg", + "staticwebassets/icons/PhotoFilter/20_f.svg", + "staticwebassets/icons/PhotoFilter/20_r.svg", + "staticwebassets/icons/PhotoFilter/24_f.svg", + "staticwebassets/icons/PhotoFilter/24_r.svg", + "staticwebassets/icons/Pi/20_f.svg", + "staticwebassets/icons/Pi/20_r.svg", + "staticwebassets/icons/Pi/24_f.svg", + "staticwebassets/icons/Pi/24_r.svg", + "staticwebassets/icons/PictureInPicture/16_f.svg", + "staticwebassets/icons/PictureInPicture/16_r.svg", + "staticwebassets/icons/PictureInPicture/20_f.svg", + "staticwebassets/icons/PictureInPicture/20_r.svg", + "staticwebassets/icons/PictureInPicture/24_f.svg", + "staticwebassets/icons/PictureInPicture/24_r.svg", + "staticwebassets/icons/PictureInPictureEnter/16_f.svg", + "staticwebassets/icons/PictureInPictureEnter/16_r.svg", + "staticwebassets/icons/PictureInPictureEnter/20_f.svg", + "staticwebassets/icons/PictureInPictureEnter/20_r.svg", + "staticwebassets/icons/PictureInPictureEnter/24_f.svg", + "staticwebassets/icons/PictureInPictureEnter/24_r.svg", + "staticwebassets/icons/PictureInPictureExit/16_f.svg", + "staticwebassets/icons/PictureInPictureExit/16_r.svg", + "staticwebassets/icons/PictureInPictureExit/20_f.svg", + "staticwebassets/icons/PictureInPictureExit/20_r.svg", + "staticwebassets/icons/PictureInPictureExit/24_f.svg", + "staticwebassets/icons/PictureInPictureExit/24_r.svg", + "staticwebassets/icons/Pill/16_f.svg", + "staticwebassets/icons/Pill/16_r.svg", + "staticwebassets/icons/Pill/20_f.svg", + "staticwebassets/icons/Pill/20_r.svg", + "staticwebassets/icons/Pill/24_f.svg", + "staticwebassets/icons/Pill/24_r.svg", + "staticwebassets/icons/Pill/28_f.svg", + "staticwebassets/icons/Pill/28_r.svg", + "staticwebassets/icons/Pin/12_f.svg", + "staticwebassets/icons/Pin/12_r.svg", + "staticwebassets/icons/Pin/16_f.svg", + "staticwebassets/icons/Pin/16_r.svg", + "staticwebassets/icons/Pin/20_f.svg", + "staticwebassets/icons/Pin/20_r.svg", + "staticwebassets/icons/Pin/24_f.svg", + "staticwebassets/icons/Pin/24_r.svg", + "staticwebassets/icons/Pin/28_f.svg", + "staticwebassets/icons/Pin/28_r.svg", + "staticwebassets/icons/Pin/32_f.svg", + "staticwebassets/icons/Pin/32_r.svg", + "staticwebassets/icons/Pin/48_f.svg", + "staticwebassets/icons/Pin/48_r.svg", + "staticwebassets/icons/PinOff/16_f.svg", + "staticwebassets/icons/PinOff/16_r.svg", + "staticwebassets/icons/PinOff/20_f.svg", + "staticwebassets/icons/PinOff/20_r.svg", + "staticwebassets/icons/PinOff/24_f.svg", + "staticwebassets/icons/PinOff/24_r.svg", + "staticwebassets/icons/PinOff/28_f.svg", + "staticwebassets/icons/PinOff/28_r.svg", + "staticwebassets/icons/PinOff/32_f.svg", + "staticwebassets/icons/PinOff/32_r.svg", + "staticwebassets/icons/PinOff/48_f.svg", + "staticwebassets/icons/PinOff/48_r.svg", + "staticwebassets/icons/Pipeline/20_f.svg", + "staticwebassets/icons/Pipeline/20_r.svg", + "staticwebassets/icons/Pipeline/24_f.svg", + "staticwebassets/icons/Pipeline/24_r.svg", + "staticwebassets/icons/Pipeline/32_f.svg", + "staticwebassets/icons/Pipeline/32_r.svg", + "staticwebassets/icons/PipelineAdd/20_f.svg", + "staticwebassets/icons/PipelineAdd/20_r.svg", + "staticwebassets/icons/PipelineAdd/32_f.svg", + "staticwebassets/icons/PipelineAdd/32_r.svg", + "staticwebassets/icons/PipelineArrowCurveDown/20_f.svg", + "staticwebassets/icons/PipelineArrowCurveDown/20_r.svg", + "staticwebassets/icons/PipelinePlay/20_f.svg", + "staticwebassets/icons/PipelinePlay/20_r.svg", + "staticwebassets/icons/Pivot/20_f.svg", + "staticwebassets/icons/Pivot/20_r.svg", + "staticwebassets/icons/Pivot/24_f.svg", + "staticwebassets/icons/Pivot/24_r.svg", + "staticwebassets/icons/PlantGrass/20_f.svg", + "staticwebassets/icons/PlantGrass/20_r.svg", + "staticwebassets/icons/PlantGrass/24_f.svg", + "staticwebassets/icons/PlantGrass/24_r.svg", + "staticwebassets/icons/PlantGrass/28_f.svg", + "staticwebassets/icons/PlantGrass/28_r.svg", + "staticwebassets/icons/PlantRagweed/20_f.svg", + "staticwebassets/icons/PlantRagweed/20_r.svg", + "staticwebassets/icons/PlantRagweed/24_f.svg", + "staticwebassets/icons/PlantRagweed/24_r.svg", + "staticwebassets/icons/PlantRagweed/28_f.svg", + "staticwebassets/icons/PlantRagweed/28_r.svg", + "staticwebassets/icons/Play/12_f.svg", + "staticwebassets/icons/Play/12_r.svg", + "staticwebassets/icons/Play/16_f.svg", + "staticwebassets/icons/Play/16_r.svg", + "staticwebassets/icons/Play/20_f.svg", + "staticwebassets/icons/Play/20_r.svg", + "staticwebassets/icons/Play/24_f.svg", + "staticwebassets/icons/Play/24_r.svg", + "staticwebassets/icons/Play/28_f.svg", + "staticwebassets/icons/Play/28_r.svg", + "staticwebassets/icons/Play/32_f.svg", + "staticwebassets/icons/Play/32_r.svg", + "staticwebassets/icons/Play/48_f.svg", + "staticwebassets/icons/Play/48_r.svg", + "staticwebassets/icons/PlayCircle/16_f.svg", + "staticwebassets/icons/PlayCircle/16_r.svg", + "staticwebassets/icons/PlayCircle/20_f.svg", + "staticwebassets/icons/PlayCircle/20_r.svg", + "staticwebassets/icons/PlayCircle/24_f.svg", + "staticwebassets/icons/PlayCircle/24_r.svg", + "staticwebassets/icons/PlayCircle/28_f.svg", + "staticwebassets/icons/PlayCircle/28_r.svg", + "staticwebassets/icons/PlayCircle/48_f.svg", + "staticwebassets/icons/PlayCircle/48_r.svg", + "staticwebassets/icons/PlayCircleHint/16_f.svg", + "staticwebassets/icons/PlayCircleHint/16_r.svg", + "staticwebassets/icons/PlayCircleHint/20_f.svg", + "staticwebassets/icons/PlayCircleHint/20_r.svg", + "staticwebassets/icons/PlayCircleHint/24_f.svg", + "staticwebassets/icons/PlayCircleHint/24_r.svg", + "staticwebassets/icons/PlayMultiple/16_f.svg", + "staticwebassets/icons/PlayMultiple/16_r.svg", + "staticwebassets/icons/PlaySettings/20_f.svg", + "staticwebassets/icons/PlaySettings/20_r.svg", + "staticwebassets/icons/PlayingCards/20_f.svg", + "staticwebassets/icons/PlayingCards/20_r.svg", + "staticwebassets/icons/PlugConnected/20_f.svg", + "staticwebassets/icons/PlugConnected/20_r.svg", + "staticwebassets/icons/PlugConnected/24_f.svg", + "staticwebassets/icons/PlugConnected/24_r.svg", + "staticwebassets/icons/PlugConnectedAdd/20_f.svg", + "staticwebassets/icons/PlugConnectedAdd/20_r.svg", + "staticwebassets/icons/PlugConnectedCheckmark/20_f.svg", + "staticwebassets/icons/PlugConnectedCheckmark/20_r.svg", + "staticwebassets/icons/PlugDisconnected/20_f.svg", + "staticwebassets/icons/PlugDisconnected/20_r.svg", + "staticwebassets/icons/PlugDisconnected/24_f.svg", + "staticwebassets/icons/PlugDisconnected/24_r.svg", + "staticwebassets/icons/PlugDisconnected/28_f.svg", + "staticwebassets/icons/PlugDisconnected/28_r.svg", + "staticwebassets/icons/PointScan/20_f.svg", + "staticwebassets/icons/PointScan/20_r.svg", + "staticwebassets/icons/PointScan/24_f.svg", + "staticwebassets/icons/PointScan/24_r.svg", + "staticwebassets/icons/Poll/16_f.svg", + "staticwebassets/icons/Poll/16_r.svg", + "staticwebassets/icons/Poll/20_f.svg", + "staticwebassets/icons/Poll/20_r.svg", + "staticwebassets/icons/Poll/24_f.svg", + "staticwebassets/icons/Poll/24_r.svg", + "staticwebassets/icons/PollHorizontal/16_f.svg", + "staticwebassets/icons/PollHorizontal/16_r.svg", + "staticwebassets/icons/PollHorizontal/20_f.svg", + "staticwebassets/icons/PollHorizontal/20_r.svg", + "staticwebassets/icons/PollHorizontal/24_f.svg", + "staticwebassets/icons/PollHorizontal/24_r.svg", + "staticwebassets/icons/PortHDMI/20_f.svg", + "staticwebassets/icons/PortHDMI/20_r.svg", + "staticwebassets/icons/PortHDMI/24_f.svg", + "staticwebassets/icons/PortHDMI/24_r.svg", + "staticwebassets/icons/PortMicroUSB/20_f.svg", + "staticwebassets/icons/PortMicroUSB/20_r.svg", + "staticwebassets/icons/PortMicroUSB/24_f.svg", + "staticwebassets/icons/PortMicroUSB/24_r.svg", + "staticwebassets/icons/PortUSBA/20_f.svg", + "staticwebassets/icons/PortUSBA/20_r.svg", + "staticwebassets/icons/PortUSBA/24_f.svg", + "staticwebassets/icons/PortUSBA/24_r.svg", + "staticwebassets/icons/PortUSBC/20_f.svg", + "staticwebassets/icons/PortUSBC/20_r.svg", + "staticwebassets/icons/PortUSBC/24_f.svg", + "staticwebassets/icons/PortUSBC/24_r.svg", + "staticwebassets/icons/PositionBackward/20_f.svg", + "staticwebassets/icons/PositionBackward/20_r.svg", + "staticwebassets/icons/PositionBackward/24_f.svg", + "staticwebassets/icons/PositionBackward/24_r.svg", + "staticwebassets/icons/PositionForward/20_f.svg", + "staticwebassets/icons/PositionForward/20_r.svg", + "staticwebassets/icons/PositionForward/24_f.svg", + "staticwebassets/icons/PositionForward/24_r.svg", + "staticwebassets/icons/PositionToBack/20_f.svg", + "staticwebassets/icons/PositionToBack/20_r.svg", + "staticwebassets/icons/PositionToBack/24_f.svg", + "staticwebassets/icons/PositionToBack/24_r.svg", + "staticwebassets/icons/PositionToFront/20_f.svg", + "staticwebassets/icons/PositionToFront/20_r.svg", + "staticwebassets/icons/PositionToFront/24_f.svg", + "staticwebassets/icons/PositionToFront/24_r.svg", + "staticwebassets/icons/Power/20_f.svg", + "staticwebassets/icons/Power/20_r.svg", + "staticwebassets/icons/Power/24_f.svg", + "staticwebassets/icons/Power/24_r.svg", + "staticwebassets/icons/Power/28_f.svg", + "staticwebassets/icons/Power/28_r.svg", + "staticwebassets/icons/Predictions/20_f.svg", + "staticwebassets/icons/Predictions/20_r.svg", + "staticwebassets/icons/Predictions/24_f.svg", + "staticwebassets/icons/Predictions/24_r.svg", + "staticwebassets/icons/Premium/12_f.svg", + "staticwebassets/icons/Premium/12_r.svg", + "staticwebassets/icons/Premium/16_f.svg", + "staticwebassets/icons/Premium/16_r.svg", + "staticwebassets/icons/Premium/20_f.svg", + "staticwebassets/icons/Premium/20_r.svg", + "staticwebassets/icons/Premium/24_f.svg", + "staticwebassets/icons/Premium/24_r.svg", + "staticwebassets/icons/Premium/28_f.svg", + "staticwebassets/icons/Premium/28_r.svg", + "staticwebassets/icons/Premium/32_f.svg", + "staticwebassets/icons/Premium/32_r.svg", + "staticwebassets/icons/PremiumPerson/16_f.svg", + "staticwebassets/icons/PremiumPerson/16_r.svg", + "staticwebassets/icons/PremiumPerson/20_f.svg", + "staticwebassets/icons/PremiumPerson/20_r.svg", + "staticwebassets/icons/PremiumPerson/24_f.svg", + "staticwebassets/icons/PremiumPerson/24_r.svg", + "staticwebassets/icons/PresenceAvailable/10_f.svg", + "staticwebassets/icons/PresenceAvailable/10_r.svg", + "staticwebassets/icons/PresenceAvailable/12_f.svg", + "staticwebassets/icons/PresenceAvailable/12_r.svg", + "staticwebassets/icons/PresenceAvailable/16_f.svg", + "staticwebassets/icons/PresenceAvailable/16_r.svg", + "staticwebassets/icons/PresenceAvailable/20_f.svg", + "staticwebassets/icons/PresenceAvailable/20_r.svg", + "staticwebassets/icons/PresenceAvailable/24_f.svg", + "staticwebassets/icons/PresenceAvailable/24_r.svg", + "staticwebassets/icons/PresenceAway/10_f.svg", + "staticwebassets/icons/PresenceAway/10_r.svg", + "staticwebassets/icons/PresenceAway/12_f.svg", + "staticwebassets/icons/PresenceAway/12_r.svg", + "staticwebassets/icons/PresenceAway/16_f.svg", + "staticwebassets/icons/PresenceAway/16_r.svg", + "staticwebassets/icons/PresenceAway/20_f.svg", + "staticwebassets/icons/PresenceAway/20_r.svg", + "staticwebassets/icons/PresenceAway/24_f.svg", + "staticwebassets/icons/PresenceAway/24_r.svg", + "staticwebassets/icons/PresenceBlocked/10_r.svg", + "staticwebassets/icons/PresenceBlocked/12_r.svg", + "staticwebassets/icons/PresenceBlocked/16_r.svg", + "staticwebassets/icons/PresenceBlocked/20_r.svg", + "staticwebassets/icons/PresenceBlocked/24_r.svg", + "staticwebassets/icons/PresenceBusy/10_f.svg", + "staticwebassets/icons/PresenceBusy/12_f.svg", + "staticwebassets/icons/PresenceBusy/16_f.svg", + "staticwebassets/icons/PresenceBusy/20_f.svg", + "staticwebassets/icons/PresenceBusy/24_f.svg", + "staticwebassets/icons/PresenceDND/10_f.svg", + "staticwebassets/icons/PresenceDND/10_r.svg", + "staticwebassets/icons/PresenceDND/12_f.svg", + "staticwebassets/icons/PresenceDND/12_r.svg", + "staticwebassets/icons/PresenceDND/16_f.svg", + "staticwebassets/icons/PresenceDND/16_r.svg", + "staticwebassets/icons/PresenceDND/20_f.svg", + "staticwebassets/icons/PresenceDND/20_r.svg", + "staticwebassets/icons/PresenceDND/24_f.svg", + "staticwebassets/icons/PresenceDND/24_r.svg", + "staticwebassets/icons/PresenceOOF/10_r.svg", + "staticwebassets/icons/PresenceOOF/12_r.svg", + "staticwebassets/icons/PresenceOOF/16_r.svg", + "staticwebassets/icons/PresenceOOF/20_r.svg", + "staticwebassets/icons/PresenceOOF/24_r.svg", + "staticwebassets/icons/PresenceOffline/10_r.svg", + "staticwebassets/icons/PresenceOffline/12_r.svg", + "staticwebassets/icons/PresenceOffline/16_r.svg", + "staticwebassets/icons/PresenceOffline/20_r.svg", + "staticwebassets/icons/PresenceOffline/24_r.svg", + "staticwebassets/icons/PresenceUnknown/10_r.svg", + "staticwebassets/icons/PresenceUnknown/12_r.svg", + "staticwebassets/icons/PresenceUnknown/16_r.svg", + "staticwebassets/icons/PresenceUnknown/20_r.svg", + "staticwebassets/icons/PresenceUnknown/24_r.svg", + "staticwebassets/icons/Presenter/20_f.svg", + "staticwebassets/icons/Presenter/20_r.svg", + "staticwebassets/icons/Presenter/24_f.svg", + "staticwebassets/icons/Presenter/24_r.svg", + "staticwebassets/icons/PresenterOff/20_f.svg", + "staticwebassets/icons/PresenterOff/20_r.svg", + "staticwebassets/icons/PresenterOff/24_f.svg", + "staticwebassets/icons/PresenterOff/24_r.svg", + "staticwebassets/icons/PreviewLink/16_f.svg", + "staticwebassets/icons/PreviewLink/16_r.svg", + "staticwebassets/icons/PreviewLink/20_f.svg", + "staticwebassets/icons/PreviewLink/20_r.svg", + "staticwebassets/icons/PreviewLink/24_f.svg", + "staticwebassets/icons/PreviewLink/24_r.svg", + "staticwebassets/icons/Previous/16_f.svg", + "staticwebassets/icons/Previous/16_r.svg", + "staticwebassets/icons/Previous/20_f.svg", + "staticwebassets/icons/Previous/20_r.svg", + "staticwebassets/icons/Previous/24_f.svg", + "staticwebassets/icons/Previous/24_r.svg", + "staticwebassets/icons/Previous/28_f.svg", + "staticwebassets/icons/Previous/28_r.svg", + "staticwebassets/icons/Previous/32_f.svg", + "staticwebassets/icons/Previous/32_r.svg", + "staticwebassets/icons/Previous/48_f.svg", + "staticwebassets/icons/Previous/48_r.svg", + "staticwebassets/icons/Print/16_f.svg", + "staticwebassets/icons/Print/16_r.svg", + "staticwebassets/icons/Print/20_f.svg", + "staticwebassets/icons/Print/20_r.svg", + "staticwebassets/icons/Print/24_f.svg", + "staticwebassets/icons/Print/24_r.svg", + "staticwebassets/icons/Print/28_f.svg", + "staticwebassets/icons/Print/28_r.svg", + "staticwebassets/icons/Print/32_f.svg", + "staticwebassets/icons/Print/32_r.svg", + "staticwebassets/icons/Print/48_f.svg", + "staticwebassets/icons/Print/48_r.svg", + "staticwebassets/icons/PrintAdd/20_f.svg", + "staticwebassets/icons/PrintAdd/20_r.svg", + "staticwebassets/icons/PrintAdd/24_f.svg", + "staticwebassets/icons/PrintAdd/24_r.svg", + "staticwebassets/icons/Production/20_f.svg", + "staticwebassets/icons/Production/20_r.svg", + "staticwebassets/icons/Production/24_f.svg", + "staticwebassets/icons/Production/24_r.svg", + "staticwebassets/icons/ProductionCheckmark/20_f.svg", + "staticwebassets/icons/ProductionCheckmark/20_r.svg", + "staticwebassets/icons/ProductionCheckmark/24_f.svg", + "staticwebassets/icons/ProductionCheckmark/24_r.svg", + "staticwebassets/icons/Prohibited/12_f.svg", + "staticwebassets/icons/Prohibited/12_r.svg", + "staticwebassets/icons/Prohibited/16_f.svg", + "staticwebassets/icons/Prohibited/16_r.svg", + "staticwebassets/icons/Prohibited/20_f.svg", + "staticwebassets/icons/Prohibited/20_r.svg", + "staticwebassets/icons/Prohibited/24_f.svg", + "staticwebassets/icons/Prohibited/24_r.svg", + "staticwebassets/icons/Prohibited/28_f.svg", + "staticwebassets/icons/Prohibited/28_r.svg", + "staticwebassets/icons/Prohibited/48_f.svg", + "staticwebassets/icons/Prohibited/48_r.svg", + "staticwebassets/icons/ProhibitedMultiple/16_f.svg", + "staticwebassets/icons/ProhibitedMultiple/16_r.svg", + "staticwebassets/icons/ProhibitedMultiple/20_f.svg", + "staticwebassets/icons/ProhibitedMultiple/20_r.svg", + "staticwebassets/icons/ProhibitedMultiple/24_f.svg", + "staticwebassets/icons/ProhibitedMultiple/24_r.svg", + "staticwebassets/icons/ProhibitedNote/20_f.svg", + "staticwebassets/icons/ProhibitedNote/20_r.svg", + "staticwebassets/icons/ProjectionScreen/16_f.svg", + "staticwebassets/icons/ProjectionScreen/16_r.svg", + "staticwebassets/icons/ProjectionScreen/20_f.svg", + "staticwebassets/icons/ProjectionScreen/20_r.svg", + "staticwebassets/icons/ProjectionScreen/24_f.svg", + "staticwebassets/icons/ProjectionScreen/24_r.svg", + "staticwebassets/icons/ProjectionScreen/28_f.svg", + "staticwebassets/icons/ProjectionScreen/28_r.svg", + "staticwebassets/icons/ProjectionScreenDismiss/16_f.svg", + "staticwebassets/icons/ProjectionScreenDismiss/16_r.svg", + "staticwebassets/icons/ProjectionScreenDismiss/20_f.svg", + "staticwebassets/icons/ProjectionScreenDismiss/20_r.svg", + "staticwebassets/icons/ProjectionScreenDismiss/24_f.svg", + "staticwebassets/icons/ProjectionScreenDismiss/24_r.svg", + "staticwebassets/icons/ProjectionScreenDismiss/28_f.svg", + "staticwebassets/icons/ProjectionScreenDismiss/28_r.svg", + "staticwebassets/icons/ProjectionScreenText/24_f.svg", + "staticwebassets/icons/ProjectionScreenText/24_r.svg", + "staticwebassets/icons/ProtocolHandler/16_f.svg", + "staticwebassets/icons/ProtocolHandler/16_r.svg", + "staticwebassets/icons/ProtocolHandler/20_f.svg", + "staticwebassets/icons/ProtocolHandler/20_r.svg", + "staticwebassets/icons/ProtocolHandler/24_f.svg", + "staticwebassets/icons/ProtocolHandler/24_r.svg", + "staticwebassets/icons/Pulse/20_f.svg", + "staticwebassets/icons/Pulse/20_r.svg", + "staticwebassets/icons/Pulse/24_f.svg", + "staticwebassets/icons/Pulse/24_r.svg", + "staticwebassets/icons/Pulse/28_f.svg", + "staticwebassets/icons/Pulse/28_r.svg", + "staticwebassets/icons/Pulse/32_f.svg", + "staticwebassets/icons/Pulse/32_r.svg", + "staticwebassets/icons/PulseSquare/20_f.svg", + "staticwebassets/icons/PulseSquare/20_r.svg", + "staticwebassets/icons/PulseSquare/24_f.svg", + "staticwebassets/icons/PulseSquare/24_r.svg", + "staticwebassets/icons/PuzzleCube/16_f.svg", + "staticwebassets/icons/PuzzleCube/16_r.svg", + "staticwebassets/icons/PuzzleCube/20_f.svg", + "staticwebassets/icons/PuzzleCube/20_r.svg", + "staticwebassets/icons/PuzzleCube/24_f.svg", + "staticwebassets/icons/PuzzleCube/24_r.svg", + "staticwebassets/icons/PuzzleCube/28_f.svg", + "staticwebassets/icons/PuzzleCube/28_r.svg", + "staticwebassets/icons/PuzzleCube/48_f.svg", + "staticwebassets/icons/PuzzleCube/48_r.svg", + "staticwebassets/icons/PuzzleCubePiece/20_f.svg", + "staticwebassets/icons/PuzzleCubePiece/20_r.svg", + "staticwebassets/icons/PuzzlePieceShield/20_f.svg", + "staticwebassets/icons/PuzzlePieceShield/20_r.svg", + "staticwebassets/icons/Puzzlepiece/16_f.svg", + "staticwebassets/icons/Puzzlepiece/16_r.svg", + "staticwebassets/icons/Puzzlepiece/20_f.svg", + "staticwebassets/icons/Puzzlepiece/20_r.svg", + "staticwebassets/icons/Puzzlepiece/24_f.svg", + "staticwebassets/icons/Puzzlepiece/24_r.svg", + "staticwebassets/icons/QRCode/20_f.svg", + "staticwebassets/icons/QRCode/20_r.svg", + "staticwebassets/icons/QRCode/24_f.svg", + "staticwebassets/icons/QRCode/24_r.svg", + "staticwebassets/icons/QRCode/28_f.svg", + "staticwebassets/icons/QRCode/28_r.svg", + "staticwebassets/icons/Question/16_f.svg", + "staticwebassets/icons/Question/16_r.svg", + "staticwebassets/icons/Question/20_f.svg", + "staticwebassets/icons/Question/20_r.svg", + "staticwebassets/icons/Question/24_f.svg", + "staticwebassets/icons/Question/24_r.svg", + "staticwebassets/icons/Question/28_f.svg", + "staticwebassets/icons/Question/28_r.svg", + "staticwebassets/icons/Question/48_f.svg", + "staticwebassets/icons/Question/48_r.svg", + "staticwebassets/icons/QuestionCircle/12_f.svg", + "staticwebassets/icons/QuestionCircle/12_r.svg", + "staticwebassets/icons/QuestionCircle/16_f.svg", + "staticwebassets/icons/QuestionCircle/16_r.svg", + "staticwebassets/icons/QuestionCircle/20_f.svg", + "staticwebassets/icons/QuestionCircle/20_r.svg", + "staticwebassets/icons/QuestionCircle/24_f.svg", + "staticwebassets/icons/QuestionCircle/24_r.svg", + "staticwebassets/icons/QuestionCircle/28_f.svg", + "staticwebassets/icons/QuestionCircle/28_r.svg", + "staticwebassets/icons/QuestionCircle/32_f.svg", + "staticwebassets/icons/QuestionCircle/32_r.svg", + "staticwebassets/icons/QuestionCircle/48_f.svg", + "staticwebassets/icons/QuestionCircle/48_r.svg", + "staticwebassets/icons/QuizNew/20_f.svg", + "staticwebassets/icons/QuizNew/20_r.svg", + "staticwebassets/icons/QuizNew/24_f.svg", + "staticwebassets/icons/QuizNew/24_r.svg", + "staticwebassets/icons/QuizNew/28_f.svg", + "staticwebassets/icons/QuizNew/28_r.svg", + "staticwebassets/icons/QuizNew/48_f.svg", + "staticwebassets/icons/QuizNew/48_r.svg", + "staticwebassets/icons/RAM/16_f.svg", + "staticwebassets/icons/RAM/16_r.svg", + "staticwebassets/icons/RAM/20_f.svg", + "staticwebassets/icons/RAM/20_r.svg", + "staticwebassets/icons/RSS/20_f.svg", + "staticwebassets/icons/RSS/20_r.svg", + "staticwebassets/icons/RSS/24_f.svg", + "staticwebassets/icons/RSS/24_r.svg", + "staticwebassets/icons/Radar/20_f.svg", + "staticwebassets/icons/Radar/20_r.svg", + "staticwebassets/icons/RadarCheckmark/20_f.svg", + "staticwebassets/icons/RadarCheckmark/20_r.svg", + "staticwebassets/icons/RadarRectangleMultiple/20_f.svg", + "staticwebassets/icons/RadarRectangleMultiple/20_r.svg", + "staticwebassets/icons/RadioButton/16_f.svg", + "staticwebassets/icons/RadioButton/16_r.svg", + "staticwebassets/icons/RadioButton/20_f.svg", + "staticwebassets/icons/RadioButton/20_r.svg", + "staticwebassets/icons/RadioButton/24_f.svg", + "staticwebassets/icons/RadioButton/24_r.svg", + "staticwebassets/icons/RadioButtonOff/16_f.svg", + "staticwebassets/icons/RadioButtonOff/16_r.svg", + "staticwebassets/icons/RatingMature/16_f.svg", + "staticwebassets/icons/RatingMature/16_r.svg", + "staticwebassets/icons/RatingMature/20_f.svg", + "staticwebassets/icons/RatingMature/20_r.svg", + "staticwebassets/icons/RatingMature/24_f.svg", + "staticwebassets/icons/RatingMature/24_r.svg", + "staticwebassets/icons/RatioOneToOne/20_f.svg", + "staticwebassets/icons/RatioOneToOne/20_r.svg", + "staticwebassets/icons/RatioOneToOne/24_f.svg", + "staticwebassets/icons/RatioOneToOne/24_r.svg", + "staticwebassets/icons/ReOrder/16_f.svg", + "staticwebassets/icons/ReOrder/16_r.svg", + "staticwebassets/icons/ReOrder/20_f.svg", + "staticwebassets/icons/ReOrder/20_r.svg", + "staticwebassets/icons/ReOrder/24_f.svg", + "staticwebassets/icons/ReOrder/24_r.svg", + "staticwebassets/icons/ReOrderDotsHorizontal/16_f.svg", + "staticwebassets/icons/ReOrderDotsHorizontal/16_r.svg", + "staticwebassets/icons/ReOrderDotsHorizontal/20_f.svg", + "staticwebassets/icons/ReOrderDotsHorizontal/20_r.svg", + "staticwebassets/icons/ReOrderDotsHorizontal/24_f.svg", + "staticwebassets/icons/ReOrderDotsHorizontal/24_r.svg", + "staticwebassets/icons/ReOrderDotsVertical/16_f.svg", + "staticwebassets/icons/ReOrderDotsVertical/16_r.svg", + "staticwebassets/icons/ReOrderDotsVertical/20_f.svg", + "staticwebassets/icons/ReOrderDotsVertical/20_r.svg", + "staticwebassets/icons/ReOrderDotsVertical/24_f.svg", + "staticwebassets/icons/ReOrderDotsVertical/24_r.svg", + "staticwebassets/icons/ReadAloud/16_f.svg", + "staticwebassets/icons/ReadAloud/16_r.svg", + "staticwebassets/icons/ReadAloud/20_f.svg", + "staticwebassets/icons/ReadAloud/20_r.svg", + "staticwebassets/icons/ReadAloud/24_f.svg", + "staticwebassets/icons/ReadAloud/24_r.svg", + "staticwebassets/icons/ReadAloud/28_f.svg", + "staticwebassets/icons/ReadAloud/28_r.svg", + "staticwebassets/icons/ReadingList/16_f.svg", + "staticwebassets/icons/ReadingList/16_r.svg", + "staticwebassets/icons/ReadingList/20_f.svg", + "staticwebassets/icons/ReadingList/20_r.svg", + "staticwebassets/icons/ReadingList/24_f.svg", + "staticwebassets/icons/ReadingList/24_r.svg", + "staticwebassets/icons/ReadingList/28_f.svg", + "staticwebassets/icons/ReadingList/28_r.svg", + "staticwebassets/icons/ReadingListAdd/16_f.svg", + "staticwebassets/icons/ReadingListAdd/16_r.svg", + "staticwebassets/icons/ReadingListAdd/20_f.svg", + "staticwebassets/icons/ReadingListAdd/20_r.svg", + "staticwebassets/icons/ReadingListAdd/24_f.svg", + "staticwebassets/icons/ReadingListAdd/24_r.svg", + "staticwebassets/icons/ReadingListAdd/28_f.svg", + "staticwebassets/icons/ReadingListAdd/28_r.svg", + "staticwebassets/icons/ReadingModeMobile/20_f.svg", + "staticwebassets/icons/ReadingModeMobile/20_r.svg", + "staticwebassets/icons/ReadingModeMobile/24_f.svg", + "staticwebassets/icons/ReadingModeMobile/24_r.svg", + "staticwebassets/icons/RealEstate/20_f.svg", + "staticwebassets/icons/RealEstate/20_r.svg", + "staticwebassets/icons/RealEstate/24_f.svg", + "staticwebassets/icons/RealEstate/24_r.svg", + "staticwebassets/icons/Receipt/16_f.svg", + "staticwebassets/icons/Receipt/16_r.svg", + "staticwebassets/icons/Receipt/20_f.svg", + "staticwebassets/icons/Receipt/20_r.svg", + "staticwebassets/icons/Receipt/24_f.svg", + "staticwebassets/icons/Receipt/24_r.svg", + "staticwebassets/icons/Receipt/28_f.svg", + "staticwebassets/icons/Receipt/28_r.svg", + "staticwebassets/icons/Receipt/32_f.svg", + "staticwebassets/icons/Receipt/32_r.svg", + "staticwebassets/icons/ReceiptAdd/20_f.svg", + "staticwebassets/icons/ReceiptAdd/20_r.svg", + "staticwebassets/icons/ReceiptAdd/24_f.svg", + "staticwebassets/icons/ReceiptAdd/24_r.svg", + "staticwebassets/icons/ReceiptBag/20_f.svg", + "staticwebassets/icons/ReceiptBag/20_r.svg", + "staticwebassets/icons/ReceiptBag/24_f.svg", + "staticwebassets/icons/ReceiptBag/24_r.svg", + "staticwebassets/icons/ReceiptCube/20_f.svg", + "staticwebassets/icons/ReceiptCube/20_r.svg", + "staticwebassets/icons/ReceiptCube/24_f.svg", + "staticwebassets/icons/ReceiptCube/24_r.svg", + "staticwebassets/icons/ReceiptMoney/16_f.svg", + "staticwebassets/icons/ReceiptMoney/16_r.svg", + "staticwebassets/icons/ReceiptMoney/20_f.svg", + "staticwebassets/icons/ReceiptMoney/20_r.svg", + "staticwebassets/icons/ReceiptMoney/24_f.svg", + "staticwebassets/icons/ReceiptMoney/24_r.svg", + "staticwebassets/icons/ReceiptPlay/20_f.svg", + "staticwebassets/icons/ReceiptPlay/20_r.svg", + "staticwebassets/icons/ReceiptPlay/24_f.svg", + "staticwebassets/icons/ReceiptPlay/24_r.svg", + "staticwebassets/icons/ReceiptSearch/20_f.svg", + "staticwebassets/icons/ReceiptSearch/20_r.svg", + "staticwebassets/icons/ReceiptSparkles/16_f.svg", + "staticwebassets/icons/ReceiptSparkles/16_r.svg", + "staticwebassets/icons/ReceiptSparkles/20_f.svg", + "staticwebassets/icons/ReceiptSparkles/20_r.svg", + "staticwebassets/icons/ReceiptSparkles/24_f.svg", + "staticwebassets/icons/ReceiptSparkles/24_r.svg", + "staticwebassets/icons/Record/12_f.svg", + "staticwebassets/icons/Record/12_r.svg", + "staticwebassets/icons/Record/16_f.svg", + "staticwebassets/icons/Record/16_r.svg", + "staticwebassets/icons/Record/20_f.svg", + "staticwebassets/icons/Record/20_r.svg", + "staticwebassets/icons/Record/24_f.svg", + "staticwebassets/icons/Record/24_r.svg", + "staticwebassets/icons/Record/28_f.svg", + "staticwebassets/icons/Record/28_r.svg", + "staticwebassets/icons/Record/32_f.svg", + "staticwebassets/icons/Record/32_r.svg", + "staticwebassets/icons/Record/48_f.svg", + "staticwebassets/icons/Record/48_r.svg", + "staticwebassets/icons/RecordStop/12_f.svg", + "staticwebassets/icons/RecordStop/12_r.svg", + "staticwebassets/icons/RecordStop/16_f.svg", + "staticwebassets/icons/RecordStop/16_r.svg", + "staticwebassets/icons/RecordStop/20_f.svg", + "staticwebassets/icons/RecordStop/20_r.svg", + "staticwebassets/icons/RecordStop/24_f.svg", + "staticwebassets/icons/RecordStop/24_r.svg", + "staticwebassets/icons/RecordStop/28_f.svg", + "staticwebassets/icons/RecordStop/28_r.svg", + "staticwebassets/icons/RecordStop/32_f.svg", + "staticwebassets/icons/RecordStop/32_r.svg", + "staticwebassets/icons/RecordStop/48_f.svg", + "staticwebassets/icons/RecordStop/48_r.svg", + "staticwebassets/icons/RectangleLandscape/12_f.svg", + "staticwebassets/icons/RectangleLandscape/12_r.svg", + "staticwebassets/icons/RectangleLandscape/16_f.svg", + "staticwebassets/icons/RectangleLandscape/16_r.svg", + "staticwebassets/icons/RectangleLandscape/20_f.svg", + "staticwebassets/icons/RectangleLandscape/20_r.svg", + "staticwebassets/icons/RectangleLandscape/24_f.svg", + "staticwebassets/icons/RectangleLandscape/24_r.svg", + "staticwebassets/icons/RectangleLandscape/28_f.svg", + "staticwebassets/icons/RectangleLandscape/28_r.svg", + "staticwebassets/icons/RectangleLandscape/32_f.svg", + "staticwebassets/icons/RectangleLandscape/32_r.svg", + "staticwebassets/icons/RectangleLandscape/48_f.svg", + "staticwebassets/icons/RectangleLandscape/48_r.svg", + "staticwebassets/icons/RectanglePortraitLocationTarget/20_f.svg", + "staticwebassets/icons/RectanglePortraitLocationTarget/20_r.svg", + "staticwebassets/icons/Recycle/20_f.svg", + "staticwebassets/icons/Recycle/20_r.svg", + "staticwebassets/icons/Recycle/32_f.svg", + "staticwebassets/icons/Recycle/32_r.svg", + "staticwebassets/icons/Remote/16_f.svg", + "staticwebassets/icons/Remote/16_r.svg", + "staticwebassets/icons/Remote/20_f.svg", + "staticwebassets/icons/Remote/20_r.svg", + "staticwebassets/icons/Rename/16_f.svg", + "staticwebassets/icons/Rename/16_r.svg", + "staticwebassets/icons/Rename/20_f.svg", + "staticwebassets/icons/Rename/20_r.svg", + "staticwebassets/icons/Rename/24_f.svg", + "staticwebassets/icons/Rename/24_r.svg", + "staticwebassets/icons/Rename/28_f.svg", + "staticwebassets/icons/Rename/28_r.svg", + "staticwebassets/icons/Replay/20_f.svg", + "staticwebassets/icons/Replay/20_r.svg", + "staticwebassets/icons/Resize/20_f.svg", + "staticwebassets/icons/Resize/20_r.svg", + "staticwebassets/icons/Resize/24_f.svg", + "staticwebassets/icons/Resize/24_r.svg", + "staticwebassets/icons/ResizeImage/20_f.svg", + "staticwebassets/icons/ResizeImage/20_r.svg", + "staticwebassets/icons/ResizeImage/24_f.svg", + "staticwebassets/icons/ResizeImage/24_r.svg", + "staticwebassets/icons/ResizeLarge/16_f.svg", + "staticwebassets/icons/ResizeLarge/16_r.svg", + "staticwebassets/icons/ResizeLarge/20_f.svg", + "staticwebassets/icons/ResizeLarge/20_r.svg", + "staticwebassets/icons/ResizeLarge/24_f.svg", + "staticwebassets/icons/ResizeLarge/24_r.svg", + "staticwebassets/icons/ResizeSmall/16_f.svg", + "staticwebassets/icons/ResizeSmall/16_r.svg", + "staticwebassets/icons/ResizeSmall/20_f.svg", + "staticwebassets/icons/ResizeSmall/20_r.svg", + "staticwebassets/icons/ResizeSmall/24_f.svg", + "staticwebassets/icons/ResizeSmall/24_r.svg", + "staticwebassets/icons/ResizeTable/20_f.svg", + "staticwebassets/icons/ResizeTable/20_r.svg", + "staticwebassets/icons/ResizeTable/24_f.svg", + "staticwebassets/icons/ResizeTable/24_r.svg", + "staticwebassets/icons/ResizeVideo/20_f.svg", + "staticwebassets/icons/ResizeVideo/20_r.svg", + "staticwebassets/icons/ResizeVideo/24_f.svg", + "staticwebassets/icons/ResizeVideo/24_r.svg", + "staticwebassets/icons/Reward/12_f.svg", + "staticwebassets/icons/Reward/12_r.svg", + "staticwebassets/icons/Reward/16_f.svg", + "staticwebassets/icons/Reward/16_r.svg", + "staticwebassets/icons/Reward/20_f.svg", + "staticwebassets/icons/Reward/20_r.svg", + "staticwebassets/icons/Reward/24_f.svg", + "staticwebassets/icons/Reward/24_r.svg", + "staticwebassets/icons/Rewind/16_f.svg", + "staticwebassets/icons/Rewind/16_r.svg", + "staticwebassets/icons/Rewind/20_f.svg", + "staticwebassets/icons/Rewind/20_r.svg", + "staticwebassets/icons/Rewind/24_f.svg", + "staticwebassets/icons/Rewind/24_r.svg", + "staticwebassets/icons/Rewind/28_f.svg", + "staticwebassets/icons/Rewind/28_r.svg", + "staticwebassets/icons/Rhombus/16_f.svg", + "staticwebassets/icons/Rhombus/16_r.svg", + "staticwebassets/icons/Rhombus/20_f.svg", + "staticwebassets/icons/Rhombus/20_r.svg", + "staticwebassets/icons/Rhombus/24_f.svg", + "staticwebassets/icons/Rhombus/24_r.svg", + "staticwebassets/icons/Rhombus/28_f.svg", + "staticwebassets/icons/Rhombus/28_r.svg", + "staticwebassets/icons/Rhombus/32_f.svg", + "staticwebassets/icons/Rhombus/32_r.svg", + "staticwebassets/icons/Rhombus/48_f.svg", + "staticwebassets/icons/Rhombus/48_r.svg", + "staticwebassets/icons/Ribbon/12_f.svg", + "staticwebassets/icons/Ribbon/12_r.svg", + "staticwebassets/icons/Ribbon/16_f.svg", + "staticwebassets/icons/Ribbon/16_r.svg", + "staticwebassets/icons/Ribbon/20_f.svg", + "staticwebassets/icons/Ribbon/20_r.svg", + "staticwebassets/icons/Ribbon/24_f.svg", + "staticwebassets/icons/Ribbon/24_r.svg", + "staticwebassets/icons/Ribbon/32_f.svg", + "staticwebassets/icons/Ribbon/32_r.svg", + "staticwebassets/icons/RibbonAdd/20_f.svg", + "staticwebassets/icons/RibbonAdd/20_r.svg", + "staticwebassets/icons/RibbonAdd/24_f.svg", + "staticwebassets/icons/RibbonAdd/24_r.svg", + "staticwebassets/icons/RibbonOff/12_f.svg", + "staticwebassets/icons/RibbonOff/12_r.svg", + "staticwebassets/icons/RibbonOff/16_f.svg", + "staticwebassets/icons/RibbonOff/16_r.svg", + "staticwebassets/icons/RibbonOff/20_f.svg", + "staticwebassets/icons/RibbonOff/20_r.svg", + "staticwebassets/icons/RibbonOff/24_f.svg", + "staticwebassets/icons/RibbonOff/24_r.svg", + "staticwebassets/icons/RibbonOff/32_f.svg", + "staticwebassets/icons/RibbonOff/32_r.svg", + "staticwebassets/icons/RibbonStar/20_f.svg", + "staticwebassets/icons/RibbonStar/20_r.svg", + "staticwebassets/icons/RibbonStar/24_f.svg", + "staticwebassets/icons/RibbonStar/24_r.svg", + "staticwebassets/icons/RoadCone/16_f.svg", + "staticwebassets/icons/RoadCone/16_r.svg", + "staticwebassets/icons/RoadCone/20_f.svg", + "staticwebassets/icons/RoadCone/20_r.svg", + "staticwebassets/icons/RoadCone/24_f.svg", + "staticwebassets/icons/RoadCone/24_r.svg", + "staticwebassets/icons/RoadCone/28_f.svg", + "staticwebassets/icons/RoadCone/28_r.svg", + "staticwebassets/icons/RoadCone/32_f.svg", + "staticwebassets/icons/RoadCone/32_r.svg", + "staticwebassets/icons/RoadCone/48_f.svg", + "staticwebassets/icons/RoadCone/48_r.svg", + "staticwebassets/icons/Rocket/16_f.svg", + "staticwebassets/icons/Rocket/16_r.svg", + "staticwebassets/icons/Rocket/20_f.svg", + "staticwebassets/icons/Rocket/20_r.svg", + "staticwebassets/icons/Rocket/24_f.svg", + "staticwebassets/icons/Rocket/24_r.svg", + "staticwebassets/icons/RotateLeft/20_f.svg", + "staticwebassets/icons/RotateLeft/20_r.svg", + "staticwebassets/icons/RotateLeft/24_f.svg", + "staticwebassets/icons/RotateLeft/24_r.svg", + "staticwebassets/icons/RotateRight/20_f.svg", + "staticwebassets/icons/RotateRight/20_r.svg", + "staticwebassets/icons/RotateRight/24_f.svg", + "staticwebassets/icons/RotateRight/24_r.svg", + "staticwebassets/icons/Router/20_f.svg", + "staticwebassets/icons/Router/20_r.svg", + "staticwebassets/icons/Router/24_f.svg", + "staticwebassets/icons/Router/24_r.svg", + "staticwebassets/icons/RowTriple/20_f.svg", + "staticwebassets/icons/RowTriple/20_r.svg", + "staticwebassets/icons/RowTriple/24_f.svg", + "staticwebassets/icons/RowTriple/24_r.svg", + "staticwebassets/icons/Ruler/16_f.svg", + "staticwebassets/icons/Ruler/16_r.svg", + "staticwebassets/icons/Ruler/20_f.svg", + "staticwebassets/icons/Ruler/20_r.svg", + "staticwebassets/icons/Ruler/24_f.svg", + "staticwebassets/icons/Ruler/24_r.svg", + "staticwebassets/icons/Ruler/28_f.svg", + "staticwebassets/icons/Ruler/28_r.svg", + "staticwebassets/icons/Ruler/32_f.svg", + "staticwebassets/icons/Ruler/32_r.svg", + "staticwebassets/icons/Ruler/48_f.svg", + "staticwebassets/icons/Ruler/48_r.svg", + "staticwebassets/icons/Run/16_f.svg", + "staticwebassets/icons/Run/16_r.svg", + "staticwebassets/icons/Run/20_f.svg", + "staticwebassets/icons/Run/20_r.svg", + "staticwebassets/icons/Run/24_f.svg", + "staticwebassets/icons/Run/24_r.svg", + "staticwebassets/icons/SIM/16_f.svg", + "staticwebassets/icons/SIM/16_r.svg", + "staticwebassets/icons/SIM/20_f.svg", + "staticwebassets/icons/SIM/20_r.svg", + "staticwebassets/icons/SIM/24_f.svg", + "staticwebassets/icons/SIM/24_r.svg", + "staticwebassets/icons/Sanitize/20_f.svg", + "staticwebassets/icons/Sanitize/20_r.svg", + "staticwebassets/icons/Sanitize/24_f.svg", + "staticwebassets/icons/Sanitize/24_r.svg", + "staticwebassets/icons/Save/16_f.svg", + "staticwebassets/icons/Save/16_r.svg", + "staticwebassets/icons/Save/20_f.svg", + "staticwebassets/icons/Save/20_r.svg", + "staticwebassets/icons/Save/24_f.svg", + "staticwebassets/icons/Save/24_r.svg", + "staticwebassets/icons/Save/28_f.svg", + "staticwebassets/icons/Save/28_r.svg", + "staticwebassets/icons/SaveArrowRight/20_f.svg", + "staticwebassets/icons/SaveArrowRight/20_r.svg", + "staticwebassets/icons/SaveArrowRight/24_f.svg", + "staticwebassets/icons/SaveArrowRight/24_r.svg", + "staticwebassets/icons/SaveCopy/20_f.svg", + "staticwebassets/icons/SaveCopy/20_r.svg", + "staticwebassets/icons/SaveCopy/24_f.svg", + "staticwebassets/icons/SaveCopy/24_r.svg", + "staticwebassets/icons/SaveEdit/20_f.svg", + "staticwebassets/icons/SaveEdit/20_r.svg", + "staticwebassets/icons/SaveEdit/24_f.svg", + "staticwebassets/icons/SaveEdit/24_r.svg", + "staticwebassets/icons/SaveImage/20_f.svg", + "staticwebassets/icons/SaveImage/20_r.svg", + "staticwebassets/icons/SaveMultiple/16_f.svg", + "staticwebassets/icons/SaveMultiple/16_r.svg", + "staticwebassets/icons/SaveMultiple/20_f.svg", + "staticwebassets/icons/SaveMultiple/20_r.svg", + "staticwebassets/icons/SaveMultiple/24_f.svg", + "staticwebassets/icons/SaveMultiple/24_r.svg", + "staticwebassets/icons/SaveSearch/20_f.svg", + "staticwebassets/icons/SaveSearch/20_r.svg", + "staticwebassets/icons/SaveSync/20_f.svg", + "staticwebassets/icons/SaveSync/20_r.svg", + "staticwebassets/icons/Savings/16_f.svg", + "staticwebassets/icons/Savings/16_r.svg", + "staticwebassets/icons/Savings/20_f.svg", + "staticwebassets/icons/Savings/20_r.svg", + "staticwebassets/icons/Savings/24_f.svg", + "staticwebassets/icons/Savings/24_r.svg", + "staticwebassets/icons/ScaleFill/20_f.svg", + "staticwebassets/icons/ScaleFill/20_r.svg", + "staticwebassets/icons/ScaleFill/24_f.svg", + "staticwebassets/icons/ScaleFill/24_r.svg", + "staticwebassets/icons/ScaleFit/16_f.svg", + "staticwebassets/icons/ScaleFit/16_r.svg", + "staticwebassets/icons/ScaleFit/20_f.svg", + "staticwebassets/icons/ScaleFit/20_r.svg", + "staticwebassets/icons/ScaleFit/24_f.svg", + "staticwebassets/icons/ScaleFit/24_r.svg", + "staticwebassets/icons/Scales/20_f.svg", + "staticwebassets/icons/Scales/20_r.svg", + "staticwebassets/icons/Scales/24_f.svg", + "staticwebassets/icons/Scales/24_r.svg", + "staticwebassets/icons/Scales/32_f.svg", + "staticwebassets/icons/Scales/32_r.svg", + "staticwebassets/icons/Scan/16_f.svg", + "staticwebassets/icons/Scan/16_r.svg", + "staticwebassets/icons/Scan/20_f.svg", + "staticwebassets/icons/Scan/20_r.svg", + "staticwebassets/icons/Scan/24_f.svg", + "staticwebassets/icons/Scan/24_r.svg", + "staticwebassets/icons/ScanCamera/16_f.svg", + "staticwebassets/icons/ScanCamera/16_r.svg", + "staticwebassets/icons/ScanCamera/20_f.svg", + "staticwebassets/icons/ScanCamera/20_r.svg", + "staticwebassets/icons/ScanCamera/24_f.svg", + "staticwebassets/icons/ScanCamera/24_r.svg", + "staticwebassets/icons/ScanCamera/28_f.svg", + "staticwebassets/icons/ScanCamera/28_r.svg", + "staticwebassets/icons/ScanCamera/48_f.svg", + "staticwebassets/icons/ScanCamera/48_r.svg", + "staticwebassets/icons/ScanDash/12_f.svg", + "staticwebassets/icons/ScanDash/12_r.svg", + "staticwebassets/icons/ScanDash/16_f.svg", + "staticwebassets/icons/ScanDash/16_r.svg", + "staticwebassets/icons/ScanDash/20_f.svg", + "staticwebassets/icons/ScanDash/20_r.svg", + "staticwebassets/icons/ScanDash/24_f.svg", + "staticwebassets/icons/ScanDash/24_r.svg", + "staticwebassets/icons/ScanDash/28_f.svg", + "staticwebassets/icons/ScanDash/28_r.svg", + "staticwebassets/icons/ScanDash/32_f.svg", + "staticwebassets/icons/ScanDash/32_r.svg", + "staticwebassets/icons/ScanDash/48_f.svg", + "staticwebassets/icons/ScanDash/48_r.svg", + "staticwebassets/icons/ScanObject/20_f.svg", + "staticwebassets/icons/ScanObject/20_r.svg", + "staticwebassets/icons/ScanObject/24_f.svg", + "staticwebassets/icons/ScanObject/24_r.svg", + "staticwebassets/icons/ScanQRCode/24_f.svg", + "staticwebassets/icons/ScanQRCode/24_r.svg", + "staticwebassets/icons/ScanTable/20_f.svg", + "staticwebassets/icons/ScanTable/20_r.svg", + "staticwebassets/icons/ScanTable/24_f.svg", + "staticwebassets/icons/ScanTable/24_r.svg", + "staticwebassets/icons/ScanText/16_f.svg", + "staticwebassets/icons/ScanText/16_r.svg", + "staticwebassets/icons/ScanText/20_f.svg", + "staticwebassets/icons/ScanText/20_r.svg", + "staticwebassets/icons/ScanText/24_f.svg", + "staticwebassets/icons/ScanText/24_r.svg", + "staticwebassets/icons/ScanText/28_f.svg", + "staticwebassets/icons/ScanText/28_r.svg", + "staticwebassets/icons/ScanThumbUp/16_f.svg", + "staticwebassets/icons/ScanThumbUp/16_r.svg", + "staticwebassets/icons/ScanThumbUp/20_f.svg", + "staticwebassets/icons/ScanThumbUp/20_r.svg", + "staticwebassets/icons/ScanThumbUp/24_f.svg", + "staticwebassets/icons/ScanThumbUp/24_r.svg", + "staticwebassets/icons/ScanThumbUp/28_f.svg", + "staticwebassets/icons/ScanThumbUp/28_r.svg", + "staticwebassets/icons/ScanThumbUp/48_f.svg", + "staticwebassets/icons/ScanThumbUp/48_r.svg", + "staticwebassets/icons/ScanThumbUpOff/16_f.svg", + "staticwebassets/icons/ScanThumbUpOff/16_r.svg", + "staticwebassets/icons/ScanThumbUpOff/20_f.svg", + "staticwebassets/icons/ScanThumbUpOff/20_r.svg", + "staticwebassets/icons/ScanThumbUpOff/24_f.svg", + "staticwebassets/icons/ScanThumbUpOff/24_r.svg", + "staticwebassets/icons/ScanThumbUpOff/28_f.svg", + "staticwebassets/icons/ScanThumbUpOff/28_r.svg", + "staticwebassets/icons/ScanThumbUpOff/48_f.svg", + "staticwebassets/icons/ScanThumbUpOff/48_r.svg", + "staticwebassets/icons/ScanType/20_f.svg", + "staticwebassets/icons/ScanType/20_r.svg", + "staticwebassets/icons/ScanType/24_f.svg", + "staticwebassets/icons/ScanType/24_r.svg", + "staticwebassets/icons/ScanTypeCheckmark/20_f.svg", + "staticwebassets/icons/ScanTypeCheckmark/20_r.svg", + "staticwebassets/icons/ScanTypeCheckmark/24_f.svg", + "staticwebassets/icons/ScanTypeCheckmark/24_r.svg", + "staticwebassets/icons/ScanTypeOff/20_f.svg", + "staticwebassets/icons/ScanTypeOff/20_r.svg", + "staticwebassets/icons/Scratchpad/20_f.svg", + "staticwebassets/icons/Scratchpad/20_r.svg", + "staticwebassets/icons/Scratchpad/24_f.svg", + "staticwebassets/icons/Scratchpad/24_r.svg", + "staticwebassets/icons/ScreenCut/20_f.svg", + "staticwebassets/icons/ScreenCut/20_r.svg", + "staticwebassets/icons/ScreenPerson/20_f.svg", + "staticwebassets/icons/ScreenPerson/20_r.svg", + "staticwebassets/icons/ScreenSearch/20_f.svg", + "staticwebassets/icons/ScreenSearch/20_r.svg", + "staticwebassets/icons/ScreenSearch/24_f.svg", + "staticwebassets/icons/ScreenSearch/24_r.svg", + "staticwebassets/icons/Screenshot/20_f.svg", + "staticwebassets/icons/Screenshot/20_r.svg", + "staticwebassets/icons/Screenshot/24_f.svg", + "staticwebassets/icons/Screenshot/24_r.svg", + "staticwebassets/icons/Script/16_f.svg", + "staticwebassets/icons/Script/16_r.svg", + "staticwebassets/icons/Search/12_f.svg", + "staticwebassets/icons/Search/12_r.svg", + "staticwebassets/icons/Search/16_f.svg", + "staticwebassets/icons/Search/16_r.svg", + "staticwebassets/icons/Search/20_f.svg", + "staticwebassets/icons/Search/20_r.svg", + "staticwebassets/icons/Search/24_f.svg", + "staticwebassets/icons/Search/24_r.svg", + "staticwebassets/icons/Search/28_f.svg", + "staticwebassets/icons/Search/28_r.svg", + "staticwebassets/icons/Search/32_f.svg", + "staticwebassets/icons/Search/32_r.svg", + "staticwebassets/icons/Search/48_f.svg", + "staticwebassets/icons/Search/48_r.svg", + "staticwebassets/icons/SearchInfo/20_f.svg", + "staticwebassets/icons/SearchInfo/20_r.svg", + "staticwebassets/icons/SearchInfo/24_f.svg", + "staticwebassets/icons/SearchInfo/24_r.svg", + "staticwebassets/icons/SearchSettings/20_f.svg", + "staticwebassets/icons/SearchSettings/20_r.svg", + "staticwebassets/icons/SearchShield/20_f.svg", + "staticwebassets/icons/SearchShield/20_r.svg", + "staticwebassets/icons/SearchSquare/20_f.svg", + "staticwebassets/icons/SearchSquare/20_r.svg", + "staticwebassets/icons/SearchSquare/24_f.svg", + "staticwebassets/icons/SearchSquare/24_r.svg", + "staticwebassets/icons/SearchVisual/16_f.svg", + "staticwebassets/icons/SearchVisual/16_r.svg", + "staticwebassets/icons/SearchVisual/20_f.svg", + "staticwebassets/icons/SearchVisual/20_r.svg", + "staticwebassets/icons/SearchVisual/24_f.svg", + "staticwebassets/icons/SearchVisual/24_r.svg", + "staticwebassets/icons/SelectAllOff/20_f.svg", + "staticwebassets/icons/SelectAllOff/20_r.svg", + "staticwebassets/icons/SelectAllOff/24_f.svg", + "staticwebassets/icons/SelectAllOff/24_r.svg", + "staticwebassets/icons/SelectAllOn/20_f.svg", + "staticwebassets/icons/SelectAllOn/20_r.svg", + "staticwebassets/icons/SelectAllOn/24_f.svg", + "staticwebassets/icons/SelectAllOn/24_r.svg", + "staticwebassets/icons/SelectObject/20_f.svg", + "staticwebassets/icons/SelectObject/20_r.svg", + "staticwebassets/icons/SelectObject/24_f.svg", + "staticwebassets/icons/SelectObject/24_r.svg", + "staticwebassets/icons/SelectObjectSkew/20_f.svg", + "staticwebassets/icons/SelectObjectSkew/20_r.svg", + "staticwebassets/icons/SelectObjectSkew/24_f.svg", + "staticwebassets/icons/SelectObjectSkew/24_r.svg", + "staticwebassets/icons/SelectObjectSkewDismiss/20_f.svg", + "staticwebassets/icons/SelectObjectSkewDismiss/20_r.svg", + "staticwebassets/icons/SelectObjectSkewDismiss/24_f.svg", + "staticwebassets/icons/SelectObjectSkewDismiss/24_r.svg", + "staticwebassets/icons/SelectObjectSkewEdit/20_f.svg", + "staticwebassets/icons/SelectObjectSkewEdit/20_r.svg", + "staticwebassets/icons/SelectObjectSkewEdit/24_f.svg", + "staticwebassets/icons/SelectObjectSkewEdit/24_r.svg", + "staticwebassets/icons/Send/16_f.svg", + "staticwebassets/icons/Send/16_r.svg", + "staticwebassets/icons/Send/20_f.svg", + "staticwebassets/icons/Send/20_r.svg", + "staticwebassets/icons/Send/24_f.svg", + "staticwebassets/icons/Send/24_r.svg", + "staticwebassets/icons/Send/28_f.svg", + "staticwebassets/icons/Send/28_r.svg", + "staticwebassets/icons/Send/32_f.svg", + "staticwebassets/icons/Send/32_r.svg", + "staticwebassets/icons/Send/48_f.svg", + "staticwebassets/icons/Send/48_r.svg", + "staticwebassets/icons/SendBeaker/16_f.svg", + "staticwebassets/icons/SendBeaker/16_r.svg", + "staticwebassets/icons/SendBeaker/20_f.svg", + "staticwebassets/icons/SendBeaker/20_r.svg", + "staticwebassets/icons/SendBeaker/24_f.svg", + "staticwebassets/icons/SendBeaker/24_r.svg", + "staticwebassets/icons/SendBeaker/28_f.svg", + "staticwebassets/icons/SendBeaker/28_r.svg", + "staticwebassets/icons/SendBeaker/32_f.svg", + "staticwebassets/icons/SendBeaker/32_r.svg", + "staticwebassets/icons/SendBeaker/48_f.svg", + "staticwebassets/icons/SendBeaker/48_r.svg", + "staticwebassets/icons/SendClock/20_f.svg", + "staticwebassets/icons/SendClock/20_r.svg", + "staticwebassets/icons/SendClock/24_f.svg", + "staticwebassets/icons/SendClock/24_r.svg", + "staticwebassets/icons/SendCopy/20_f.svg", + "staticwebassets/icons/SendCopy/20_r.svg", + "staticwebassets/icons/SendCopy/24_f.svg", + "staticwebassets/icons/SendCopy/24_r.svg", + "staticwebassets/icons/SerialPort/16_f.svg", + "staticwebassets/icons/SerialPort/16_r.svg", + "staticwebassets/icons/SerialPort/20_f.svg", + "staticwebassets/icons/SerialPort/20_r.svg", + "staticwebassets/icons/SerialPort/24_f.svg", + "staticwebassets/icons/SerialPort/24_r.svg", + "staticwebassets/icons/Server/16_f.svg", + "staticwebassets/icons/Server/16_r.svg", + "staticwebassets/icons/Server/20_f.svg", + "staticwebassets/icons/Server/20_r.svg", + "staticwebassets/icons/Server/24_f.svg", + "staticwebassets/icons/Server/24_r.svg", + "staticwebassets/icons/ServerMultiple/20_f.svg", + "staticwebassets/icons/ServerMultiple/20_r.svg", + "staticwebassets/icons/ServerPlay/20_f.svg", + "staticwebassets/icons/ServerPlay/20_r.svg", + "staticwebassets/icons/ServerSurface/16_f.svg", + "staticwebassets/icons/ServerSurface/16_r.svg", + "staticwebassets/icons/ServerSurfaceMultiple/16_f.svg", + "staticwebassets/icons/ServerSurfaceMultiple/16_r.svg", + "staticwebassets/icons/ServiceBell/16_f.svg", + "staticwebassets/icons/ServiceBell/16_r.svg", + "staticwebassets/icons/ServiceBell/20_f.svg", + "staticwebassets/icons/ServiceBell/20_r.svg", + "staticwebassets/icons/ServiceBell/24_f.svg", + "staticwebassets/icons/ServiceBell/24_r.svg", + "staticwebassets/icons/Settings/16_f.svg", + "staticwebassets/icons/Settings/16_r.svg", + "staticwebassets/icons/Settings/20_f.svg", + "staticwebassets/icons/Settings/20_r.svg", + "staticwebassets/icons/Settings/24_f.svg", + "staticwebassets/icons/Settings/24_r.svg", + "staticwebassets/icons/Settings/28_f.svg", + "staticwebassets/icons/Settings/28_r.svg", + "staticwebassets/icons/Settings/32_f.svg", + "staticwebassets/icons/Settings/32_r.svg", + "staticwebassets/icons/Settings/48_f.svg", + "staticwebassets/icons/Settings/48_r.svg", + "staticwebassets/icons/SettingsChat/20_f.svg", + "staticwebassets/icons/SettingsChat/20_r.svg", + "staticwebassets/icons/SettingsChat/24_f.svg", + "staticwebassets/icons/SettingsChat/24_r.svg", + "staticwebassets/icons/SettingsCogMultiple/20_f.svg", + "staticwebassets/icons/SettingsCogMultiple/20_r.svg", + "staticwebassets/icons/SettingsCogMultiple/24_f.svg", + "staticwebassets/icons/SettingsCogMultiple/24_r.svg", + "staticwebassets/icons/ShapeExclude/16_f.svg", + "staticwebassets/icons/ShapeExclude/16_r.svg", + "staticwebassets/icons/ShapeExclude/20_f.svg", + "staticwebassets/icons/ShapeExclude/20_r.svg", + "staticwebassets/icons/ShapeExclude/24_f.svg", + "staticwebassets/icons/ShapeExclude/24_r.svg", + "staticwebassets/icons/ShapeIntersect/16_f.svg", + "staticwebassets/icons/ShapeIntersect/16_r.svg", + "staticwebassets/icons/ShapeIntersect/20_f.svg", + "staticwebassets/icons/ShapeIntersect/20_r.svg", + "staticwebassets/icons/ShapeIntersect/24_f.svg", + "staticwebassets/icons/ShapeIntersect/24_r.svg", + "staticwebassets/icons/ShapeSubtract/16_f.svg", + "staticwebassets/icons/ShapeSubtract/16_r.svg", + "staticwebassets/icons/ShapeSubtract/20_f.svg", + "staticwebassets/icons/ShapeSubtract/20_r.svg", + "staticwebassets/icons/ShapeSubtract/24_f.svg", + "staticwebassets/icons/ShapeSubtract/24_r.svg", + "staticwebassets/icons/ShapeUnion/16_f.svg", + "staticwebassets/icons/ShapeUnion/16_r.svg", + "staticwebassets/icons/ShapeUnion/20_f.svg", + "staticwebassets/icons/ShapeUnion/20_r.svg", + "staticwebassets/icons/ShapeUnion/24_f.svg", + "staticwebassets/icons/ShapeUnion/24_r.svg", + "staticwebassets/icons/Shapes/16_f.svg", + "staticwebassets/icons/Shapes/16_r.svg", + "staticwebassets/icons/Shapes/20_f.svg", + "staticwebassets/icons/Shapes/20_r.svg", + "staticwebassets/icons/Shapes/24_f.svg", + "staticwebassets/icons/Shapes/24_r.svg", + "staticwebassets/icons/Shapes/28_f.svg", + "staticwebassets/icons/Shapes/28_r.svg", + "staticwebassets/icons/Shapes/48_f.svg", + "staticwebassets/icons/Shapes/48_r.svg", + "staticwebassets/icons/Share/16_f.svg", + "staticwebassets/icons/Share/16_r.svg", + "staticwebassets/icons/Share/20_f.svg", + "staticwebassets/icons/Share/20_r.svg", + "staticwebassets/icons/Share/24_f.svg", + "staticwebassets/icons/Share/24_r.svg", + "staticwebassets/icons/Share/28_f.svg", + "staticwebassets/icons/Share/28_r.svg", + "staticwebassets/icons/Share/48_f.svg", + "staticwebassets/icons/Share/48_r.svg", + "staticwebassets/icons/ShareAndroid/20_f.svg", + "staticwebassets/icons/ShareAndroid/20_r.svg", + "staticwebassets/icons/ShareAndroid/24_f.svg", + "staticwebassets/icons/ShareAndroid/24_r.svg", + "staticwebassets/icons/ShareCloseTray/20_f.svg", + "staticwebassets/icons/ShareCloseTray/20_r.svg", + "staticwebassets/icons/ShareCloseTray/24_f.svg", + "staticwebassets/icons/ShareCloseTray/24_r.svg", + "staticwebassets/icons/ShareScreenPerson/16_f.svg", + "staticwebassets/icons/ShareScreenPerson/16_r.svg", + "staticwebassets/icons/ShareScreenPerson/20_f.svg", + "staticwebassets/icons/ShareScreenPerson/20_r.svg", + "staticwebassets/icons/ShareScreenPerson/24_f.svg", + "staticwebassets/icons/ShareScreenPerson/24_r.svg", + "staticwebassets/icons/ShareScreenPerson/28_f.svg", + "staticwebassets/icons/ShareScreenPerson/28_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/16_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/16_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/20_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/20_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/24_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/24_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/28_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlay/28_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/16_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/16_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/20_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/20_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/24_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/24_r.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/28_f.svg", + "staticwebassets/icons/ShareScreenPersonOverlayInside/28_r.svg", + "staticwebassets/icons/ShareScreenPersonP/16_f.svg", + "staticwebassets/icons/ShareScreenPersonP/16_r.svg", + "staticwebassets/icons/ShareScreenPersonP/20_f.svg", + "staticwebassets/icons/ShareScreenPersonP/20_r.svg", + "staticwebassets/icons/ShareScreenPersonP/24_f.svg", + "staticwebassets/icons/ShareScreenPersonP/24_r.svg", + "staticwebassets/icons/ShareScreenPersonP/28_f.svg", + "staticwebassets/icons/ShareScreenPersonP/28_r.svg", + "staticwebassets/icons/ShareScreenStart/20_f.svg", + "staticwebassets/icons/ShareScreenStart/20_r.svg", + "staticwebassets/icons/ShareScreenStart/24_f.svg", + "staticwebassets/icons/ShareScreenStart/24_r.svg", + "staticwebassets/icons/ShareScreenStart/28_f.svg", + "staticwebassets/icons/ShareScreenStart/28_r.svg", + "staticwebassets/icons/ShareScreenStart/48_f.svg", + "staticwebassets/icons/ShareScreenStart/48_r.svg", + "staticwebassets/icons/ShareScreenStop/16_f.svg", + "staticwebassets/icons/ShareScreenStop/16_r.svg", + "staticwebassets/icons/ShareScreenStop/20_f.svg", + "staticwebassets/icons/ShareScreenStop/20_r.svg", + "staticwebassets/icons/ShareScreenStop/24_f.svg", + "staticwebassets/icons/ShareScreenStop/24_r.svg", + "staticwebassets/icons/ShareScreenStop/28_f.svg", + "staticwebassets/icons/ShareScreenStop/28_r.svg", + "staticwebassets/icons/ShareScreenStop/48_f.svg", + "staticwebassets/icons/ShareScreenStop/48_r.svg", + "staticwebassets/icons/ShareiOS/20_f.svg", + "staticwebassets/icons/ShareiOS/20_r.svg", + "staticwebassets/icons/ShareiOS/24_f.svg", + "staticwebassets/icons/ShareiOS/24_r.svg", + "staticwebassets/icons/ShareiOS/28_f.svg", + "staticwebassets/icons/ShareiOS/28_r.svg", + "staticwebassets/icons/ShareiOS/48_f.svg", + "staticwebassets/icons/ShareiOS/48_r.svg", + "staticwebassets/icons/Shield/12_f.svg", + "staticwebassets/icons/Shield/12_r.svg", + "staticwebassets/icons/Shield/16_f.svg", + "staticwebassets/icons/Shield/16_r.svg", + "staticwebassets/icons/Shield/20_f.svg", + "staticwebassets/icons/Shield/20_r.svg", + "staticwebassets/icons/Shield/24_f.svg", + "staticwebassets/icons/Shield/24_r.svg", + "staticwebassets/icons/Shield/28_f.svg", + "staticwebassets/icons/Shield/28_r.svg", + "staticwebassets/icons/Shield/32_f.svg", + "staticwebassets/icons/Shield/32_r.svg", + "staticwebassets/icons/Shield/48_f.svg", + "staticwebassets/icons/Shield/48_r.svg", + "staticwebassets/icons/ShieldAdd/16_f.svg", + "staticwebassets/icons/ShieldAdd/16_r.svg", + "staticwebassets/icons/ShieldAdd/20_f.svg", + "staticwebassets/icons/ShieldAdd/20_r.svg", + "staticwebassets/icons/ShieldAdd/24_f.svg", + "staticwebassets/icons/ShieldAdd/24_r.svg", + "staticwebassets/icons/ShieldBadge/20_f.svg", + "staticwebassets/icons/ShieldBadge/20_r.svg", + "staticwebassets/icons/ShieldBadge/24_f.svg", + "staticwebassets/icons/ShieldBadge/24_r.svg", + "staticwebassets/icons/ShieldCheckmark/16_f.svg", + "staticwebassets/icons/ShieldCheckmark/16_r.svg", + "staticwebassets/icons/ShieldCheckmark/20_f.svg", + "staticwebassets/icons/ShieldCheckmark/20_r.svg", + "staticwebassets/icons/ShieldCheckmark/24_f.svg", + "staticwebassets/icons/ShieldCheckmark/24_r.svg", + "staticwebassets/icons/ShieldCheckmark/28_f.svg", + "staticwebassets/icons/ShieldCheckmark/28_r.svg", + "staticwebassets/icons/ShieldCheckmark/48_f.svg", + "staticwebassets/icons/ShieldCheckmark/48_r.svg", + "staticwebassets/icons/ShieldDismiss/16_f.svg", + "staticwebassets/icons/ShieldDismiss/16_r.svg", + "staticwebassets/icons/ShieldDismiss/20_f.svg", + "staticwebassets/icons/ShieldDismiss/20_r.svg", + "staticwebassets/icons/ShieldDismiss/24_f.svg", + "staticwebassets/icons/ShieldDismiss/24_r.svg", + "staticwebassets/icons/ShieldDismissShield/20_f.svg", + "staticwebassets/icons/ShieldDismissShield/20_r.svg", + "staticwebassets/icons/ShieldError/16_f.svg", + "staticwebassets/icons/ShieldError/16_r.svg", + "staticwebassets/icons/ShieldError/20_f.svg", + "staticwebassets/icons/ShieldError/20_r.svg", + "staticwebassets/icons/ShieldError/24_f.svg", + "staticwebassets/icons/ShieldError/24_r.svg", + "staticwebassets/icons/ShieldGlobe/16_f.svg", + "staticwebassets/icons/ShieldGlobe/16_r.svg", + "staticwebassets/icons/ShieldGlobe/20_f.svg", + "staticwebassets/icons/ShieldGlobe/20_r.svg", + "staticwebassets/icons/ShieldGlobe/24_f.svg", + "staticwebassets/icons/ShieldGlobe/24_r.svg", + "staticwebassets/icons/ShieldKeyhole/16_f.svg", + "staticwebassets/icons/ShieldKeyhole/16_r.svg", + "staticwebassets/icons/ShieldKeyhole/20_f.svg", + "staticwebassets/icons/ShieldKeyhole/20_r.svg", + "staticwebassets/icons/ShieldKeyhole/24_f.svg", + "staticwebassets/icons/ShieldKeyhole/24_r.svg", + "staticwebassets/icons/ShieldLock/16_f.svg", + "staticwebassets/icons/ShieldLock/16_r.svg", + "staticwebassets/icons/ShieldLock/20_f.svg", + "staticwebassets/icons/ShieldLock/20_r.svg", + "staticwebassets/icons/ShieldLock/24_f.svg", + "staticwebassets/icons/ShieldLock/24_r.svg", + "staticwebassets/icons/ShieldLock/28_f.svg", + "staticwebassets/icons/ShieldLock/28_r.svg", + "staticwebassets/icons/ShieldLock/48_f.svg", + "staticwebassets/icons/ShieldLock/48_r.svg", + "staticwebassets/icons/ShieldPerson/20_f.svg", + "staticwebassets/icons/ShieldPerson/20_r.svg", + "staticwebassets/icons/ShieldPersonAdd/20_f.svg", + "staticwebassets/icons/ShieldPersonAdd/20_r.svg", + "staticwebassets/icons/ShieldProhibited/20_f.svg", + "staticwebassets/icons/ShieldProhibited/20_r.svg", + "staticwebassets/icons/ShieldProhibited/24_f.svg", + "staticwebassets/icons/ShieldProhibited/24_r.svg", + "staticwebassets/icons/ShieldQuestion/16_f.svg", + "staticwebassets/icons/ShieldQuestion/16_r.svg", + "staticwebassets/icons/ShieldQuestion/20_f.svg", + "staticwebassets/icons/ShieldQuestion/20_r.svg", + "staticwebassets/icons/ShieldQuestion/24_f.svg", + "staticwebassets/icons/ShieldQuestion/24_r.svg", + "staticwebassets/icons/ShieldQuestion/32_f.svg", + "staticwebassets/icons/ShieldQuestion/32_r.svg", + "staticwebassets/icons/ShieldTask/16_f.svg", + "staticwebassets/icons/ShieldTask/16_r.svg", + "staticwebassets/icons/ShieldTask/20_f.svg", + "staticwebassets/icons/ShieldTask/20_r.svg", + "staticwebassets/icons/ShieldTask/24_f.svg", + "staticwebassets/icons/ShieldTask/24_r.svg", + "staticwebassets/icons/ShieldTask/28_f.svg", + "staticwebassets/icons/ShieldTask/28_r.svg", + "staticwebassets/icons/ShieldTask/48_f.svg", + "staticwebassets/icons/ShieldTask/48_r.svg", + "staticwebassets/icons/Shifts/16_f.svg", + "staticwebassets/icons/Shifts/16_r.svg", + "staticwebassets/icons/Shifts/20_f.svg", + "staticwebassets/icons/Shifts/20_r.svg", + "staticwebassets/icons/Shifts/24_f.svg", + "staticwebassets/icons/Shifts/24_r.svg", + "staticwebassets/icons/Shifts/28_f.svg", + "staticwebassets/icons/Shifts/28_r.svg", + "staticwebassets/icons/Shifts/32_f.svg", + "staticwebassets/icons/Shifts/32_r.svg", + "staticwebassets/icons/Shifts30Minutes/20_f.svg", + "staticwebassets/icons/Shifts30Minutes/20_r.svg", + "staticwebassets/icons/Shifts30Minutes/24_f.svg", + "staticwebassets/icons/Shifts30Minutes/24_r.svg", + "staticwebassets/icons/ShiftsActivity/16_f.svg", + "staticwebassets/icons/ShiftsActivity/16_r.svg", + "staticwebassets/icons/ShiftsActivity/20_f.svg", + "staticwebassets/icons/ShiftsActivity/20_r.svg", + "staticwebassets/icons/ShiftsActivity/24_f.svg", + "staticwebassets/icons/ShiftsActivity/24_r.svg", + "staticwebassets/icons/ShiftsAdd/20_f.svg", + "staticwebassets/icons/ShiftsAdd/20_r.svg", + "staticwebassets/icons/ShiftsAdd/24_f.svg", + "staticwebassets/icons/ShiftsAdd/24_r.svg", + "staticwebassets/icons/ShiftsAvailability/20_f.svg", + "staticwebassets/icons/ShiftsAvailability/20_r.svg", + "staticwebassets/icons/ShiftsAvailability/24_f.svg", + "staticwebassets/icons/ShiftsAvailability/24_r.svg", + "staticwebassets/icons/ShiftsCheckmark/20_f.svg", + "staticwebassets/icons/ShiftsCheckmark/20_r.svg", + "staticwebassets/icons/ShiftsCheckmark/24_f.svg", + "staticwebassets/icons/ShiftsCheckmark/24_r.svg", + "staticwebassets/icons/ShiftsDay/20_f.svg", + "staticwebassets/icons/ShiftsDay/20_r.svg", + "staticwebassets/icons/ShiftsDay/24_f.svg", + "staticwebassets/icons/ShiftsDay/24_r.svg", + "staticwebassets/icons/ShiftsOpen/20_f.svg", + "staticwebassets/icons/ShiftsOpen/20_r.svg", + "staticwebassets/icons/ShiftsOpen/24_f.svg", + "staticwebassets/icons/ShiftsOpen/24_r.svg", + "staticwebassets/icons/ShiftsProhibited/20_f.svg", + "staticwebassets/icons/ShiftsProhibited/20_r.svg", + "staticwebassets/icons/ShiftsProhibited/24_f.svg", + "staticwebassets/icons/ShiftsProhibited/24_r.svg", + "staticwebassets/icons/ShiftsQuestionMark/20_f.svg", + "staticwebassets/icons/ShiftsQuestionMark/20_r.svg", + "staticwebassets/icons/ShiftsQuestionMark/24_f.svg", + "staticwebassets/icons/ShiftsQuestionMark/24_r.svg", + "staticwebassets/icons/ShiftsTeam/20_f.svg", + "staticwebassets/icons/ShiftsTeam/20_r.svg", + "staticwebassets/icons/ShiftsTeam/24_f.svg", + "staticwebassets/icons/ShiftsTeam/24_r.svg", + "staticwebassets/icons/ShoppingBag/16_f.svg", + "staticwebassets/icons/ShoppingBag/16_r.svg", + "staticwebassets/icons/ShoppingBag/20_f.svg", + "staticwebassets/icons/ShoppingBag/20_r.svg", + "staticwebassets/icons/ShoppingBag/24_f.svg", + "staticwebassets/icons/ShoppingBag/24_r.svg", + "staticwebassets/icons/ShoppingBagArrowLeft/20_f.svg", + "staticwebassets/icons/ShoppingBagArrowLeft/20_r.svg", + "staticwebassets/icons/ShoppingBagArrowLeft/24_f.svg", + "staticwebassets/icons/ShoppingBagArrowLeft/24_r.svg", + "staticwebassets/icons/ShoppingBagDismiss/20_f.svg", + "staticwebassets/icons/ShoppingBagDismiss/20_r.svg", + "staticwebassets/icons/ShoppingBagDismiss/24_f.svg", + "staticwebassets/icons/ShoppingBagDismiss/24_r.svg", + "staticwebassets/icons/ShoppingBagPause/20_f.svg", + "staticwebassets/icons/ShoppingBagPause/20_r.svg", + "staticwebassets/icons/ShoppingBagPause/24_f.svg", + "staticwebassets/icons/ShoppingBagPause/24_r.svg", + "staticwebassets/icons/ShoppingBagPercent/20_f.svg", + "staticwebassets/icons/ShoppingBagPercent/20_r.svg", + "staticwebassets/icons/ShoppingBagPercent/24_f.svg", + "staticwebassets/icons/ShoppingBagPercent/24_r.svg", + "staticwebassets/icons/ShoppingBagPlay/20_f.svg", + "staticwebassets/icons/ShoppingBagPlay/20_r.svg", + "staticwebassets/icons/ShoppingBagPlay/24_f.svg", + "staticwebassets/icons/ShoppingBagPlay/24_r.svg", + "staticwebassets/icons/ShoppingBagTag/20_f.svg", + "staticwebassets/icons/ShoppingBagTag/20_r.svg", + "staticwebassets/icons/ShoppingBagTag/24_f.svg", + "staticwebassets/icons/ShoppingBagTag/24_r.svg", + "staticwebassets/icons/Shortpick/20_f.svg", + "staticwebassets/icons/Shortpick/20_r.svg", + "staticwebassets/icons/Shortpick/24_f.svg", + "staticwebassets/icons/Shortpick/24_r.svg", + "staticwebassets/icons/Showerhead/20_f.svg", + "staticwebassets/icons/Showerhead/20_r.svg", + "staticwebassets/icons/Showerhead/24_f.svg", + "staticwebassets/icons/Showerhead/24_r.svg", + "staticwebassets/icons/Showerhead/32_f.svg", + "staticwebassets/icons/Showerhead/32_r.svg", + "staticwebassets/icons/SidebarSearchLTR/20_f.svg", + "staticwebassets/icons/SidebarSearchLTR/20_r.svg", + "staticwebassets/icons/SidebarSearchRTL/20_f.svg", + "staticwebassets/icons/SidebarSearchRTL/20_r.svg", + "staticwebassets/icons/SignOut/20_f.svg", + "staticwebassets/icons/SignOut/20_r.svg", + "staticwebassets/icons/SignOut/24_f.svg", + "staticwebassets/icons/SignOut/24_r.svg", + "staticwebassets/icons/Signature/16_f.svg", + "staticwebassets/icons/Signature/16_r.svg", + "staticwebassets/icons/Signature/20_f.svg", + "staticwebassets/icons/Signature/20_r.svg", + "staticwebassets/icons/Signature/24_f.svg", + "staticwebassets/icons/Signature/24_r.svg", + "staticwebassets/icons/Signature/28_f.svg", + "staticwebassets/icons/Signature/28_r.svg", + "staticwebassets/icons/SkipBack10/20_f.svg", + "staticwebassets/icons/SkipBack10/20_r.svg", + "staticwebassets/icons/SkipBack10/24_f.svg", + "staticwebassets/icons/SkipBack10/24_r.svg", + "staticwebassets/icons/SkipBack10/28_f.svg", + "staticwebassets/icons/SkipBack10/28_r.svg", + "staticwebassets/icons/SkipBack10/32_f.svg", + "staticwebassets/icons/SkipBack10/32_r.svg", + "staticwebassets/icons/SkipBack10/48_f.svg", + "staticwebassets/icons/SkipBack10/48_r.svg", + "staticwebassets/icons/SkipForward10/20_f.svg", + "staticwebassets/icons/SkipForward10/20_r.svg", + "staticwebassets/icons/SkipForward10/24_f.svg", + "staticwebassets/icons/SkipForward10/24_r.svg", + "staticwebassets/icons/SkipForward10/28_f.svg", + "staticwebassets/icons/SkipForward10/28_r.svg", + "staticwebassets/icons/SkipForward10/32_f.svg", + "staticwebassets/icons/SkipForward10/32_r.svg", + "staticwebassets/icons/SkipForward10/48_f.svg", + "staticwebassets/icons/SkipForward10/48_r.svg", + "staticwebassets/icons/SkipForward30/20_f.svg", + "staticwebassets/icons/SkipForward30/20_r.svg", + "staticwebassets/icons/SkipForward30/24_f.svg", + "staticwebassets/icons/SkipForward30/24_r.svg", + "staticwebassets/icons/SkipForward30/28_f.svg", + "staticwebassets/icons/SkipForward30/28_r.svg", + "staticwebassets/icons/SkipForward30/32_f.svg", + "staticwebassets/icons/SkipForward30/32_r.svg", + "staticwebassets/icons/SkipForward30/48_f.svg", + "staticwebassets/icons/SkipForward30/48_r.svg", + "staticwebassets/icons/SkipForwardTab/20_f.svg", + "staticwebassets/icons/SkipForwardTab/20_r.svg", + "staticwebassets/icons/SkipForwardTab/24_f.svg", + "staticwebassets/icons/SkipForwardTab/24_r.svg", + "staticwebassets/icons/SlashForward/12_f.svg", + "staticwebassets/icons/SlashForward/12_r.svg", + "staticwebassets/icons/SlashForward/16_f.svg", + "staticwebassets/icons/SlashForward/16_r.svg", + "staticwebassets/icons/SlashForward/20_f.svg", + "staticwebassets/icons/SlashForward/20_r.svg", + "staticwebassets/icons/SlashForward/24_f.svg", + "staticwebassets/icons/SlashForward/24_r.svg", + "staticwebassets/icons/Sleep/20_f.svg", + "staticwebassets/icons/Sleep/20_r.svg", + "staticwebassets/icons/Sleep/24_f.svg", + "staticwebassets/icons/Sleep/24_r.svg", + "staticwebassets/icons/SlideAdd/16_f.svg", + "staticwebassets/icons/SlideAdd/16_r.svg", + "staticwebassets/icons/SlideAdd/20_f.svg", + "staticwebassets/icons/SlideAdd/20_r.svg", + "staticwebassets/icons/SlideAdd/24_f.svg", + "staticwebassets/icons/SlideAdd/24_r.svg", + "staticwebassets/icons/SlideAdd/28_f.svg", + "staticwebassets/icons/SlideAdd/28_r.svg", + "staticwebassets/icons/SlideAdd/32_f.svg", + "staticwebassets/icons/SlideAdd/32_r.svg", + "staticwebassets/icons/SlideAdd/48_f.svg", + "staticwebassets/icons/SlideAdd/48_r.svg", + "staticwebassets/icons/SlideArrowRight/20_f.svg", + "staticwebassets/icons/SlideArrowRight/20_r.svg", + "staticwebassets/icons/SlideArrowRight/24_f.svg", + "staticwebassets/icons/SlideArrowRight/24_r.svg", + "staticwebassets/icons/SlideContent/24_f.svg", + "staticwebassets/icons/SlideContent/24_r.svg", + "staticwebassets/icons/SlideEraser/16_f.svg", + "staticwebassets/icons/SlideEraser/16_r.svg", + "staticwebassets/icons/SlideEraser/20_f.svg", + "staticwebassets/icons/SlideEraser/20_r.svg", + "staticwebassets/icons/SlideEraser/24_f.svg", + "staticwebassets/icons/SlideEraser/24_r.svg", + "staticwebassets/icons/SlideGrid/20_f.svg", + "staticwebassets/icons/SlideGrid/20_r.svg", + "staticwebassets/icons/SlideGrid/24_f.svg", + "staticwebassets/icons/SlideGrid/24_r.svg", + "staticwebassets/icons/SlideHide/20_f.svg", + "staticwebassets/icons/SlideHide/20_r.svg", + "staticwebassets/icons/SlideHide/24_f.svg", + "staticwebassets/icons/SlideHide/24_r.svg", + "staticwebassets/icons/SlideLayout/20_f.svg", + "staticwebassets/icons/SlideLayout/20_r.svg", + "staticwebassets/icons/SlideLayout/24_f.svg", + "staticwebassets/icons/SlideLayout/24_r.svg", + "staticwebassets/icons/SlideLink/20_f.svg", + "staticwebassets/icons/SlideLink/20_r.svg", + "staticwebassets/icons/SlideLink/24_f.svg", + "staticwebassets/icons/SlideLink/24_r.svg", + "staticwebassets/icons/SlideMicrophone/20_f.svg", + "staticwebassets/icons/SlideMicrophone/20_r.svg", + "staticwebassets/icons/SlideMicrophone/24_f.svg", + "staticwebassets/icons/SlideMicrophone/24_r.svg", + "staticwebassets/icons/SlideMicrophone/32_f.svg", + "staticwebassets/icons/SlideMicrophone/32_r.svg", + "staticwebassets/icons/SlideMultiple/20_f.svg", + "staticwebassets/icons/SlideMultiple/20_r.svg", + "staticwebassets/icons/SlideMultiple/24_f.svg", + "staticwebassets/icons/SlideMultiple/24_r.svg", + "staticwebassets/icons/SlideMultipleArrowRight/20_f.svg", + "staticwebassets/icons/SlideMultipleArrowRight/20_r.svg", + "staticwebassets/icons/SlideMultipleArrowRight/24_f.svg", + "staticwebassets/icons/SlideMultipleArrowRight/24_r.svg", + "staticwebassets/icons/SlideMultipleSearch/20_f.svg", + "staticwebassets/icons/SlideMultipleSearch/20_r.svg", + "staticwebassets/icons/SlideMultipleSearch/24_f.svg", + "staticwebassets/icons/SlideMultipleSearch/24_r.svg", + "staticwebassets/icons/SlideRecord/16_f.svg", + "staticwebassets/icons/SlideRecord/16_r.svg", + "staticwebassets/icons/SlideRecord/20_f.svg", + "staticwebassets/icons/SlideRecord/20_r.svg", + "staticwebassets/icons/SlideRecord/24_f.svg", + "staticwebassets/icons/SlideRecord/24_r.svg", + "staticwebassets/icons/SlideRecord/28_f.svg", + "staticwebassets/icons/SlideRecord/28_r.svg", + "staticwebassets/icons/SlideRecord/48_f.svg", + "staticwebassets/icons/SlideRecord/48_r.svg", + "staticwebassets/icons/SlideSearch/20_f.svg", + "staticwebassets/icons/SlideSearch/20_r.svg", + "staticwebassets/icons/SlideSearch/24_f.svg", + "staticwebassets/icons/SlideSearch/24_r.svg", + "staticwebassets/icons/SlideSearch/28_f.svg", + "staticwebassets/icons/SlideSearch/28_r.svg", + "staticwebassets/icons/SlideSettings/20_f.svg", + "staticwebassets/icons/SlideSettings/20_r.svg", + "staticwebassets/icons/SlideSettings/24_f.svg", + "staticwebassets/icons/SlideSettings/24_r.svg", + "staticwebassets/icons/SlideSize/20_f.svg", + "staticwebassets/icons/SlideSize/20_r.svg", + "staticwebassets/icons/SlideSize/24_f.svg", + "staticwebassets/icons/SlideSize/24_r.svg", + "staticwebassets/icons/SlideText/16_f.svg", + "staticwebassets/icons/SlideText/16_r.svg", + "staticwebassets/icons/SlideText/20_f.svg", + "staticwebassets/icons/SlideText/20_r.svg", + "staticwebassets/icons/SlideText/24_f.svg", + "staticwebassets/icons/SlideText/24_r.svg", + "staticwebassets/icons/SlideText/28_f.svg", + "staticwebassets/icons/SlideText/28_r.svg", + "staticwebassets/icons/SlideText/48_f.svg", + "staticwebassets/icons/SlideText/48_r.svg", + "staticwebassets/icons/SlideTextMultiple/16_f.svg", + "staticwebassets/icons/SlideTextMultiple/16_r.svg", + "staticwebassets/icons/SlideTextMultiple/20_f.svg", + "staticwebassets/icons/SlideTextMultiple/20_r.svg", + "staticwebassets/icons/SlideTextMultiple/24_f.svg", + "staticwebassets/icons/SlideTextMultiple/24_r.svg", + "staticwebassets/icons/SlideTextMultiple/32_f.svg", + "staticwebassets/icons/SlideTextMultiple/32_r.svg", + "staticwebassets/icons/SlideTextPerson/16_f.svg", + "staticwebassets/icons/SlideTextPerson/16_r.svg", + "staticwebassets/icons/SlideTextPerson/20_f.svg", + "staticwebassets/icons/SlideTextPerson/20_r.svg", + "staticwebassets/icons/SlideTextPerson/24_f.svg", + "staticwebassets/icons/SlideTextPerson/24_r.svg", + "staticwebassets/icons/SlideTextPerson/28_f.svg", + "staticwebassets/icons/SlideTextPerson/28_r.svg", + "staticwebassets/icons/SlideTextPerson/32_f.svg", + "staticwebassets/icons/SlideTextPerson/32_r.svg", + "staticwebassets/icons/SlideTextPerson/48_f.svg", + "staticwebassets/icons/SlideTextPerson/48_r.svg", + "staticwebassets/icons/SlideTextSparkle/16_f.svg", + "staticwebassets/icons/SlideTextSparkle/16_r.svg", + "staticwebassets/icons/SlideTextSparkle/20_f.svg", + "staticwebassets/icons/SlideTextSparkle/20_r.svg", + "staticwebassets/icons/SlideTextSparkle/24_f.svg", + "staticwebassets/icons/SlideTextSparkle/24_r.svg", + "staticwebassets/icons/SlideTextSparkle/28_f.svg", + "staticwebassets/icons/SlideTextSparkle/28_r.svg", + "staticwebassets/icons/SlideTextSparkle/32_f.svg", + "staticwebassets/icons/SlideTextSparkle/32_r.svg", + "staticwebassets/icons/SlideTextSparkle/48_f.svg", + "staticwebassets/icons/SlideTextSparkle/48_r.svg", + "staticwebassets/icons/SlideTransition/20_f.svg", + "staticwebassets/icons/SlideTransition/20_r.svg", + "staticwebassets/icons/SlideTransition/24_f.svg", + "staticwebassets/icons/SlideTransition/24_r.svg", + "staticwebassets/icons/Smartwatch/20_f.svg", + "staticwebassets/icons/Smartwatch/20_r.svg", + "staticwebassets/icons/Smartwatch/24_f.svg", + "staticwebassets/icons/Smartwatch/24_r.svg", + "staticwebassets/icons/SmartwatchDot/20_f.svg", + "staticwebassets/icons/SmartwatchDot/20_r.svg", + "staticwebassets/icons/SmartwatchDot/24_f.svg", + "staticwebassets/icons/SmartwatchDot/24_r.svg", + "staticwebassets/icons/Snooze/16_f.svg", + "staticwebassets/icons/Snooze/16_r.svg", + "staticwebassets/icons/Snooze/20_f.svg", + "staticwebassets/icons/Snooze/20_r.svg", + "staticwebassets/icons/Snooze/24_f.svg", + "staticwebassets/icons/Snooze/24_r.svg", + "staticwebassets/icons/SoundSource/20_f.svg", + "staticwebassets/icons/SoundSource/20_r.svg", + "staticwebassets/icons/SoundSource/24_f.svg", + "staticwebassets/icons/SoundSource/24_r.svg", + "staticwebassets/icons/SoundSource/28_f.svg", + "staticwebassets/icons/SoundSource/28_r.svg", + "staticwebassets/icons/SoundWaveCircle/20_f.svg", + "staticwebassets/icons/SoundWaveCircle/20_r.svg", + "staticwebassets/icons/SoundWaveCircle/24_f.svg", + "staticwebassets/icons/SoundWaveCircle/24_r.svg", + "staticwebassets/icons/Space3D/16_f.svg", + "staticwebassets/icons/Space3D/16_r.svg", + "staticwebassets/icons/Space3D/20_f.svg", + "staticwebassets/icons/Space3D/20_r.svg", + "staticwebassets/icons/Space3D/24_f.svg", + "staticwebassets/icons/Space3D/24_r.svg", + "staticwebassets/icons/Space3D/28_f.svg", + "staticwebassets/icons/Space3D/28_r.svg", + "staticwebassets/icons/Space3D/32_f.svg", + "staticwebassets/icons/Space3D/32_r.svg", + "staticwebassets/icons/Space3D/48_f.svg", + "staticwebassets/icons/Space3D/48_r.svg", + "staticwebassets/icons/Spacebar/20_f.svg", + "staticwebassets/icons/Spacebar/20_r.svg", + "staticwebassets/icons/Spacebar/24_f.svg", + "staticwebassets/icons/Spacebar/24_r.svg", + "staticwebassets/icons/Sparkle/16_f.svg", + "staticwebassets/icons/Sparkle/16_r.svg", + "staticwebassets/icons/Sparkle/20_f.svg", + "staticwebassets/icons/Sparkle/20_r.svg", + "staticwebassets/icons/Sparkle/24_f.svg", + "staticwebassets/icons/Sparkle/24_r.svg", + "staticwebassets/icons/Sparkle/28_f.svg", + "staticwebassets/icons/Sparkle/28_r.svg", + "staticwebassets/icons/Sparkle/32_f.svg", + "staticwebassets/icons/Sparkle/32_r.svg", + "staticwebassets/icons/Sparkle/48_f.svg", + "staticwebassets/icons/Sparkle/48_r.svg", + "staticwebassets/icons/SparkleCircle/16_f.svg", + "staticwebassets/icons/SparkleCircle/16_r.svg", + "staticwebassets/icons/SparkleCircle/20_f.svg", + "staticwebassets/icons/SparkleCircle/20_r.svg", + "staticwebassets/icons/SparkleCircle/24_f.svg", + "staticwebassets/icons/SparkleCircle/24_r.svg", + "staticwebassets/icons/SparkleCircle/28_f.svg", + "staticwebassets/icons/SparkleCircle/28_r.svg", + "staticwebassets/icons/SparkleCircle/32_f.svg", + "staticwebassets/icons/SparkleCircle/32_r.svg", + "staticwebassets/icons/SparkleCircle/48_f.svg", + "staticwebassets/icons/SparkleCircle/48_r.svg", + "staticwebassets/icons/Speaker0/16_f.svg", + "staticwebassets/icons/Speaker0/16_r.svg", + "staticwebassets/icons/Speaker0/20_f.svg", + "staticwebassets/icons/Speaker0/20_r.svg", + "staticwebassets/icons/Speaker0/24_f.svg", + "staticwebassets/icons/Speaker0/24_r.svg", + "staticwebassets/icons/Speaker0/28_f.svg", + "staticwebassets/icons/Speaker0/28_r.svg", + "staticwebassets/icons/Speaker0/32_f.svg", + "staticwebassets/icons/Speaker0/32_r.svg", + "staticwebassets/icons/Speaker0/48_f.svg", + "staticwebassets/icons/Speaker0/48_r.svg", + "staticwebassets/icons/Speaker1/16_f.svg", + "staticwebassets/icons/Speaker1/16_r.svg", + "staticwebassets/icons/Speaker1/20_f.svg", + "staticwebassets/icons/Speaker1/20_r.svg", + "staticwebassets/icons/Speaker1/24_f.svg", + "staticwebassets/icons/Speaker1/24_r.svg", + "staticwebassets/icons/Speaker1/28_f.svg", + "staticwebassets/icons/Speaker1/28_r.svg", + "staticwebassets/icons/Speaker1/32_f.svg", + "staticwebassets/icons/Speaker1/32_r.svg", + "staticwebassets/icons/Speaker1/48_f.svg", + "staticwebassets/icons/Speaker1/48_r.svg", + "staticwebassets/icons/Speaker2/16_f.svg", + "staticwebassets/icons/Speaker2/16_r.svg", + "staticwebassets/icons/Speaker2/20_f.svg", + "staticwebassets/icons/Speaker2/20_r.svg", + "staticwebassets/icons/Speaker2/24_f.svg", + "staticwebassets/icons/Speaker2/24_r.svg", + "staticwebassets/icons/Speaker2/28_f.svg", + "staticwebassets/icons/Speaker2/28_r.svg", + "staticwebassets/icons/Speaker2/32_f.svg", + "staticwebassets/icons/Speaker2/32_r.svg", + "staticwebassets/icons/Speaker2/48_f.svg", + "staticwebassets/icons/Speaker2/48_r.svg", + "staticwebassets/icons/SpeakerBluetooth/20_f.svg", + "staticwebassets/icons/SpeakerBluetooth/20_r.svg", + "staticwebassets/icons/SpeakerBluetooth/24_f.svg", + "staticwebassets/icons/SpeakerBluetooth/24_r.svg", + "staticwebassets/icons/SpeakerBluetooth/28_f.svg", + "staticwebassets/icons/SpeakerBluetooth/28_r.svg", + "staticwebassets/icons/SpeakerEdit/16_f.svg", + "staticwebassets/icons/SpeakerEdit/16_r.svg", + "staticwebassets/icons/SpeakerEdit/20_f.svg", + "staticwebassets/icons/SpeakerEdit/20_r.svg", + "staticwebassets/icons/SpeakerEdit/24_f.svg", + "staticwebassets/icons/SpeakerEdit/24_r.svg", + "staticwebassets/icons/SpeakerMute/16_f.svg", + "staticwebassets/icons/SpeakerMute/16_r.svg", + "staticwebassets/icons/SpeakerMute/20_f.svg", + "staticwebassets/icons/SpeakerMute/20_r.svg", + "staticwebassets/icons/SpeakerMute/24_f.svg", + "staticwebassets/icons/SpeakerMute/24_r.svg", + "staticwebassets/icons/SpeakerMute/28_f.svg", + "staticwebassets/icons/SpeakerMute/28_r.svg", + "staticwebassets/icons/SpeakerMute/48_f.svg", + "staticwebassets/icons/SpeakerMute/48_r.svg", + "staticwebassets/icons/SpeakerOff/16_f.svg", + "staticwebassets/icons/SpeakerOff/16_r.svg", + "staticwebassets/icons/SpeakerOff/20_f.svg", + "staticwebassets/icons/SpeakerOff/20_r.svg", + "staticwebassets/icons/SpeakerOff/24_f.svg", + "staticwebassets/icons/SpeakerOff/24_r.svg", + "staticwebassets/icons/SpeakerOff/28_f.svg", + "staticwebassets/icons/SpeakerOff/28_r.svg", + "staticwebassets/icons/SpeakerOff/48_f.svg", + "staticwebassets/icons/SpeakerOff/48_r.svg", + "staticwebassets/icons/SpeakerSettings/20_f.svg", + "staticwebassets/icons/SpeakerSettings/20_r.svg", + "staticwebassets/icons/SpeakerSettings/24_f.svg", + "staticwebassets/icons/SpeakerSettings/24_r.svg", + "staticwebassets/icons/SpeakerSettings/28_f.svg", + "staticwebassets/icons/SpeakerSettings/28_r.svg", + "staticwebassets/icons/SpeakerUSB/20_f.svg", + "staticwebassets/icons/SpeakerUSB/20_r.svg", + "staticwebassets/icons/SpeakerUSB/24_f.svg", + "staticwebassets/icons/SpeakerUSB/24_r.svg", + "staticwebassets/icons/SpeakerUSB/28_f.svg", + "staticwebassets/icons/SpeakerUSB/28_r.svg", + "staticwebassets/icons/SpinneriOS/20_f.svg", + "staticwebassets/icons/SpinneriOS/20_r.svg", + "staticwebassets/icons/SplitHint/20_f.svg", + "staticwebassets/icons/SplitHint/20_r.svg", + "staticwebassets/icons/SplitHorizontal/12_f.svg", + "staticwebassets/icons/SplitHorizontal/12_r.svg", + "staticwebassets/icons/SplitHorizontal/16_f.svg", + "staticwebassets/icons/SplitHorizontal/16_r.svg", + "staticwebassets/icons/SplitHorizontal/20_f.svg", + "staticwebassets/icons/SplitHorizontal/20_r.svg", + "staticwebassets/icons/SplitHorizontal/24_f.svg", + "staticwebassets/icons/SplitHorizontal/24_r.svg", + "staticwebassets/icons/SplitHorizontal/28_f.svg", + "staticwebassets/icons/SplitHorizontal/28_r.svg", + "staticwebassets/icons/SplitHorizontal/32_f.svg", + "staticwebassets/icons/SplitHorizontal/32_r.svg", + "staticwebassets/icons/SplitHorizontal/48_f.svg", + "staticwebassets/icons/SplitHorizontal/48_r.svg", + "staticwebassets/icons/SplitVertical/12_f.svg", + "staticwebassets/icons/SplitVertical/12_r.svg", + "staticwebassets/icons/SplitVertical/16_f.svg", + "staticwebassets/icons/SplitVertical/16_r.svg", + "staticwebassets/icons/SplitVertical/20_f.svg", + "staticwebassets/icons/SplitVertical/20_r.svg", + "staticwebassets/icons/SplitVertical/24_f.svg", + "staticwebassets/icons/SplitVertical/24_r.svg", + "staticwebassets/icons/SplitVertical/28_f.svg", + "staticwebassets/icons/SplitVertical/28_r.svg", + "staticwebassets/icons/SplitVertical/32_f.svg", + "staticwebassets/icons/SplitVertical/32_r.svg", + "staticwebassets/icons/SplitVertical/48_f.svg", + "staticwebassets/icons/SplitVertical/48_r.svg", + "staticwebassets/icons/Sport/16_f.svg", + "staticwebassets/icons/Sport/16_r.svg", + "staticwebassets/icons/Sport/20_f.svg", + "staticwebassets/icons/Sport/20_r.svg", + "staticwebassets/icons/Sport/24_f.svg", + "staticwebassets/icons/Sport/24_r.svg", + "staticwebassets/icons/SportAmericanFootball/20_f.svg", + "staticwebassets/icons/SportAmericanFootball/20_r.svg", + "staticwebassets/icons/SportAmericanFootball/24_f.svg", + "staticwebassets/icons/SportAmericanFootball/24_r.svg", + "staticwebassets/icons/SportBaseball/20_f.svg", + "staticwebassets/icons/SportBaseball/20_r.svg", + "staticwebassets/icons/SportBaseball/24_f.svg", + "staticwebassets/icons/SportBaseball/24_r.svg", + "staticwebassets/icons/SportBasketball/20_f.svg", + "staticwebassets/icons/SportBasketball/20_r.svg", + "staticwebassets/icons/SportBasketball/24_f.svg", + "staticwebassets/icons/SportBasketball/24_r.svg", + "staticwebassets/icons/SportHockey/20_f.svg", + "staticwebassets/icons/SportHockey/20_r.svg", + "staticwebassets/icons/SportHockey/24_f.svg", + "staticwebassets/icons/SportHockey/24_r.svg", + "staticwebassets/icons/SportSoccer/16_f.svg", + "staticwebassets/icons/SportSoccer/16_r.svg", + "staticwebassets/icons/SportSoccer/20_f.svg", + "staticwebassets/icons/SportSoccer/20_r.svg", + "staticwebassets/icons/SportSoccer/24_f.svg", + "staticwebassets/icons/SportSoccer/24_r.svg", + "staticwebassets/icons/SprayCan/16_f.svg", + "staticwebassets/icons/SprayCan/16_r.svg", + "staticwebassets/icons/Square/12_f.svg", + "staticwebassets/icons/Square/12_r.svg", + "staticwebassets/icons/Square/16_f.svg", + "staticwebassets/icons/Square/16_r.svg", + "staticwebassets/icons/Square/20_f.svg", + "staticwebassets/icons/Square/20_r.svg", + "staticwebassets/icons/Square/24_f.svg", + "staticwebassets/icons/Square/24_r.svg", + "staticwebassets/icons/Square/28_f.svg", + "staticwebassets/icons/Square/28_r.svg", + "staticwebassets/icons/Square/32_f.svg", + "staticwebassets/icons/Square/32_r.svg", + "staticwebassets/icons/Square/48_f.svg", + "staticwebassets/icons/Square/48_r.svg", + "staticwebassets/icons/SquareAdd/16_f.svg", + "staticwebassets/icons/SquareAdd/16_r.svg", + "staticwebassets/icons/SquareAdd/20_f.svg", + "staticwebassets/icons/SquareAdd/20_r.svg", + "staticwebassets/icons/SquareArrowForward/16_f.svg", + "staticwebassets/icons/SquareArrowForward/16_r.svg", + "staticwebassets/icons/SquareArrowForward/20_f.svg", + "staticwebassets/icons/SquareArrowForward/20_r.svg", + "staticwebassets/icons/SquareArrowForward/24_f.svg", + "staticwebassets/icons/SquareArrowForward/24_r.svg", + "staticwebassets/icons/SquareArrowForward/28_f.svg", + "staticwebassets/icons/SquareArrowForward/28_r.svg", + "staticwebassets/icons/SquareArrowForward/32_f.svg", + "staticwebassets/icons/SquareArrowForward/32_r.svg", + "staticwebassets/icons/SquareArrowForward/48_f.svg", + "staticwebassets/icons/SquareArrowForward/48_r.svg", + "staticwebassets/icons/SquareDismiss/16_f.svg", + "staticwebassets/icons/SquareDismiss/16_r.svg", + "staticwebassets/icons/SquareDismiss/20_f.svg", + "staticwebassets/icons/SquareDismiss/20_r.svg", + "staticwebassets/icons/SquareEraser/20_f.svg", + "staticwebassets/icons/SquareEraser/20_r.svg", + "staticwebassets/icons/SquareHint/16_f.svg", + "staticwebassets/icons/SquareHint/16_r.svg", + "staticwebassets/icons/SquareHint/20_f.svg", + "staticwebassets/icons/SquareHint/20_r.svg", + "staticwebassets/icons/SquareHint/24_f.svg", + "staticwebassets/icons/SquareHint/24_r.svg", + "staticwebassets/icons/SquareHint/28_f.svg", + "staticwebassets/icons/SquareHint/28_r.svg", + "staticwebassets/icons/SquareHint/32_f.svg", + "staticwebassets/icons/SquareHint/32_r.svg", + "staticwebassets/icons/SquareHint/48_f.svg", + "staticwebassets/icons/SquareHint/48_r.svg", + "staticwebassets/icons/SquareHintApps/20_f.svg", + "staticwebassets/icons/SquareHintApps/20_r.svg", + "staticwebassets/icons/SquareHintApps/24_f.svg", + "staticwebassets/icons/SquareHintApps/24_r.svg", + "staticwebassets/icons/SquareHintArrowBack/16_f.svg", + "staticwebassets/icons/SquareHintArrowBack/16_r.svg", + "staticwebassets/icons/SquareHintArrowBack/20_f.svg", + "staticwebassets/icons/SquareHintArrowBack/20_r.svg", + "staticwebassets/icons/SquareHintSparkles/16_f.svg", + "staticwebassets/icons/SquareHintSparkles/16_r.svg", + "staticwebassets/icons/SquareHintSparkles/20_f.svg", + "staticwebassets/icons/SquareHintSparkles/20_r.svg", + "staticwebassets/icons/SquareHintSparkles/24_f.svg", + "staticwebassets/icons/SquareHintSparkles/24_r.svg", + "staticwebassets/icons/SquareHintSparkles/28_f.svg", + "staticwebassets/icons/SquareHintSparkles/28_r.svg", + "staticwebassets/icons/SquareHintSparkles/32_f.svg", + "staticwebassets/icons/SquareHintSparkles/32_r.svg", + "staticwebassets/icons/SquareHintSparkles/48_f.svg", + "staticwebassets/icons/SquareHintSparkles/48_r.svg", + "staticwebassets/icons/SquareMultiple/16_f.svg", + "staticwebassets/icons/SquareMultiple/16_r.svg", + "staticwebassets/icons/SquareMultiple/20_f.svg", + "staticwebassets/icons/SquareMultiple/20_r.svg", + "staticwebassets/icons/SquareMultiple/24_f.svg", + "staticwebassets/icons/SquareMultiple/24_r.svg", + "staticwebassets/icons/SquareMultiple/28_f.svg", + "staticwebassets/icons/SquareMultiple/28_r.svg", + "staticwebassets/icons/SquareMultiple/32_f.svg", + "staticwebassets/icons/SquareMultiple/32_r.svg", + "staticwebassets/icons/SquareMultiple/48_f.svg", + "staticwebassets/icons/SquareMultiple/48_r.svg", + "staticwebassets/icons/SquareShadow/12_f.svg", + "staticwebassets/icons/SquareShadow/12_r.svg", + "staticwebassets/icons/SquareShadow/20_f.svg", + "staticwebassets/icons/SquareShadow/20_r.svg", + "staticwebassets/icons/SquaresNested/20_f.svg", + "staticwebassets/icons/SquaresNested/20_r.svg", + "staticwebassets/icons/Stack/16_f.svg", + "staticwebassets/icons/Stack/16_r.svg", + "staticwebassets/icons/Stack/20_f.svg", + "staticwebassets/icons/Stack/20_r.svg", + "staticwebassets/icons/Stack/24_f.svg", + "staticwebassets/icons/Stack/24_r.svg", + "staticwebassets/icons/Stack/32_f.svg", + "staticwebassets/icons/Stack/32_r.svg", + "staticwebassets/icons/StackAdd/20_f.svg", + "staticwebassets/icons/StackAdd/20_r.svg", + "staticwebassets/icons/StackAdd/24_f.svg", + "staticwebassets/icons/StackAdd/24_r.svg", + "staticwebassets/icons/StackArrowForward/20_f.svg", + "staticwebassets/icons/StackArrowForward/20_r.svg", + "staticwebassets/icons/StackArrowForward/24_f.svg", + "staticwebassets/icons/StackArrowForward/24_r.svg", + "staticwebassets/icons/StackStar/16_f.svg", + "staticwebassets/icons/StackStar/16_r.svg", + "staticwebassets/icons/StackStar/20_f.svg", + "staticwebassets/icons/StackStar/20_r.svg", + "staticwebassets/icons/StackStar/24_f.svg", + "staticwebassets/icons/StackStar/24_r.svg", + "staticwebassets/icons/StackVertical/20_f.svg", + "staticwebassets/icons/StackVertical/20_r.svg", + "staticwebassets/icons/StackVertical/24_f.svg", + "staticwebassets/icons/StackVertical/24_r.svg", + "staticwebassets/icons/Star/12_f.svg", + "staticwebassets/icons/Star/12_r.svg", + "staticwebassets/icons/Star/16_f.svg", + "staticwebassets/icons/Star/16_r.svg", + "staticwebassets/icons/Star/20_f.svg", + "staticwebassets/icons/Star/20_r.svg", + "staticwebassets/icons/Star/24_f.svg", + "staticwebassets/icons/Star/24_r.svg", + "staticwebassets/icons/Star/28_f.svg", + "staticwebassets/icons/Star/28_r.svg", + "staticwebassets/icons/Star/48_f.svg", + "staticwebassets/icons/Star/48_r.svg", + "staticwebassets/icons/StarAdd/16_f.svg", + "staticwebassets/icons/StarAdd/16_r.svg", + "staticwebassets/icons/StarAdd/20_f.svg", + "staticwebassets/icons/StarAdd/20_r.svg", + "staticwebassets/icons/StarAdd/24_f.svg", + "staticwebassets/icons/StarAdd/24_r.svg", + "staticwebassets/icons/StarAdd/28_f.svg", + "staticwebassets/icons/StarAdd/28_r.svg", + "staticwebassets/icons/StarArrowBack/16_f.svg", + "staticwebassets/icons/StarArrowBack/16_r.svg", + "staticwebassets/icons/StarArrowBack/20_f.svg", + "staticwebassets/icons/StarArrowBack/20_r.svg", + "staticwebassets/icons/StarArrowBack/24_f.svg", + "staticwebassets/icons/StarArrowBack/24_r.svg", + "staticwebassets/icons/StarArrowRightEnd/20_f.svg", + "staticwebassets/icons/StarArrowRightEnd/20_r.svg", + "staticwebassets/icons/StarArrowRightEnd/24_f.svg", + "staticwebassets/icons/StarArrowRightEnd/24_r.svg", + "staticwebassets/icons/StarArrowRightStart/20_f.svg", + "staticwebassets/icons/StarArrowRightStart/20_r.svg", + "staticwebassets/icons/StarArrowRightStart/24_f.svg", + "staticwebassets/icons/StarArrowRightStart/24_r.svg", + "staticwebassets/icons/StarCheckmark/16_f.svg", + "staticwebassets/icons/StarCheckmark/16_r.svg", + "staticwebassets/icons/StarCheckmark/20_f.svg", + "staticwebassets/icons/StarCheckmark/20_r.svg", + "staticwebassets/icons/StarCheckmark/24_f.svg", + "staticwebassets/icons/StarCheckmark/24_r.svg", + "staticwebassets/icons/StarCheckmark/28_f.svg", + "staticwebassets/icons/StarCheckmark/28_r.svg", + "staticwebassets/icons/StarDismiss/16_f.svg", + "staticwebassets/icons/StarDismiss/16_r.svg", + "staticwebassets/icons/StarDismiss/20_f.svg", + "staticwebassets/icons/StarDismiss/20_r.svg", + "staticwebassets/icons/StarDismiss/24_f.svg", + "staticwebassets/icons/StarDismiss/24_r.svg", + "staticwebassets/icons/StarDismiss/28_f.svg", + "staticwebassets/icons/StarDismiss/28_r.svg", + "staticwebassets/icons/StarEdit/20_f.svg", + "staticwebassets/icons/StarEdit/20_r.svg", + "staticwebassets/icons/StarEdit/24_f.svg", + "staticwebassets/icons/StarEdit/24_r.svg", + "staticwebassets/icons/StarEmphasis/20_f.svg", + "staticwebassets/icons/StarEmphasis/20_r.svg", + "staticwebassets/icons/StarEmphasis/24_f.svg", + "staticwebassets/icons/StarEmphasis/24_r.svg", + "staticwebassets/icons/StarEmphasis/32_f.svg", + "staticwebassets/icons/StarEmphasis/32_r.svg", + "staticwebassets/icons/StarHalf/12_f.svg", + "staticwebassets/icons/StarHalf/12_r.svg", + "staticwebassets/icons/StarHalf/16_f.svg", + "staticwebassets/icons/StarHalf/16_r.svg", + "staticwebassets/icons/StarHalf/20_f.svg", + "staticwebassets/icons/StarHalf/20_r.svg", + "staticwebassets/icons/StarHalf/24_f.svg", + "staticwebassets/icons/StarHalf/24_r.svg", + "staticwebassets/icons/StarHalf/28_f.svg", + "staticwebassets/icons/StarHalf/28_r.svg", + "staticwebassets/icons/StarLineHorizontal3/16_f.svg", + "staticwebassets/icons/StarLineHorizontal3/16_r.svg", + "staticwebassets/icons/StarLineHorizontal3/20_f.svg", + "staticwebassets/icons/StarLineHorizontal3/20_r.svg", + "staticwebassets/icons/StarLineHorizontal3/24_f.svg", + "staticwebassets/icons/StarLineHorizontal3/24_r.svg", + "staticwebassets/icons/StarOff/12_f.svg", + "staticwebassets/icons/StarOff/12_r.svg", + "staticwebassets/icons/StarOff/16_f.svg", + "staticwebassets/icons/StarOff/16_r.svg", + "staticwebassets/icons/StarOff/20_f.svg", + "staticwebassets/icons/StarOff/20_r.svg", + "staticwebassets/icons/StarOff/24_f.svg", + "staticwebassets/icons/StarOff/24_r.svg", + "staticwebassets/icons/StarOff/28_f.svg", + "staticwebassets/icons/StarOff/28_r.svg", + "staticwebassets/icons/StarOneQuarter/12_f.svg", + "staticwebassets/icons/StarOneQuarter/12_r.svg", + "staticwebassets/icons/StarOneQuarter/16_f.svg", + "staticwebassets/icons/StarOneQuarter/16_r.svg", + "staticwebassets/icons/StarOneQuarter/20_f.svg", + "staticwebassets/icons/StarOneQuarter/20_r.svg", + "staticwebassets/icons/StarOneQuarter/24_f.svg", + "staticwebassets/icons/StarOneQuarter/24_r.svg", + "staticwebassets/icons/StarOneQuarter/28_f.svg", + "staticwebassets/icons/StarOneQuarter/28_r.svg", + "staticwebassets/icons/StarProhibited/16_f.svg", + "staticwebassets/icons/StarProhibited/16_r.svg", + "staticwebassets/icons/StarProhibited/20_f.svg", + "staticwebassets/icons/StarProhibited/20_r.svg", + "staticwebassets/icons/StarProhibited/24_f.svg", + "staticwebassets/icons/StarProhibited/24_r.svg", + "staticwebassets/icons/StarSettings/20_f.svg", + "staticwebassets/icons/StarSettings/20_r.svg", + "staticwebassets/icons/StarSettings/24_f.svg", + "staticwebassets/icons/StarSettings/24_r.svg", + "staticwebassets/icons/StarThreeQuarter/12_f.svg", + "staticwebassets/icons/StarThreeQuarter/12_r.svg", + "staticwebassets/icons/StarThreeQuarter/16_f.svg", + "staticwebassets/icons/StarThreeQuarter/16_r.svg", + "staticwebassets/icons/StarThreeQuarter/20_f.svg", + "staticwebassets/icons/StarThreeQuarter/20_r.svg", + "staticwebassets/icons/StarThreeQuarter/24_f.svg", + "staticwebassets/icons/StarThreeQuarter/24_r.svg", + "staticwebassets/icons/StarThreeQuarter/28_f.svg", + "staticwebassets/icons/StarThreeQuarter/28_r.svg", + "staticwebassets/icons/Status/12_f.svg", + "staticwebassets/icons/Status/12_r.svg", + "staticwebassets/icons/Status/16_f.svg", + "staticwebassets/icons/Status/16_r.svg", + "staticwebassets/icons/Status/20_f.svg", + "staticwebassets/icons/Status/20_r.svg", + "staticwebassets/icons/Status/24_f.svg", + "staticwebassets/icons/Status/24_r.svg", + "staticwebassets/icons/Step/16_f.svg", + "staticwebassets/icons/Step/16_r.svg", + "staticwebassets/icons/Steps/16_f.svg", + "staticwebassets/icons/Steps/16_r.svg", + "staticwebassets/icons/Steps/20_f.svg", + "staticwebassets/icons/Steps/20_r.svg", + "staticwebassets/icons/Steps/24_f.svg", + "staticwebassets/icons/Steps/24_r.svg", + "staticwebassets/icons/Stethoscope/20_f.svg", + "staticwebassets/icons/Stethoscope/20_r.svg", + "staticwebassets/icons/Stethoscope/24_f.svg", + "staticwebassets/icons/Stethoscope/24_r.svg", + "staticwebassets/icons/Sticker/12_f.svg", + "staticwebassets/icons/Sticker/12_r.svg", + "staticwebassets/icons/Sticker/20_f.svg", + "staticwebassets/icons/Sticker/20_r.svg", + "staticwebassets/icons/Sticker/24_f.svg", + "staticwebassets/icons/Sticker/24_r.svg", + "staticwebassets/icons/StickerAdd/20_f.svg", + "staticwebassets/icons/StickerAdd/20_r.svg", + "staticwebassets/icons/StickerAdd/24_f.svg", + "staticwebassets/icons/StickerAdd/24_r.svg", + "staticwebassets/icons/Stop/16_f.svg", + "staticwebassets/icons/Stop/16_r.svg", + "staticwebassets/icons/Stop/20_f.svg", + "staticwebassets/icons/Stop/20_r.svg", + "staticwebassets/icons/Stop/24_f.svg", + "staticwebassets/icons/Stop/24_r.svg", + "staticwebassets/icons/Storage/20_f.svg", + "staticwebassets/icons/Storage/20_r.svg", + "staticwebassets/icons/Storage/24_f.svg", + "staticwebassets/icons/Storage/24_r.svg", + "staticwebassets/icons/StoreMicrosoft/16_f.svg", + "staticwebassets/icons/StoreMicrosoft/16_r.svg", + "staticwebassets/icons/StoreMicrosoft/20_f.svg", + "staticwebassets/icons/StoreMicrosoft/20_r.svg", + "staticwebassets/icons/StoreMicrosoft/24_f.svg", + "staticwebassets/icons/StoreMicrosoft/24_r.svg", + "staticwebassets/icons/Stream/20_f.svg", + "staticwebassets/icons/Stream/20_r.svg", + "staticwebassets/icons/Stream/24_f.svg", + "staticwebassets/icons/Stream/24_r.svg", + "staticwebassets/icons/Stream/32_f.svg", + "staticwebassets/icons/Stream/32_r.svg", + "staticwebassets/icons/StreamInput/20_f.svg", + "staticwebassets/icons/StreamInput/20_r.svg", + "staticwebassets/icons/StreamInputOutput/20_f.svg", + "staticwebassets/icons/StreamInputOutput/20_r.svg", + "staticwebassets/icons/StreamOutput/20_f.svg", + "staticwebassets/icons/StreamOutput/20_r.svg", + "staticwebassets/icons/StyleGuide/20_f.svg", + "staticwebassets/icons/StyleGuide/20_r.svg", + "staticwebassets/icons/StyleGuide/24_f.svg", + "staticwebassets/icons/StyleGuide/24_r.svg", + "staticwebassets/icons/SubGrid/20_f.svg", + "staticwebassets/icons/SubGrid/20_r.svg", + "staticwebassets/icons/SubGrid/24_f.svg", + "staticwebassets/icons/SubGrid/24_r.svg", + "staticwebassets/icons/Subtitles/16_f.svg", + "staticwebassets/icons/Subtitles/16_r.svg", + "staticwebassets/icons/Subtitles/20_f.svg", + "staticwebassets/icons/Subtitles/20_r.svg", + "staticwebassets/icons/Subtitles/24_f.svg", + "staticwebassets/icons/Subtitles/24_r.svg", + "staticwebassets/icons/Subtract/12_f.svg", + "staticwebassets/icons/Subtract/12_r.svg", + "staticwebassets/icons/Subtract/16_f.svg", + "staticwebassets/icons/Subtract/16_r.svg", + "staticwebassets/icons/Subtract/20_f.svg", + "staticwebassets/icons/Subtract/20_r.svg", + "staticwebassets/icons/Subtract/24_f.svg", + "staticwebassets/icons/Subtract/24_r.svg", + "staticwebassets/icons/Subtract/28_f.svg", + "staticwebassets/icons/Subtract/28_r.svg", + "staticwebassets/icons/Subtract/48_f.svg", + "staticwebassets/icons/Subtract/48_r.svg", + "staticwebassets/icons/SubtractCircle/12_f.svg", + "staticwebassets/icons/SubtractCircle/12_r.svg", + "staticwebassets/icons/SubtractCircle/16_f.svg", + "staticwebassets/icons/SubtractCircle/16_r.svg", + "staticwebassets/icons/SubtractCircle/20_f.svg", + "staticwebassets/icons/SubtractCircle/20_r.svg", + "staticwebassets/icons/SubtractCircle/24_f.svg", + "staticwebassets/icons/SubtractCircle/24_r.svg", + "staticwebassets/icons/SubtractCircle/28_f.svg", + "staticwebassets/icons/SubtractCircle/28_r.svg", + "staticwebassets/icons/SubtractCircle/32_f.svg", + "staticwebassets/icons/SubtractCircle/32_r.svg", + "staticwebassets/icons/SubtractCircleArrowBack/16_f.svg", + "staticwebassets/icons/SubtractCircleArrowBack/16_r.svg", + "staticwebassets/icons/SubtractCircleArrowBack/20_f.svg", + "staticwebassets/icons/SubtractCircleArrowBack/20_r.svg", + "staticwebassets/icons/SubtractCircleArrowForward/16_f.svg", + "staticwebassets/icons/SubtractCircleArrowForward/16_r.svg", + "staticwebassets/icons/SubtractCircleArrowForward/20_f.svg", + "staticwebassets/icons/SubtractCircleArrowForward/20_r.svg", + "staticwebassets/icons/SubtractSquare/16_f.svg", + "staticwebassets/icons/SubtractSquare/16_r.svg", + "staticwebassets/icons/SubtractSquare/20_f.svg", + "staticwebassets/icons/SubtractSquare/20_r.svg", + "staticwebassets/icons/SubtractSquare/24_f.svg", + "staticwebassets/icons/SubtractSquare/24_r.svg", + "staticwebassets/icons/SubtractSquareMultiple/16_f.svg", + "staticwebassets/icons/SubtractSquareMultiple/16_r.svg", + "staticwebassets/icons/SubtractSquareMultiple/20_f.svg", + "staticwebassets/icons/SubtractSquareMultiple/20_r.svg", + "staticwebassets/icons/SurfaceEarbuds/20_f.svg", + "staticwebassets/icons/SurfaceEarbuds/20_r.svg", + "staticwebassets/icons/SurfaceEarbuds/24_f.svg", + "staticwebassets/icons/SurfaceEarbuds/24_r.svg", + "staticwebassets/icons/SurfaceHub/20_f.svg", + "staticwebassets/icons/SurfaceHub/20_r.svg", + "staticwebassets/icons/SurfaceHub/24_f.svg", + "staticwebassets/icons/SurfaceHub/24_r.svg", + "staticwebassets/icons/SwimmingPool/20_f.svg", + "staticwebassets/icons/SwimmingPool/20_r.svg", + "staticwebassets/icons/SwimmingPool/24_f.svg", + "staticwebassets/icons/SwimmingPool/24_r.svg", + "staticwebassets/icons/SwimmingPool/32_f.svg", + "staticwebassets/icons/SwimmingPool/32_r.svg", + "staticwebassets/icons/SwimmingPool/48_f.svg", + "staticwebassets/icons/SwimmingPool/48_r.svg", + "staticwebassets/icons/SwipeDown/20_f.svg", + "staticwebassets/icons/SwipeDown/20_r.svg", + "staticwebassets/icons/SwipeDown/24_f.svg", + "staticwebassets/icons/SwipeDown/24_r.svg", + "staticwebassets/icons/SwipeRight/20_f.svg", + "staticwebassets/icons/SwipeRight/20_r.svg", + "staticwebassets/icons/SwipeRight/24_f.svg", + "staticwebassets/icons/SwipeRight/24_r.svg", + "staticwebassets/icons/SwipeUp/20_f.svg", + "staticwebassets/icons/SwipeUp/20_r.svg", + "staticwebassets/icons/SwipeUp/24_f.svg", + "staticwebassets/icons/SwipeUp/24_r.svg", + "staticwebassets/icons/Symbols/16_f.svg", + "staticwebassets/icons/Symbols/16_r.svg", + "staticwebassets/icons/Symbols/20_f.svg", + "staticwebassets/icons/Symbols/20_r.svg", + "staticwebassets/icons/Symbols/24_f.svg", + "staticwebassets/icons/Symbols/24_r.svg", + "staticwebassets/icons/SyncOff/16_f.svg", + "staticwebassets/icons/SyncOff/16_r.svg", + "staticwebassets/icons/SyncOff/20_f.svg", + "staticwebassets/icons/SyncOff/20_r.svg", + "staticwebassets/icons/Syringe/20_f.svg", + "staticwebassets/icons/Syringe/20_r.svg", + "staticwebassets/icons/Syringe/24_f.svg", + "staticwebassets/icons/Syringe/24_r.svg", + "staticwebassets/icons/System/20_f.svg", + "staticwebassets/icons/System/20_r.svg", + "staticwebassets/icons/System/24_f.svg", + "staticwebassets/icons/System/24_r.svg", + "staticwebassets/icons/TV/16_f.svg", + "staticwebassets/icons/TV/16_r.svg", + "staticwebassets/icons/TV/20_f.svg", + "staticwebassets/icons/TV/20_r.svg", + "staticwebassets/icons/TV/24_f.svg", + "staticwebassets/icons/TV/24_r.svg", + "staticwebassets/icons/TV/28_f.svg", + "staticwebassets/icons/TV/28_r.svg", + "staticwebassets/icons/TV/48_f.svg", + "staticwebassets/icons/TV/48_r.svg", + "staticwebassets/icons/TVArrowRight/20_f.svg", + "staticwebassets/icons/TVArrowRight/20_r.svg", + "staticwebassets/icons/TVUSB/16_f.svg", + "staticwebassets/icons/TVUSB/16_r.svg", + "staticwebassets/icons/TVUSB/20_f.svg", + "staticwebassets/icons/TVUSB/20_r.svg", + "staticwebassets/icons/TVUSB/24_f.svg", + "staticwebassets/icons/TVUSB/24_r.svg", + "staticwebassets/icons/TVUSB/28_f.svg", + "staticwebassets/icons/TVUSB/28_r.svg", + "staticwebassets/icons/TVUSB/48_f.svg", + "staticwebassets/icons/TVUSB/48_r.svg", + "staticwebassets/icons/Tab/16_f.svg", + "staticwebassets/icons/Tab/16_r.svg", + "staticwebassets/icons/Tab/20_f.svg", + "staticwebassets/icons/Tab/20_r.svg", + "staticwebassets/icons/Tab/24_f.svg", + "staticwebassets/icons/Tab/24_r.svg", + "staticwebassets/icons/Tab/28_f.svg", + "staticwebassets/icons/Tab/28_r.svg", + "staticwebassets/icons/TabAdd/20_f.svg", + "staticwebassets/icons/TabAdd/20_r.svg", + "staticwebassets/icons/TabAdd/24_f.svg", + "staticwebassets/icons/TabAdd/24_r.svg", + "staticwebassets/icons/TabArrowLeft/20_f.svg", + "staticwebassets/icons/TabArrowLeft/20_r.svg", + "staticwebassets/icons/TabArrowLeft/24_f.svg", + "staticwebassets/icons/TabArrowLeft/24_r.svg", + "staticwebassets/icons/TabDesktop/16_f.svg", + "staticwebassets/icons/TabDesktop/16_r.svg", + "staticwebassets/icons/TabDesktop/20_f.svg", + "staticwebassets/icons/TabDesktop/20_r.svg", + "staticwebassets/icons/TabDesktop/24_f.svg", + "staticwebassets/icons/TabDesktop/24_r.svg", + "staticwebassets/icons/TabDesktopArrowClockwise/16_f.svg", + "staticwebassets/icons/TabDesktopArrowClockwise/16_r.svg", + "staticwebassets/icons/TabDesktopArrowClockwise/20_f.svg", + "staticwebassets/icons/TabDesktopArrowClockwise/20_r.svg", + "staticwebassets/icons/TabDesktopArrowClockwise/24_f.svg", + "staticwebassets/icons/TabDesktopArrowClockwise/24_r.svg", + "staticwebassets/icons/TabDesktopArrowLeft/20_f.svg", + "staticwebassets/icons/TabDesktopArrowLeft/20_r.svg", + "staticwebassets/icons/TabDesktopBottom/20_f.svg", + "staticwebassets/icons/TabDesktopBottom/20_r.svg", + "staticwebassets/icons/TabDesktopBottom/24_f.svg", + "staticwebassets/icons/TabDesktopBottom/24_r.svg", + "staticwebassets/icons/TabDesktopClock/20_f.svg", + "staticwebassets/icons/TabDesktopClock/20_r.svg", + "staticwebassets/icons/TabDesktopCopy/20_f.svg", + "staticwebassets/icons/TabDesktopCopy/20_r.svg", + "staticwebassets/icons/TabDesktopImage/16_f.svg", + "staticwebassets/icons/TabDesktopImage/16_r.svg", + "staticwebassets/icons/TabDesktopImage/20_f.svg", + "staticwebassets/icons/TabDesktopImage/20_r.svg", + "staticwebassets/icons/TabDesktopImage/24_f.svg", + "staticwebassets/icons/TabDesktopImage/24_r.svg", + "staticwebassets/icons/TabDesktopMultiple/20_f.svg", + "staticwebassets/icons/TabDesktopMultiple/20_r.svg", + "staticwebassets/icons/TabDesktopMultipleBottom/20_f.svg", + "staticwebassets/icons/TabDesktopMultipleBottom/20_r.svg", + "staticwebassets/icons/TabDesktopMultipleBottom/24_f.svg", + "staticwebassets/icons/TabDesktopMultipleBottom/24_r.svg", + "staticwebassets/icons/TabDesktopNewPage/20_f.svg", + "staticwebassets/icons/TabDesktopNewPage/20_r.svg", + "staticwebassets/icons/TabInPrivate/16_f.svg", + "staticwebassets/icons/TabInPrivate/16_r.svg", + "staticwebassets/icons/TabInPrivate/20_f.svg", + "staticwebassets/icons/TabInPrivate/20_r.svg", + "staticwebassets/icons/TabInPrivate/24_f.svg", + "staticwebassets/icons/TabInPrivate/24_r.svg", + "staticwebassets/icons/TabInPrivate/28_f.svg", + "staticwebassets/icons/TabInPrivate/28_r.svg", + "staticwebassets/icons/TabInPrivateAccount/20_f.svg", + "staticwebassets/icons/TabInPrivateAccount/20_r.svg", + "staticwebassets/icons/TabInPrivateAccount/24_f.svg", + "staticwebassets/icons/TabInPrivateAccount/24_r.svg", + "staticwebassets/icons/TabProhibited/20_f.svg", + "staticwebassets/icons/TabProhibited/20_r.svg", + "staticwebassets/icons/TabProhibited/24_f.svg", + "staticwebassets/icons/TabProhibited/24_r.svg", + "staticwebassets/icons/TabShieldDismiss/20_f.svg", + "staticwebassets/icons/TabShieldDismiss/20_r.svg", + "staticwebassets/icons/TabShieldDismiss/24_f.svg", + "staticwebassets/icons/TabShieldDismiss/24_r.svg", + "staticwebassets/icons/Table/16_f.svg", + "staticwebassets/icons/Table/16_r.svg", + "staticwebassets/icons/Table/20_f.svg", + "staticwebassets/icons/Table/20_r.svg", + "staticwebassets/icons/Table/24_f.svg", + "staticwebassets/icons/Table/24_r.svg", + "staticwebassets/icons/Table/28_f.svg", + "staticwebassets/icons/Table/28_r.svg", + "staticwebassets/icons/Table/32_f.svg", + "staticwebassets/icons/Table/32_r.svg", + "staticwebassets/icons/Table/48_f.svg", + "staticwebassets/icons/Table/48_r.svg", + "staticwebassets/icons/TableAdd/16_f.svg", + "staticwebassets/icons/TableAdd/16_r.svg", + "staticwebassets/icons/TableAdd/20_f.svg", + "staticwebassets/icons/TableAdd/20_r.svg", + "staticwebassets/icons/TableAdd/24_f.svg", + "staticwebassets/icons/TableAdd/24_r.svg", + "staticwebassets/icons/TableAdd/28_f.svg", + "staticwebassets/icons/TableAdd/28_r.svg", + "staticwebassets/icons/TableBottomRow/16_f.svg", + "staticwebassets/icons/TableBottomRow/16_r.svg", + "staticwebassets/icons/TableBottomRow/20_f.svg", + "staticwebassets/icons/TableBottomRow/20_r.svg", + "staticwebassets/icons/TableBottomRow/24_f.svg", + "staticwebassets/icons/TableBottomRow/24_r.svg", + "staticwebassets/icons/TableBottomRow/28_f.svg", + "staticwebassets/icons/TableBottomRow/28_r.svg", + "staticwebassets/icons/TableBottomRow/32_f.svg", + "staticwebassets/icons/TableBottomRow/32_r.svg", + "staticwebassets/icons/TableBottomRow/48_f.svg", + "staticwebassets/icons/TableBottomRow/48_r.svg", + "staticwebassets/icons/TableCalculator/16_f.svg", + "staticwebassets/icons/TableCalculator/16_r.svg", + "staticwebassets/icons/TableCalculator/20_f.svg", + "staticwebassets/icons/TableCalculator/20_r.svg", + "staticwebassets/icons/TableCellEdit/16_f.svg", + "staticwebassets/icons/TableCellEdit/16_r.svg", + "staticwebassets/icons/TableCellEdit/20_f.svg", + "staticwebassets/icons/TableCellEdit/20_r.svg", + "staticwebassets/icons/TableCellEdit/24_f.svg", + "staticwebassets/icons/TableCellEdit/24_r.svg", + "staticwebassets/icons/TableCellEdit/28_f.svg", + "staticwebassets/icons/TableCellEdit/28_r.svg", + "staticwebassets/icons/TableCellsMerge/16_f.svg", + "staticwebassets/icons/TableCellsMerge/16_r.svg", + "staticwebassets/icons/TableCellsMerge/20_f.svg", + "staticwebassets/icons/TableCellsMerge/20_r.svg", + "staticwebassets/icons/TableCellsMerge/24_f.svg", + "staticwebassets/icons/TableCellsMerge/24_r.svg", + "staticwebassets/icons/TableCellsMerge/28_f.svg", + "staticwebassets/icons/TableCellsMerge/28_r.svg", + "staticwebassets/icons/TableCellsSplit/16_f.svg", + "staticwebassets/icons/TableCellsSplit/16_r.svg", + "staticwebassets/icons/TableCellsSplit/20_f.svg", + "staticwebassets/icons/TableCellsSplit/20_r.svg", + "staticwebassets/icons/TableCellsSplit/24_f.svg", + "staticwebassets/icons/TableCellsSplit/24_r.svg", + "staticwebassets/icons/TableCellsSplit/28_f.svg", + "staticwebassets/icons/TableCellsSplit/28_r.svg", + "staticwebassets/icons/TableChecker/20_f.svg", + "staticwebassets/icons/TableChecker/20_r.svg", + "staticwebassets/icons/TableColumnTopBottom/20_f.svg", + "staticwebassets/icons/TableColumnTopBottom/20_r.svg", + "staticwebassets/icons/TableColumnTopBottom/24_f.svg", + "staticwebassets/icons/TableColumnTopBottom/24_r.svg", + "staticwebassets/icons/TableCopy/20_f.svg", + "staticwebassets/icons/TableCopy/20_r.svg", + "staticwebassets/icons/TableDefault/32_f.svg", + "staticwebassets/icons/TableDefault/32_r.svg", + "staticwebassets/icons/TableDeleteColumn/16_f.svg", + "staticwebassets/icons/TableDeleteColumn/16_r.svg", + "staticwebassets/icons/TableDeleteColumn/20_f.svg", + "staticwebassets/icons/TableDeleteColumn/20_r.svg", + "staticwebassets/icons/TableDeleteColumn/24_f.svg", + "staticwebassets/icons/TableDeleteColumn/24_r.svg", + "staticwebassets/icons/TableDeleteColumn/28_f.svg", + "staticwebassets/icons/TableDeleteColumn/28_r.svg", + "staticwebassets/icons/TableDeleteRow/16_f.svg", + "staticwebassets/icons/TableDeleteRow/16_r.svg", + "staticwebassets/icons/TableDeleteRow/20_f.svg", + "staticwebassets/icons/TableDeleteRow/20_r.svg", + "staticwebassets/icons/TableDeleteRow/24_f.svg", + "staticwebassets/icons/TableDeleteRow/24_r.svg", + "staticwebassets/icons/TableDeleteRow/28_f.svg", + "staticwebassets/icons/TableDeleteRow/28_r.svg", + "staticwebassets/icons/TableDismiss/16_f.svg", + "staticwebassets/icons/TableDismiss/16_r.svg", + "staticwebassets/icons/TableDismiss/20_f.svg", + "staticwebassets/icons/TableDismiss/20_r.svg", + "staticwebassets/icons/TableDismiss/24_f.svg", + "staticwebassets/icons/TableDismiss/24_r.svg", + "staticwebassets/icons/TableDismiss/28_f.svg", + "staticwebassets/icons/TableDismiss/28_r.svg", + "staticwebassets/icons/TableEdit/16_f.svg", + "staticwebassets/icons/TableEdit/16_r.svg", + "staticwebassets/icons/TableEdit/20_f.svg", + "staticwebassets/icons/TableEdit/20_r.svg", + "staticwebassets/icons/TableEdit/24_f.svg", + "staticwebassets/icons/TableEdit/24_r.svg", + "staticwebassets/icons/TableEdit/28_f.svg", + "staticwebassets/icons/TableEdit/28_r.svg", + "staticwebassets/icons/TableFreezeColumn/16_f.svg", + "staticwebassets/icons/TableFreezeColumn/16_r.svg", + "staticwebassets/icons/TableFreezeColumn/20_f.svg", + "staticwebassets/icons/TableFreezeColumn/20_r.svg", + "staticwebassets/icons/TableFreezeColumn/24_f.svg", + "staticwebassets/icons/TableFreezeColumn/24_r.svg", + "staticwebassets/icons/TableFreezeColumn/28_f.svg", + "staticwebassets/icons/TableFreezeColumn/28_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/16_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/16_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/20_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/20_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/24_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/24_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/28_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRow/28_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/16_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/16_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/20_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/20_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/24_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/24_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/28_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempLTR/28_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/16_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/16_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/20_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/20_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/24_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/24_r.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/28_f.svg", + "staticwebassets/icons/TableFreezeColumnAndRowTempRTL/28_r.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/16_f.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/16_r.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/20_f.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/20_r.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/24_f.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/24_r.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/28_f.svg", + "staticwebassets/icons/TableFreezeColumnTempLTR/28_r.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/16_f.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/16_r.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/20_f.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/20_r.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/24_f.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/24_r.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/28_f.svg", + "staticwebassets/icons/TableFreezeColumnTempRTL/28_r.svg", + "staticwebassets/icons/TableFreezeRow/16_f.svg", + "staticwebassets/icons/TableFreezeRow/16_r.svg", + "staticwebassets/icons/TableFreezeRow/20_f.svg", + "staticwebassets/icons/TableFreezeRow/20_r.svg", + "staticwebassets/icons/TableFreezeRow/24_f.svg", + "staticwebassets/icons/TableFreezeRow/24_r.svg", + "staticwebassets/icons/TableFreezeRow/28_f.svg", + "staticwebassets/icons/TableFreezeRow/28_r.svg", + "staticwebassets/icons/TableImage/20_f.svg", + "staticwebassets/icons/TableImage/20_r.svg", + "staticwebassets/icons/TableInsertColumn/16_f.svg", + "staticwebassets/icons/TableInsertColumn/16_r.svg", + "staticwebassets/icons/TableInsertColumn/20_f.svg", + "staticwebassets/icons/TableInsertColumn/20_r.svg", + "staticwebassets/icons/TableInsertColumn/24_f.svg", + "staticwebassets/icons/TableInsertColumn/24_r.svg", + "staticwebassets/icons/TableInsertColumn/28_f.svg", + "staticwebassets/icons/TableInsertColumn/28_r.svg", + "staticwebassets/icons/TableInsertRow/16_f.svg", + "staticwebassets/icons/TableInsertRow/16_r.svg", + "staticwebassets/icons/TableInsertRow/20_f.svg", + "staticwebassets/icons/TableInsertRow/20_r.svg", + "staticwebassets/icons/TableInsertRow/24_f.svg", + "staticwebassets/icons/TableInsertRow/24_r.svg", + "staticwebassets/icons/TableInsertRow/28_f.svg", + "staticwebassets/icons/TableInsertRow/28_r.svg", + "staticwebassets/icons/TableLightning/16_f.svg", + "staticwebassets/icons/TableLightning/16_r.svg", + "staticwebassets/icons/TableLightning/20_f.svg", + "staticwebassets/icons/TableLightning/20_r.svg", + "staticwebassets/icons/TableLightning/24_f.svg", + "staticwebassets/icons/TableLightning/24_r.svg", + "staticwebassets/icons/TableLightning/28_f.svg", + "staticwebassets/icons/TableLightning/28_r.svg", + "staticwebassets/icons/TableLink/16_f.svg", + "staticwebassets/icons/TableLink/16_r.svg", + "staticwebassets/icons/TableLink/20_f.svg", + "staticwebassets/icons/TableLink/20_r.svg", + "staticwebassets/icons/TableLink/24_f.svg", + "staticwebassets/icons/TableLink/24_r.svg", + "staticwebassets/icons/TableLink/28_f.svg", + "staticwebassets/icons/TableLink/28_r.svg", + "staticwebassets/icons/TableLock/16_f.svg", + "staticwebassets/icons/TableLock/16_r.svg", + "staticwebassets/icons/TableLock/20_f.svg", + "staticwebassets/icons/TableLock/20_r.svg", + "staticwebassets/icons/TableLock/24_f.svg", + "staticwebassets/icons/TableLock/24_r.svg", + "staticwebassets/icons/TableLock/28_f.svg", + "staticwebassets/icons/TableLock/28_r.svg", + "staticwebassets/icons/TableLock/32_f.svg", + "staticwebassets/icons/TableLock/32_r.svg", + "staticwebassets/icons/TableLock/48_f.svg", + "staticwebassets/icons/TableLock/48_r.svg", + "staticwebassets/icons/TableMoveAbove/16_f.svg", + "staticwebassets/icons/TableMoveAbove/16_r.svg", + "staticwebassets/icons/TableMoveAbove/20_f.svg", + "staticwebassets/icons/TableMoveAbove/20_r.svg", + "staticwebassets/icons/TableMoveAbove/24_f.svg", + "staticwebassets/icons/TableMoveAbove/24_r.svg", + "staticwebassets/icons/TableMoveAbove/28_f.svg", + "staticwebassets/icons/TableMoveAbove/28_r.svg", + "staticwebassets/icons/TableMoveBelow/16_f.svg", + "staticwebassets/icons/TableMoveBelow/16_r.svg", + "staticwebassets/icons/TableMoveBelow/20_f.svg", + "staticwebassets/icons/TableMoveBelow/20_r.svg", + "staticwebassets/icons/TableMoveBelow/24_f.svg", + "staticwebassets/icons/TableMoveBelow/24_r.svg", + "staticwebassets/icons/TableMoveBelow/28_f.svg", + "staticwebassets/icons/TableMoveBelow/28_r.svg", + "staticwebassets/icons/TableMoveLeft/16_f.svg", + "staticwebassets/icons/TableMoveLeft/16_r.svg", + "staticwebassets/icons/TableMoveLeft/20_f.svg", + "staticwebassets/icons/TableMoveLeft/20_r.svg", + "staticwebassets/icons/TableMoveLeft/24_f.svg", + "staticwebassets/icons/TableMoveLeft/24_r.svg", + "staticwebassets/icons/TableMoveLeft/28_f.svg", + "staticwebassets/icons/TableMoveLeft/28_r.svg", + "staticwebassets/icons/TableMoveRight/16_f.svg", + "staticwebassets/icons/TableMoveRight/16_r.svg", + "staticwebassets/icons/TableMoveRight/20_f.svg", + "staticwebassets/icons/TableMoveRight/20_r.svg", + "staticwebassets/icons/TableMoveRight/24_f.svg", + "staticwebassets/icons/TableMoveRight/24_r.svg", + "staticwebassets/icons/TableMoveRight/28_f.svg", + "staticwebassets/icons/TableMoveRight/28_r.svg", + "staticwebassets/icons/TableMultiple/20_f.svg", + "staticwebassets/icons/TableMultiple/20_r.svg", + "staticwebassets/icons/TableOffset/20_f.svg", + "staticwebassets/icons/TableOffset/20_r.svg", + "staticwebassets/icons/TableOffset/24_f.svg", + "staticwebassets/icons/TableOffset/24_r.svg", + "staticwebassets/icons/TableOffsetAdd/20_f.svg", + "staticwebassets/icons/TableOffsetAdd/20_r.svg", + "staticwebassets/icons/TableOffsetAdd/24_f.svg", + "staticwebassets/icons/TableOffsetAdd/24_r.svg", + "staticwebassets/icons/TableOffsetLessThanOrEqualTo/20_f.svg", + "staticwebassets/icons/TableOffsetLessThanOrEqualTo/20_r.svg", + "staticwebassets/icons/TableOffsetLessThanOrEqualTo/24_f.svg", + "staticwebassets/icons/TableOffsetLessThanOrEqualTo/24_r.svg", + "staticwebassets/icons/TableOffsetSettings/20_f.svg", + "staticwebassets/icons/TableOffsetSettings/20_r.svg", + "staticwebassets/icons/TableOffsetSettings/24_f.svg", + "staticwebassets/icons/TableOffsetSettings/24_r.svg", + "staticwebassets/icons/TableResizeColumn/16_f.svg", + "staticwebassets/icons/TableResizeColumn/16_r.svg", + "staticwebassets/icons/TableResizeColumn/20_f.svg", + "staticwebassets/icons/TableResizeColumn/20_r.svg", + "staticwebassets/icons/TableResizeColumn/24_f.svg", + "staticwebassets/icons/TableResizeColumn/24_r.svg", + "staticwebassets/icons/TableResizeColumn/28_f.svg", + "staticwebassets/icons/TableResizeColumn/28_r.svg", + "staticwebassets/icons/TableResizeRow/16_f.svg", + "staticwebassets/icons/TableResizeRow/16_r.svg", + "staticwebassets/icons/TableResizeRow/20_f.svg", + "staticwebassets/icons/TableResizeRow/20_r.svg", + "staticwebassets/icons/TableResizeRow/24_f.svg", + "staticwebassets/icons/TableResizeRow/24_r.svg", + "staticwebassets/icons/TableResizeRow/28_f.svg", + "staticwebassets/icons/TableResizeRow/28_r.svg", + "staticwebassets/icons/TableSearch/20_f.svg", + "staticwebassets/icons/TableSearch/20_r.svg", + "staticwebassets/icons/TableSettings/16_f.svg", + "staticwebassets/icons/TableSettings/16_r.svg", + "staticwebassets/icons/TableSettings/20_f.svg", + "staticwebassets/icons/TableSettings/20_r.svg", + "staticwebassets/icons/TableSettings/24_f.svg", + "staticwebassets/icons/TableSettings/24_r.svg", + "staticwebassets/icons/TableSettings/28_f.svg", + "staticwebassets/icons/TableSettings/28_r.svg", + "staticwebassets/icons/TableSimple/16_f.svg", + "staticwebassets/icons/TableSimple/16_r.svg", + "staticwebassets/icons/TableSimple/20_f.svg", + "staticwebassets/icons/TableSimple/20_r.svg", + "staticwebassets/icons/TableSimple/24_f.svg", + "staticwebassets/icons/TableSimple/24_r.svg", + "staticwebassets/icons/TableSimple/28_f.svg", + "staticwebassets/icons/TableSimple/28_r.svg", + "staticwebassets/icons/TableSimple/32_f.svg", + "staticwebassets/icons/TableSimple/32_r.svg", + "staticwebassets/icons/TableSimple/48_f.svg", + "staticwebassets/icons/TableSimple/48_r.svg", + "staticwebassets/icons/TableSimpleCheckmark/16_f.svg", + "staticwebassets/icons/TableSimpleCheckmark/16_r.svg", + "staticwebassets/icons/TableSimpleCheckmark/20_f.svg", + "staticwebassets/icons/TableSimpleCheckmark/20_r.svg", + "staticwebassets/icons/TableSimpleCheckmark/24_f.svg", + "staticwebassets/icons/TableSimpleCheckmark/24_r.svg", + "staticwebassets/icons/TableSimpleCheckmark/28_f.svg", + "staticwebassets/icons/TableSimpleCheckmark/28_r.svg", + "staticwebassets/icons/TableSimpleCheckmark/32_f.svg", + "staticwebassets/icons/TableSimpleCheckmark/32_r.svg", + "staticwebassets/icons/TableSimpleCheckmark/48_f.svg", + "staticwebassets/icons/TableSimpleCheckmark/48_r.svg", + "staticwebassets/icons/TableSimpleExclude/16_f.svg", + "staticwebassets/icons/TableSimpleExclude/16_r.svg", + "staticwebassets/icons/TableSimpleExclude/20_f.svg", + "staticwebassets/icons/TableSimpleExclude/20_r.svg", + "staticwebassets/icons/TableSimpleExclude/24_f.svg", + "staticwebassets/icons/TableSimpleExclude/24_r.svg", + "staticwebassets/icons/TableSimpleExclude/28_f.svg", + "staticwebassets/icons/TableSimpleExclude/28_r.svg", + "staticwebassets/icons/TableSimpleExclude/32_f.svg", + "staticwebassets/icons/TableSimpleExclude/32_r.svg", + "staticwebassets/icons/TableSimpleExclude/48_f.svg", + "staticwebassets/icons/TableSimpleExclude/48_r.svg", + "staticwebassets/icons/TableSimpleInclude/16_f.svg", + "staticwebassets/icons/TableSimpleInclude/16_r.svg", + "staticwebassets/icons/TableSimpleInclude/20_f.svg", + "staticwebassets/icons/TableSimpleInclude/20_r.svg", + "staticwebassets/icons/TableSimpleInclude/24_f.svg", + "staticwebassets/icons/TableSimpleInclude/24_r.svg", + "staticwebassets/icons/TableSimpleInclude/28_f.svg", + "staticwebassets/icons/TableSimpleInclude/28_r.svg", + "staticwebassets/icons/TableSimpleInclude/32_f.svg", + "staticwebassets/icons/TableSimpleInclude/32_r.svg", + "staticwebassets/icons/TableSimpleInclude/48_f.svg", + "staticwebassets/icons/TableSimpleInclude/48_r.svg", + "staticwebassets/icons/TableSimpleMultiple/20_f.svg", + "staticwebassets/icons/TableSimpleMultiple/20_r.svg", + "staticwebassets/icons/TableSimpleMultiple/24_f.svg", + "staticwebassets/icons/TableSimpleMultiple/24_r.svg", + "staticwebassets/icons/TableSplit/20_f.svg", + "staticwebassets/icons/TableSplit/20_r.svg", + "staticwebassets/icons/TableStackAbove/16_f.svg", + "staticwebassets/icons/TableStackAbove/16_r.svg", + "staticwebassets/icons/TableStackAbove/20_f.svg", + "staticwebassets/icons/TableStackAbove/20_r.svg", + "staticwebassets/icons/TableStackAbove/24_f.svg", + "staticwebassets/icons/TableStackAbove/24_r.svg", + "staticwebassets/icons/TableStackAbove/28_f.svg", + "staticwebassets/icons/TableStackAbove/28_r.svg", + "staticwebassets/icons/TableStackBelow/16_f.svg", + "staticwebassets/icons/TableStackBelow/16_r.svg", + "staticwebassets/icons/TableStackBelow/20_f.svg", + "staticwebassets/icons/TableStackBelow/20_r.svg", + "staticwebassets/icons/TableStackBelow/24_f.svg", + "staticwebassets/icons/TableStackBelow/24_r.svg", + "staticwebassets/icons/TableStackBelow/28_f.svg", + "staticwebassets/icons/TableStackBelow/28_r.svg", + "staticwebassets/icons/TableStackLeft/16_f.svg", + "staticwebassets/icons/TableStackLeft/16_r.svg", + "staticwebassets/icons/TableStackLeft/20_f.svg", + "staticwebassets/icons/TableStackLeft/20_r.svg", + "staticwebassets/icons/TableStackLeft/24_f.svg", + "staticwebassets/icons/TableStackLeft/24_r.svg", + "staticwebassets/icons/TableStackLeft/28_f.svg", + "staticwebassets/icons/TableStackLeft/28_r.svg", + "staticwebassets/icons/TableStackRight/16_f.svg", + "staticwebassets/icons/TableStackRight/16_r.svg", + "staticwebassets/icons/TableStackRight/20_f.svg", + "staticwebassets/icons/TableStackRight/20_r.svg", + "staticwebassets/icons/TableStackRight/24_f.svg", + "staticwebassets/icons/TableStackRight/24_r.svg", + "staticwebassets/icons/TableStackRight/28_f.svg", + "staticwebassets/icons/TableStackRight/28_r.svg", + "staticwebassets/icons/TableSwitch/16_f.svg", + "staticwebassets/icons/TableSwitch/16_r.svg", + "staticwebassets/icons/TableSwitch/20_f.svg", + "staticwebassets/icons/TableSwitch/20_r.svg", + "staticwebassets/icons/TableSwitch/24_f.svg", + "staticwebassets/icons/TableSwitch/24_r.svg", + "staticwebassets/icons/TableSwitch/28_f.svg", + "staticwebassets/icons/TableSwitch/28_r.svg", + "staticwebassets/icons/Tablet/12_f.svg", + "staticwebassets/icons/Tablet/12_r.svg", + "staticwebassets/icons/Tablet/16_f.svg", + "staticwebassets/icons/Tablet/16_r.svg", + "staticwebassets/icons/Tablet/20_f.svg", + "staticwebassets/icons/Tablet/20_r.svg", + "staticwebassets/icons/Tablet/24_f.svg", + "staticwebassets/icons/Tablet/24_r.svg", + "staticwebassets/icons/Tablet/32_f.svg", + "staticwebassets/icons/Tablet/32_r.svg", + "staticwebassets/icons/Tablet/48_f.svg", + "staticwebassets/icons/Tablet/48_r.svg", + "staticwebassets/icons/TabletLaptop/20_f.svg", + "staticwebassets/icons/TabletLaptop/20_r.svg", + "staticwebassets/icons/TabletSpeaker/20_f.svg", + "staticwebassets/icons/TabletSpeaker/20_r.svg", + "staticwebassets/icons/TabletSpeaker/24_f.svg", + "staticwebassets/icons/TabletSpeaker/24_r.svg", + "staticwebassets/icons/Tabs/16_f.svg", + "staticwebassets/icons/Tabs/16_r.svg", + "staticwebassets/icons/Tabs/20_f.svg", + "staticwebassets/icons/Tabs/20_r.svg", + "staticwebassets/icons/Tabs/24_f.svg", + "staticwebassets/icons/Tabs/24_r.svg", + "staticwebassets/icons/Tag/16_f.svg", + "staticwebassets/icons/Tag/16_r.svg", + "staticwebassets/icons/Tag/20_f.svg", + "staticwebassets/icons/Tag/20_r.svg", + "staticwebassets/icons/Tag/24_f.svg", + "staticwebassets/icons/Tag/24_r.svg", + "staticwebassets/icons/Tag/28_f.svg", + "staticwebassets/icons/Tag/28_r.svg", + "staticwebassets/icons/Tag/32_f.svg", + "staticwebassets/icons/Tag/32_r.svg", + "staticwebassets/icons/TagCircle/20_f.svg", + "staticwebassets/icons/TagCircle/20_r.svg", + "staticwebassets/icons/TagDismiss/16_f.svg", + "staticwebassets/icons/TagDismiss/16_r.svg", + "staticwebassets/icons/TagDismiss/20_f.svg", + "staticwebassets/icons/TagDismiss/20_r.svg", + "staticwebassets/icons/TagDismiss/24_f.svg", + "staticwebassets/icons/TagDismiss/24_r.svg", + "staticwebassets/icons/TagError/16_f.svg", + "staticwebassets/icons/TagError/16_r.svg", + "staticwebassets/icons/TagError/20_f.svg", + "staticwebassets/icons/TagError/20_r.svg", + "staticwebassets/icons/TagError/24_f.svg", + "staticwebassets/icons/TagError/24_r.svg", + "staticwebassets/icons/TagLock/16_f.svg", + "staticwebassets/icons/TagLock/16_r.svg", + "staticwebassets/icons/TagLock/20_f.svg", + "staticwebassets/icons/TagLock/20_r.svg", + "staticwebassets/icons/TagLock/24_f.svg", + "staticwebassets/icons/TagLock/24_r.svg", + "staticwebassets/icons/TagLock/32_f.svg", + "staticwebassets/icons/TagLock/32_r.svg", + "staticwebassets/icons/TagLockAccent/16_f.svg", + "staticwebassets/icons/TagLockAccent/20_f.svg", + "staticwebassets/icons/TagLockAccent/24_f.svg", + "staticwebassets/icons/TagLockAccent/32_f.svg", + "staticwebassets/icons/TagMultiple/16_f.svg", + "staticwebassets/icons/TagMultiple/16_r.svg", + "staticwebassets/icons/TagMultiple/20_f.svg", + "staticwebassets/icons/TagMultiple/20_r.svg", + "staticwebassets/icons/TagMultiple/24_f.svg", + "staticwebassets/icons/TagMultiple/24_r.svg", + "staticwebassets/icons/TagOff/20_f.svg", + "staticwebassets/icons/TagOff/20_r.svg", + "staticwebassets/icons/TagOff/24_f.svg", + "staticwebassets/icons/TagOff/24_r.svg", + "staticwebassets/icons/TagQuestionMark/16_f.svg", + "staticwebassets/icons/TagQuestionMark/16_r.svg", + "staticwebassets/icons/TagQuestionMark/20_f.svg", + "staticwebassets/icons/TagQuestionMark/20_r.svg", + "staticwebassets/icons/TagQuestionMark/24_f.svg", + "staticwebassets/icons/TagQuestionMark/24_r.svg", + "staticwebassets/icons/TagQuestionMark/32_f.svg", + "staticwebassets/icons/TagQuestionMark/32_r.svg", + "staticwebassets/icons/TagReset/20_f.svg", + "staticwebassets/icons/TagReset/20_r.svg", + "staticwebassets/icons/TagReset/24_f.svg", + "staticwebassets/icons/TagReset/24_r.svg", + "staticwebassets/icons/TagSearch/20_f.svg", + "staticwebassets/icons/TagSearch/20_r.svg", + "staticwebassets/icons/TagSearch/24_f.svg", + "staticwebassets/icons/TagSearch/24_r.svg", + "staticwebassets/icons/TapDouble/20_f.svg", + "staticwebassets/icons/TapDouble/20_r.svg", + "staticwebassets/icons/TapDouble/24_f.svg", + "staticwebassets/icons/TapDouble/24_r.svg", + "staticwebassets/icons/TapDouble/32_f.svg", + "staticwebassets/icons/TapDouble/32_r.svg", + "staticwebassets/icons/TapDouble/48_f.svg", + "staticwebassets/icons/TapDouble/48_r.svg", + "staticwebassets/icons/TapSingle/20_f.svg", + "staticwebassets/icons/TapSingle/20_r.svg", + "staticwebassets/icons/TapSingle/24_f.svg", + "staticwebassets/icons/TapSingle/24_r.svg", + "staticwebassets/icons/TapSingle/32_f.svg", + "staticwebassets/icons/TapSingle/32_r.svg", + "staticwebassets/icons/TapSingle/48_f.svg", + "staticwebassets/icons/TapSingle/48_r.svg", + "staticwebassets/icons/Target/16_f.svg", + "staticwebassets/icons/Target/16_r.svg", + "staticwebassets/icons/Target/20_f.svg", + "staticwebassets/icons/Target/20_r.svg", + "staticwebassets/icons/Target/24_f.svg", + "staticwebassets/icons/Target/24_r.svg", + "staticwebassets/icons/Target/32_f.svg", + "staticwebassets/icons/Target/32_r.svg", + "staticwebassets/icons/TargetArrow/16_f.svg", + "staticwebassets/icons/TargetArrow/16_r.svg", + "staticwebassets/icons/TargetArrow/20_f.svg", + "staticwebassets/icons/TargetArrow/20_r.svg", + "staticwebassets/icons/TargetArrow/24_f.svg", + "staticwebassets/icons/TargetArrow/24_r.svg", + "staticwebassets/icons/TargetEdit/16_f.svg", + "staticwebassets/icons/TargetEdit/16_r.svg", + "staticwebassets/icons/TargetEdit/20_f.svg", + "staticwebassets/icons/TargetEdit/20_r.svg", + "staticwebassets/icons/TargetEdit/24_f.svg", + "staticwebassets/icons/TargetEdit/24_r.svg", + "staticwebassets/icons/TaskListAdd/20_f.svg", + "staticwebassets/icons/TaskListAdd/20_r.svg", + "staticwebassets/icons/TaskListAdd/24_f.svg", + "staticwebassets/icons/TaskListAdd/24_r.svg", + "staticwebassets/icons/TaskListLTR/20_f.svg", + "staticwebassets/icons/TaskListLTR/20_r.svg", + "staticwebassets/icons/TaskListLTR/24_f.svg", + "staticwebassets/icons/TaskListLTR/24_r.svg", + "staticwebassets/icons/TaskListRTL/20_f.svg", + "staticwebassets/icons/TaskListRTL/20_r.svg", + "staticwebassets/icons/TaskListRTL/24_f.svg", + "staticwebassets/icons/TaskListRTL/24_r.svg", + "staticwebassets/icons/TaskListSquareAdd/20_f.svg", + "staticwebassets/icons/TaskListSquareAdd/20_r.svg", + "staticwebassets/icons/TaskListSquareAdd/24_f.svg", + "staticwebassets/icons/TaskListSquareAdd/24_r.svg", + "staticwebassets/icons/TaskListSquareDatabase/20_f.svg", + "staticwebassets/icons/TaskListSquareDatabase/20_r.svg", + "staticwebassets/icons/TaskListSquareLTR/16_f.svg", + "staticwebassets/icons/TaskListSquareLTR/16_r.svg", + "staticwebassets/icons/TaskListSquareLTR/20_f.svg", + "staticwebassets/icons/TaskListSquareLTR/20_r.svg", + "staticwebassets/icons/TaskListSquareLTR/24_f.svg", + "staticwebassets/icons/TaskListSquareLTR/24_r.svg", + "staticwebassets/icons/TaskListSquarePerson/20_f.svg", + "staticwebassets/icons/TaskListSquarePerson/20_r.svg", + "staticwebassets/icons/TaskListSquareRTL/16_f.svg", + "staticwebassets/icons/TaskListSquareRTL/16_r.svg", + "staticwebassets/icons/TaskListSquareRTL/20_f.svg", + "staticwebassets/icons/TaskListSquareRTL/20_r.svg", + "staticwebassets/icons/TaskListSquareRTL/24_f.svg", + "staticwebassets/icons/TaskListSquareRTL/24_r.svg", + "staticwebassets/icons/TaskListSquareSettings/20_f.svg", + "staticwebassets/icons/TaskListSquareSettings/20_r.svg", + "staticwebassets/icons/TasksApp/20_f.svg", + "staticwebassets/icons/TasksApp/20_r.svg", + "staticwebassets/icons/TasksApp/24_f.svg", + "staticwebassets/icons/TasksApp/24_r.svg", + "staticwebassets/icons/TasksApp/28_f.svg", + "staticwebassets/icons/TasksApp/28_r.svg", + "staticwebassets/icons/Teddy/20_f.svg", + "staticwebassets/icons/Teddy/20_r.svg", + "staticwebassets/icons/Teddy/24_f.svg", + "staticwebassets/icons/Teddy/24_r.svg", + "staticwebassets/icons/Temperature/16_f.svg", + "staticwebassets/icons/Temperature/16_r.svg", + "staticwebassets/icons/Temperature/20_f.svg", + "staticwebassets/icons/Temperature/20_r.svg", + "staticwebassets/icons/Temperature/24_f.svg", + "staticwebassets/icons/Temperature/24_r.svg", + "staticwebassets/icons/Temperature/32_f.svg", + "staticwebassets/icons/Temperature/32_r.svg", + "staticwebassets/icons/Temperature/48_f.svg", + "staticwebassets/icons/Temperature/48_r.svg", + "staticwebassets/icons/Tent/12_f.svg", + "staticwebassets/icons/Tent/12_r.svg", + "staticwebassets/icons/Tent/16_f.svg", + "staticwebassets/icons/Tent/16_r.svg", + "staticwebassets/icons/Tent/20_f.svg", + "staticwebassets/icons/Tent/20_r.svg", + "staticwebassets/icons/Tent/24_f.svg", + "staticwebassets/icons/Tent/24_r.svg", + "staticwebassets/icons/Tent/28_f.svg", + "staticwebassets/icons/Tent/28_r.svg", + "staticwebassets/icons/Tent/48_f.svg", + "staticwebassets/icons/Tent/48_r.svg", + "staticwebassets/icons/TetrisApp/16_f.svg", + "staticwebassets/icons/TetrisApp/16_r.svg", + "staticwebassets/icons/TetrisApp/20_f.svg", + "staticwebassets/icons/TetrisApp/20_r.svg", + "staticwebassets/icons/TetrisApp/24_f.svg", + "staticwebassets/icons/TetrisApp/24_r.svg", + "staticwebassets/icons/TetrisApp/28_f.svg", + "staticwebassets/icons/TetrisApp/28_r.svg", + "staticwebassets/icons/TetrisApp/32_f.svg", + "staticwebassets/icons/TetrisApp/32_r.svg", + "staticwebassets/icons/TetrisApp/48_f.svg", + "staticwebassets/icons/TetrisApp/48_r.svg", + "staticwebassets/icons/Text/12_f.svg", + "staticwebassets/icons/Text/12_r.svg", + "staticwebassets/icons/Text/16_f.svg", + "staticwebassets/icons/Text/16_r.svg", + "staticwebassets/icons/Text/32_f.svg", + "staticwebassets/icons/Text/32_r.svg", + "staticwebassets/icons/TextAbcUnderlineDouble/32_f.svg", + "staticwebassets/icons/TextAbcUnderlineDouble/32_r.svg", + "staticwebassets/icons/TextAdd/20_f.svg", + "staticwebassets/icons/TextAdd/20_r.svg", + "staticwebassets/icons/TextAddSpaceAfter/20_f.svg", + "staticwebassets/icons/TextAddSpaceAfter/20_r.svg", + "staticwebassets/icons/TextAddSpaceAfter/24_f.svg", + "staticwebassets/icons/TextAddSpaceAfter/24_r.svg", + "staticwebassets/icons/TextAddSpaceBefore/20_f.svg", + "staticwebassets/icons/TextAddSpaceBefore/20_r.svg", + "staticwebassets/icons/TextAddSpaceBefore/24_f.svg", + "staticwebassets/icons/TextAddSpaceBefore/24_r.svg", + "staticwebassets/icons/TextAddT/20_f.svg", + "staticwebassets/icons/TextAddT/20_r.svg", + "staticwebassets/icons/TextAddT/24_f.svg", + "staticwebassets/icons/TextAddT/24_r.svg", + "staticwebassets/icons/TextAlignCenter/16_f.svg", + "staticwebassets/icons/TextAlignCenter/16_r.svg", + "staticwebassets/icons/TextAlignCenter/20_f.svg", + "staticwebassets/icons/TextAlignCenter/20_r.svg", + "staticwebassets/icons/TextAlignCenter/24_f.svg", + "staticwebassets/icons/TextAlignCenter/24_r.svg", + "staticwebassets/icons/TextAlignCenterRotate270/16_f.svg", + "staticwebassets/icons/TextAlignCenterRotate270/16_r.svg", + "staticwebassets/icons/TextAlignCenterRotate270/20_f.svg", + "staticwebassets/icons/TextAlignCenterRotate270/20_r.svg", + "staticwebassets/icons/TextAlignCenterRotate270/24_f.svg", + "staticwebassets/icons/TextAlignCenterRotate270/24_r.svg", + "staticwebassets/icons/TextAlignCenterRotate90/16_f.svg", + "staticwebassets/icons/TextAlignCenterRotate90/16_r.svg", + "staticwebassets/icons/TextAlignCenterRotate90/20_f.svg", + "staticwebassets/icons/TextAlignCenterRotate90/20_r.svg", + "staticwebassets/icons/TextAlignCenterRotate90/24_f.svg", + "staticwebassets/icons/TextAlignCenterRotate90/24_r.svg", + "staticwebassets/icons/TextAlignDistributed/20_f.svg", + "staticwebassets/icons/TextAlignDistributed/20_r.svg", + "staticwebassets/icons/TextAlignDistributed/24_f.svg", + "staticwebassets/icons/TextAlignDistributed/24_r.svg", + "staticwebassets/icons/TextAlignDistributedEvenly/20_f.svg", + "staticwebassets/icons/TextAlignDistributedEvenly/20_r.svg", + "staticwebassets/icons/TextAlignDistributedEvenly/24_f.svg", + "staticwebassets/icons/TextAlignDistributedEvenly/24_r.svg", + "staticwebassets/icons/TextAlignDistributedVertical/20_f.svg", + "staticwebassets/icons/TextAlignDistributedVertical/20_r.svg", + "staticwebassets/icons/TextAlignDistributedVertical/24_f.svg", + "staticwebassets/icons/TextAlignDistributedVertical/24_r.svg", + "staticwebassets/icons/TextAlignJustify/20_f.svg", + "staticwebassets/icons/TextAlignJustify/20_r.svg", + "staticwebassets/icons/TextAlignJustify/24_f.svg", + "staticwebassets/icons/TextAlignJustify/24_r.svg", + "staticwebassets/icons/TextAlignJustifyLow/20_f.svg", + "staticwebassets/icons/TextAlignJustifyLow/20_r.svg", + "staticwebassets/icons/TextAlignJustifyLow/24_f.svg", + "staticwebassets/icons/TextAlignJustifyLow/24_r.svg", + "staticwebassets/icons/TextAlignJustifyLow90/20_f.svg", + "staticwebassets/icons/TextAlignJustifyLow90/20_r.svg", + "staticwebassets/icons/TextAlignJustifyLow90/24_f.svg", + "staticwebassets/icons/TextAlignJustifyLow90/24_r.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate270/20_f.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate270/20_r.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate270/24_f.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate270/24_r.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate90/20_f.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate90/20_r.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate90/24_f.svg", + "staticwebassets/icons/TextAlignJustifyLowRotate90/24_r.svg", + "staticwebassets/icons/TextAlignJustifyRotate270/20_f.svg", + "staticwebassets/icons/TextAlignJustifyRotate270/20_r.svg", + "staticwebassets/icons/TextAlignJustifyRotate270/24_f.svg", + "staticwebassets/icons/TextAlignJustifyRotate270/24_r.svg", + "staticwebassets/icons/TextAlignJustifyRotate90/20_f.svg", + "staticwebassets/icons/TextAlignJustifyRotate90/20_r.svg", + "staticwebassets/icons/TextAlignJustifyRotate90/24_f.svg", + "staticwebassets/icons/TextAlignJustifyRotate90/24_r.svg", + "staticwebassets/icons/TextAlignLeft/16_f.svg", + "staticwebassets/icons/TextAlignLeft/16_r.svg", + "staticwebassets/icons/TextAlignLeft/20_f.svg", + "staticwebassets/icons/TextAlignLeft/20_r.svg", + "staticwebassets/icons/TextAlignLeft/24_f.svg", + "staticwebassets/icons/TextAlignLeft/24_r.svg", + "staticwebassets/icons/TextAlignLeftRotate270/16_f.svg", + "staticwebassets/icons/TextAlignLeftRotate270/16_r.svg", + "staticwebassets/icons/TextAlignLeftRotate270/20_f.svg", + "staticwebassets/icons/TextAlignLeftRotate270/20_r.svg", + "staticwebassets/icons/TextAlignLeftRotate270/24_f.svg", + "staticwebassets/icons/TextAlignLeftRotate270/24_r.svg", + "staticwebassets/icons/TextAlignLeftRotate90/16_f.svg", + "staticwebassets/icons/TextAlignLeftRotate90/16_r.svg", + "staticwebassets/icons/TextAlignLeftRotate90/20_f.svg", + "staticwebassets/icons/TextAlignLeftRotate90/20_r.svg", + "staticwebassets/icons/TextAlignLeftRotate90/24_f.svg", + "staticwebassets/icons/TextAlignLeftRotate90/24_r.svg", + "staticwebassets/icons/TextAlignLeftTempLTR/16_f.svg", + "staticwebassets/icons/TextAlignLeftTempLTR/16_r.svg", + "staticwebassets/icons/TextAlignLeftTempLTR/20_f.svg", + "staticwebassets/icons/TextAlignLeftTempLTR/20_r.svg", + "staticwebassets/icons/TextAlignLeftTempLTR/24_f.svg", + "staticwebassets/icons/TextAlignLeftTempLTR/24_r.svg", + "staticwebassets/icons/TextAlignLeftTempRTL/16_f.svg", + "staticwebassets/icons/TextAlignLeftTempRTL/16_r.svg", + "staticwebassets/icons/TextAlignLeftTempRTL/20_f.svg", + "staticwebassets/icons/TextAlignLeftTempRTL/20_r.svg", + "staticwebassets/icons/TextAlignLeftTempRTL/24_f.svg", + "staticwebassets/icons/TextAlignLeftTempRTL/24_r.svg", + "staticwebassets/icons/TextAlignRight/16_f.svg", + "staticwebassets/icons/TextAlignRight/16_r.svg", + "staticwebassets/icons/TextAlignRight/20_f.svg", + "staticwebassets/icons/TextAlignRight/20_r.svg", + "staticwebassets/icons/TextAlignRight/24_f.svg", + "staticwebassets/icons/TextAlignRight/24_r.svg", + "staticwebassets/icons/TextAlignRightRotate270/16_f.svg", + "staticwebassets/icons/TextAlignRightRotate270/16_r.svg", + "staticwebassets/icons/TextAlignRightRotate270/20_f.svg", + "staticwebassets/icons/TextAlignRightRotate270/20_r.svg", + "staticwebassets/icons/TextAlignRightRotate270/24_f.svg", + "staticwebassets/icons/TextAlignRightRotate270/24_r.svg", + "staticwebassets/icons/TextAlignRightRotate90/16_f.svg", + "staticwebassets/icons/TextAlignRightRotate90/16_r.svg", + "staticwebassets/icons/TextAlignRightRotate90/20_f.svg", + "staticwebassets/icons/TextAlignRightRotate90/20_r.svg", + "staticwebassets/icons/TextAlignRightRotate90/24_f.svg", + "staticwebassets/icons/TextAlignRightRotate90/24_r.svg", + "staticwebassets/icons/TextAsterisk/20_f.svg", + "staticwebassets/icons/TextAsterisk/20_r.svg", + "staticwebassets/icons/TextBaseline/20_f.svg", + "staticwebassets/icons/TextBaseline/20_r.svg", + "staticwebassets/icons/TextBold/16_f.svg", + "staticwebassets/icons/TextBold/16_r.svg", + "staticwebassets/icons/TextBold/20_f.svg", + "staticwebassets/icons/TextBold/20_r.svg", + "staticwebassets/icons/TextBold/24_f.svg", + "staticwebassets/icons/TextBold/24_r.svg", + "staticwebassets/icons/TextBold/bg/16_f.svg", + "staticwebassets/icons/TextBold/bg/16_r.svg", + "staticwebassets/icons/TextBold/bg/20_f.svg", + "staticwebassets/icons/TextBold/bg/20_r.svg", + "staticwebassets/icons/TextBold/bg/24_f.svg", + "staticwebassets/icons/TextBold/bg/24_r.svg", + "staticwebassets/icons/TextBold/ca/16_f.svg", + "staticwebassets/icons/TextBold/ca/16_r.svg", + "staticwebassets/icons/TextBold/ca/20_f.svg", + "staticwebassets/icons/TextBold/ca/20_r.svg", + "staticwebassets/icons/TextBold/ca/24_f.svg", + "staticwebassets/icons/TextBold/ca/24_r.svg", + "staticwebassets/icons/TextBold/da/16_f.svg", + "staticwebassets/icons/TextBold/da/16_r.svg", + "staticwebassets/icons/TextBold/da/20_f.svg", + "staticwebassets/icons/TextBold/da/20_r.svg", + "staticwebassets/icons/TextBold/da/24_f.svg", + "staticwebassets/icons/TextBold/da/24_r.svg", + "staticwebassets/icons/TextBold/de/16_f.svg", + "staticwebassets/icons/TextBold/de/16_r.svg", + "staticwebassets/icons/TextBold/de/20_f.svg", + "staticwebassets/icons/TextBold/de/20_r.svg", + "staticwebassets/icons/TextBold/de/24_f.svg", + "staticwebassets/icons/TextBold/de/24_r.svg", + "staticwebassets/icons/TextBold/en/16_f.svg", + "staticwebassets/icons/TextBold/en/16_r.svg", + "staticwebassets/icons/TextBold/en/20_f.svg", + "staticwebassets/icons/TextBold/en/20_r.svg", + "staticwebassets/icons/TextBold/en/24_f.svg", + "staticwebassets/icons/TextBold/en/24_r.svg", + "staticwebassets/icons/TextBold/es/16_f.svg", + "staticwebassets/icons/TextBold/es/16_r.svg", + "staticwebassets/icons/TextBold/es/20_f.svg", + "staticwebassets/icons/TextBold/es/20_r.svg", + "staticwebassets/icons/TextBold/es/24_f.svg", + "staticwebassets/icons/TextBold/es/24_r.svg", + "staticwebassets/icons/TextBold/et/16_f.svg", + "staticwebassets/icons/TextBold/et/16_r.svg", + "staticwebassets/icons/TextBold/et/20_f.svg", + "staticwebassets/icons/TextBold/et/20_r.svg", + "staticwebassets/icons/TextBold/et/24_f.svg", + "staticwebassets/icons/TextBold/et/24_r.svg", + "staticwebassets/icons/TextBold/fr/16_f.svg", + "staticwebassets/icons/TextBold/fr/16_r.svg", + "staticwebassets/icons/TextBold/fr/20_f.svg", + "staticwebassets/icons/TextBold/fr/20_r.svg", + "staticwebassets/icons/TextBold/fr/24_f.svg", + "staticwebassets/icons/TextBold/fr/24_r.svg", + "staticwebassets/icons/TextBold/gl/16_f.svg", + "staticwebassets/icons/TextBold/gl/16_r.svg", + "staticwebassets/icons/TextBold/gl/20_f.svg", + "staticwebassets/icons/TextBold/gl/20_r.svg", + "staticwebassets/icons/TextBold/gl/24_f.svg", + "staticwebassets/icons/TextBold/gl/24_r.svg", + "staticwebassets/icons/TextBold/hu/16_f.svg", + "staticwebassets/icons/TextBold/hu/16_r.svg", + "staticwebassets/icons/TextBold/hu/20_f.svg", + "staticwebassets/icons/TextBold/hu/20_r.svg", + "staticwebassets/icons/TextBold/hu/24_f.svg", + "staticwebassets/icons/TextBold/hu/24_r.svg", + "staticwebassets/icons/TextBold/it/16_f.svg", + "staticwebassets/icons/TextBold/it/16_r.svg", + "staticwebassets/icons/TextBold/it/20_f.svg", + "staticwebassets/icons/TextBold/it/20_r.svg", + "staticwebassets/icons/TextBold/it/24_f.svg", + "staticwebassets/icons/TextBold/it/24_r.svg", + "staticwebassets/icons/TextBold/kk/16_f.svg", + "staticwebassets/icons/TextBold/kk/16_r.svg", + "staticwebassets/icons/TextBold/kk/20_f.svg", + "staticwebassets/icons/TextBold/kk/20_r.svg", + "staticwebassets/icons/TextBold/kk/24_f.svg", + "staticwebassets/icons/TextBold/kk/24_r.svg", + "staticwebassets/icons/TextBold/ko/16_f.svg", + "staticwebassets/icons/TextBold/ko/16_r.svg", + "staticwebassets/icons/TextBold/ko/20_f.svg", + "staticwebassets/icons/TextBold/ko/20_r.svg", + "staticwebassets/icons/TextBold/ko/24_f.svg", + "staticwebassets/icons/TextBold/ko/24_r.svg", + "staticwebassets/icons/TextBold/lt/16_f.svg", + "staticwebassets/icons/TextBold/lt/16_r.svg", + "staticwebassets/icons/TextBold/lt/20_f.svg", + "staticwebassets/icons/TextBold/lt/20_r.svg", + "staticwebassets/icons/TextBold/lt/24_f.svg", + "staticwebassets/icons/TextBold/lt/24_r.svg", + "staticwebassets/icons/TextBold/lv/16_f.svg", + "staticwebassets/icons/TextBold/lv/16_r.svg", + "staticwebassets/icons/TextBold/lv/20_f.svg", + "staticwebassets/icons/TextBold/lv/20_r.svg", + "staticwebassets/icons/TextBold/lv/24_f.svg", + "staticwebassets/icons/TextBold/lv/24_r.svg", + "staticwebassets/icons/TextBold/ms/16_f.svg", + "staticwebassets/icons/TextBold/ms/16_r.svg", + "staticwebassets/icons/TextBold/ms/20_f.svg", + "staticwebassets/icons/TextBold/ms/20_r.svg", + "staticwebassets/icons/TextBold/ms/24_f.svg", + "staticwebassets/icons/TextBold/ms/24_r.svg", + "staticwebassets/icons/TextBold/no/16_f.svg", + "staticwebassets/icons/TextBold/no/16_r.svg", + "staticwebassets/icons/TextBold/no/20_f.svg", + "staticwebassets/icons/TextBold/no/20_r.svg", + "staticwebassets/icons/TextBold/no/24_f.svg", + "staticwebassets/icons/TextBold/no/24_r.svg", + "staticwebassets/icons/TextBold/pt/16_f.svg", + "staticwebassets/icons/TextBold/pt/16_r.svg", + "staticwebassets/icons/TextBold/pt/20_f.svg", + "staticwebassets/icons/TextBold/pt/20_r.svg", + "staticwebassets/icons/TextBold/pt/24_f.svg", + "staticwebassets/icons/TextBold/pt/24_r.svg", + "staticwebassets/icons/TextBold/ru/16_f.svg", + "staticwebassets/icons/TextBold/ru/16_r.svg", + "staticwebassets/icons/TextBold/ru/20_f.svg", + "staticwebassets/icons/TextBold/ru/20_r.svg", + "staticwebassets/icons/TextBold/ru/24_f.svg", + "staticwebassets/icons/TextBold/ru/24_r.svg", + "staticwebassets/icons/TextBold/sl/16_f.svg", + "staticwebassets/icons/TextBold/sl/16_r.svg", + "staticwebassets/icons/TextBold/sl/20_f.svg", + "staticwebassets/icons/TextBold/sl/20_r.svg", + "staticwebassets/icons/TextBold/sl/24_f.svg", + "staticwebassets/icons/TextBold/sl/24_r.svg", + "staticwebassets/icons/TextBold/sr-cyrl/16_f.svg", + "staticwebassets/icons/TextBold/sr-cyrl/16_r.svg", + "staticwebassets/icons/TextBold/sr-cyrl/20_f.svg", + "staticwebassets/icons/TextBold/sr-cyrl/20_r.svg", + "staticwebassets/icons/TextBold/sr-cyrl/24_f.svg", + "staticwebassets/icons/TextBold/sr-cyrl/24_r.svg", + "staticwebassets/icons/TextBold/sr-latn/16_f.svg", + "staticwebassets/icons/TextBold/sr-latn/16_r.svg", + "staticwebassets/icons/TextBold/sr-latn/20_f.svg", + "staticwebassets/icons/TextBold/sr-latn/20_r.svg", + "staticwebassets/icons/TextBold/sr-latn/24_f.svg", + "staticwebassets/icons/TextBold/sr-latn/24_r.svg", + "staticwebassets/icons/TextBold/sv/16_f.svg", + "staticwebassets/icons/TextBold/sv/16_r.svg", + "staticwebassets/icons/TextBold/sv/20_f.svg", + "staticwebassets/icons/TextBold/sv/20_r.svg", + "staticwebassets/icons/TextBold/sv/24_f.svg", + "staticwebassets/icons/TextBold/sv/24_r.svg", + "staticwebassets/icons/TextBold/tr/16_f.svg", + "staticwebassets/icons/TextBold/tr/16_r.svg", + "staticwebassets/icons/TextBold/tr/20_f.svg", + "staticwebassets/icons/TextBold/tr/20_r.svg", + "staticwebassets/icons/TextBold/tr/24_f.svg", + "staticwebassets/icons/TextBold/tr/24_r.svg", + "staticwebassets/icons/TextBold/uk/16_f.svg", + "staticwebassets/icons/TextBold/uk/16_r.svg", + "staticwebassets/icons/TextBold/uk/20_f.svg", + "staticwebassets/icons/TextBold/uk/20_r.svg", + "staticwebassets/icons/TextBold/uk/24_f.svg", + "staticwebassets/icons/TextBold/uk/24_r.svg", + "staticwebassets/icons/TextBox/16_f.svg", + "staticwebassets/icons/TextBox/16_r.svg", + "staticwebassets/icons/TextBox/20_f.svg", + "staticwebassets/icons/TextBox/20_r.svg", + "staticwebassets/icons/TextBox/24_f.svg", + "staticwebassets/icons/TextBox/24_r.svg", + "staticwebassets/icons/TextBoxAlignBottom/20_f.svg", + "staticwebassets/icons/TextBoxAlignBottom/20_r.svg", + "staticwebassets/icons/TextBoxAlignBottom/24_f.svg", + "staticwebassets/icons/TextBoxAlignBottom/24_r.svg", + "staticwebassets/icons/TextBoxAlignBottomRotate90/20_f.svg", + "staticwebassets/icons/TextBoxAlignBottomRotate90/20_r.svg", + "staticwebassets/icons/TextBoxAlignBottomRotate90/24_f.svg", + "staticwebassets/icons/TextBoxAlignBottomRotate90/24_r.svg", + "staticwebassets/icons/TextBoxAlignCenter/20_f.svg", + "staticwebassets/icons/TextBoxAlignCenter/20_r.svg", + "staticwebassets/icons/TextBoxAlignCenter/24_f.svg", + "staticwebassets/icons/TextBoxAlignCenter/24_r.svg", + "staticwebassets/icons/TextBoxAlignMiddle/16_f.svg", + "staticwebassets/icons/TextBoxAlignMiddle/16_r.svg", + "staticwebassets/icons/TextBoxAlignMiddle/20_f.svg", + "staticwebassets/icons/TextBoxAlignMiddle/20_r.svg", + "staticwebassets/icons/TextBoxAlignMiddle/24_f.svg", + "staticwebassets/icons/TextBoxAlignMiddle/24_r.svg", + "staticwebassets/icons/TextBoxAlignMiddleRotate90/20_f.svg", + "staticwebassets/icons/TextBoxAlignMiddleRotate90/20_r.svg", + "staticwebassets/icons/TextBoxAlignMiddleRotate90/24_f.svg", + "staticwebassets/icons/TextBoxAlignMiddleRotate90/24_r.svg", + "staticwebassets/icons/TextBoxAlignTop/20_f.svg", + "staticwebassets/icons/TextBoxAlignTop/20_r.svg", + "staticwebassets/icons/TextBoxAlignTop/24_f.svg", + "staticwebassets/icons/TextBoxAlignTop/24_r.svg", + "staticwebassets/icons/TextBoxAlignTopRotate90/20_f.svg", + "staticwebassets/icons/TextBoxAlignTopRotate90/20_r.svg", + "staticwebassets/icons/TextBoxAlignTopRotate90/24_f.svg", + "staticwebassets/icons/TextBoxAlignTopRotate90/24_r.svg", + "staticwebassets/icons/TextBoxMore/20_f.svg", + "staticwebassets/icons/TextBoxMore/20_r.svg", + "staticwebassets/icons/TextBoxMore/24_f.svg", + "staticwebassets/icons/TextBoxMore/24_r.svg", + "staticwebassets/icons/TextBoxRotate90/20_f.svg", + "staticwebassets/icons/TextBoxRotate90/20_r.svg", + "staticwebassets/icons/TextBoxRotate90/24_f.svg", + "staticwebassets/icons/TextBoxRotate90/24_r.svg", + "staticwebassets/icons/TextBoxSettings/20_f.svg", + "staticwebassets/icons/TextBoxSettings/20_r.svg", + "staticwebassets/icons/TextBoxSettings/24_f.svg", + "staticwebassets/icons/TextBoxSettings/24_r.svg", + "staticwebassets/icons/TextBulletListAdd/20_f.svg", + "staticwebassets/icons/TextBulletListAdd/20_r.svg", + "staticwebassets/icons/TextBulletListAdd/24_f.svg", + "staticwebassets/icons/TextBulletListAdd/24_r.svg", + "staticwebassets/icons/TextBulletListCheckmark/20_f.svg", + "staticwebassets/icons/TextBulletListCheckmark/20_r.svg", + "staticwebassets/icons/TextBulletListDismiss/20_f.svg", + "staticwebassets/icons/TextBulletListDismiss/20_r.svg", + "staticwebassets/icons/TextBulletListLTR/16_f.svg", + "staticwebassets/icons/TextBulletListLTR/16_r.svg", + "staticwebassets/icons/TextBulletListLTR/20_f.svg", + "staticwebassets/icons/TextBulletListLTR/20_r.svg", + "staticwebassets/icons/TextBulletListLTR/24_f.svg", + "staticwebassets/icons/TextBulletListLTR/24_r.svg", + "staticwebassets/icons/TextBulletListLTR90/20_f.svg", + "staticwebassets/icons/TextBulletListLTR90/20_r.svg", + "staticwebassets/icons/TextBulletListLTR90/24_f.svg", + "staticwebassets/icons/TextBulletListLTR90/24_r.svg", + "staticwebassets/icons/TextBulletListLTRRotate270/24_f.svg", + "staticwebassets/icons/TextBulletListLTRRotate270/24_r.svg", + "staticwebassets/icons/TextBulletListLTRRotate90/20_f.svg", + "staticwebassets/icons/TextBulletListLTRRotate90/20_r.svg", + "staticwebassets/icons/TextBulletListRTL/16_f.svg", + "staticwebassets/icons/TextBulletListRTL/16_r.svg", + "staticwebassets/icons/TextBulletListRTL/20_f.svg", + "staticwebassets/icons/TextBulletListRTL/20_r.svg", + "staticwebassets/icons/TextBulletListRTL/24_f.svg", + "staticwebassets/icons/TextBulletListRTL/24_r.svg", + "staticwebassets/icons/TextBulletListRTL90/20_f.svg", + "staticwebassets/icons/TextBulletListRTL90/20_r.svg", + "staticwebassets/icons/TextBulletListRTLRotate90/20_f.svg", + "staticwebassets/icons/TextBulletListRTLRotate90/20_r.svg", + "staticwebassets/icons/TextBulletListRotate270/20_f.svg", + "staticwebassets/icons/TextBulletListRotate270/20_r.svg", + "staticwebassets/icons/TextBulletListRotate270/24_f.svg", + "staticwebassets/icons/TextBulletListRotate270/24_r.svg", + "staticwebassets/icons/TextBulletListRotate90/20_f.svg", + "staticwebassets/icons/TextBulletListRotate90/20_r.svg", + "staticwebassets/icons/TextBulletListRotate90/24_f.svg", + "staticwebassets/icons/TextBulletListRotate90/24_r.svg", + "staticwebassets/icons/TextBulletListSquare/16_f.svg", + "staticwebassets/icons/TextBulletListSquare/16_r.svg", + "staticwebassets/icons/TextBulletListSquare/20_f.svg", + "staticwebassets/icons/TextBulletListSquare/20_r.svg", + "staticwebassets/icons/TextBulletListSquare/24_f.svg", + "staticwebassets/icons/TextBulletListSquare/24_r.svg", + "staticwebassets/icons/TextBulletListSquare/32_f.svg", + "staticwebassets/icons/TextBulletListSquare/32_r.svg", + "staticwebassets/icons/TextBulletListSquareClock/20_f.svg", + "staticwebassets/icons/TextBulletListSquareClock/20_r.svg", + "staticwebassets/icons/TextBulletListSquareEdit/20_f.svg", + "staticwebassets/icons/TextBulletListSquareEdit/20_r.svg", + "staticwebassets/icons/TextBulletListSquareEdit/24_f.svg", + "staticwebassets/icons/TextBulletListSquareEdit/24_r.svg", + "staticwebassets/icons/TextBulletListSquarePerson/20_f.svg", + "staticwebassets/icons/TextBulletListSquarePerson/20_r.svg", + "staticwebassets/icons/TextBulletListSquarePerson/32_f.svg", + "staticwebassets/icons/TextBulletListSquarePerson/32_r.svg", + "staticwebassets/icons/TextBulletListSquareSearch/20_f.svg", + "staticwebassets/icons/TextBulletListSquareSearch/20_r.svg", + "staticwebassets/icons/TextBulletListSquareSettings/20_f.svg", + "staticwebassets/icons/TextBulletListSquareSettings/20_r.svg", + "staticwebassets/icons/TextBulletListSquareShield/20_f.svg", + "staticwebassets/icons/TextBulletListSquareShield/20_r.svg", + "staticwebassets/icons/TextBulletListSquareSparkle/16_f.svg", + "staticwebassets/icons/TextBulletListSquareSparkle/16_r.svg", + "staticwebassets/icons/TextBulletListSquareSparkle/20_f.svg", + "staticwebassets/icons/TextBulletListSquareSparkle/20_r.svg", + "staticwebassets/icons/TextBulletListSquareSparkle/24_f.svg", + "staticwebassets/icons/TextBulletListSquareSparkle/24_r.svg", + "staticwebassets/icons/TextBulletListSquareToolbox/20_f.svg", + "staticwebassets/icons/TextBulletListSquareToolbox/20_r.svg", + "staticwebassets/icons/TextBulletListSquareWarning/16_f.svg", + "staticwebassets/icons/TextBulletListSquareWarning/16_r.svg", + "staticwebassets/icons/TextBulletListSquareWarning/20_f.svg", + "staticwebassets/icons/TextBulletListSquareWarning/20_r.svg", + "staticwebassets/icons/TextBulletListSquareWarning/24_f.svg", + "staticwebassets/icons/TextBulletListSquareWarning/24_r.svg", + "staticwebassets/icons/TextBulletListTree/16_f.svg", + "staticwebassets/icons/TextBulletListTree/16_r.svg", + "staticwebassets/icons/TextBulletListTree/20_f.svg", + "staticwebassets/icons/TextBulletListTree/20_r.svg", + "staticwebassets/icons/TextBulletListTree/24_f.svg", + "staticwebassets/icons/TextBulletListTree/24_r.svg", + "staticwebassets/icons/TextCaseLowercase/16_f.svg", + "staticwebassets/icons/TextCaseLowercase/16_r.svg", + "staticwebassets/icons/TextCaseLowercase/20_f.svg", + "staticwebassets/icons/TextCaseLowercase/20_r.svg", + "staticwebassets/icons/TextCaseLowercase/24_f.svg", + "staticwebassets/icons/TextCaseLowercase/24_r.svg", + "staticwebassets/icons/TextCaseTitle/16_f.svg", + "staticwebassets/icons/TextCaseTitle/16_r.svg", + "staticwebassets/icons/TextCaseTitle/20_f.svg", + "staticwebassets/icons/TextCaseTitle/20_r.svg", + "staticwebassets/icons/TextCaseTitle/24_f.svg", + "staticwebassets/icons/TextCaseTitle/24_r.svg", + "staticwebassets/icons/TextCaseUppercase/16_f.svg", + "staticwebassets/icons/TextCaseUppercase/16_r.svg", + "staticwebassets/icons/TextCaseUppercase/20_f.svg", + "staticwebassets/icons/TextCaseUppercase/20_r.svg", + "staticwebassets/icons/TextCaseUppercase/24_f.svg", + "staticwebassets/icons/TextCaseUppercase/24_r.svg", + "staticwebassets/icons/TextChangeCase/16_f.svg", + "staticwebassets/icons/TextChangeCase/16_r.svg", + "staticwebassets/icons/TextChangeCase/20_f.svg", + "staticwebassets/icons/TextChangeCase/20_r.svg", + "staticwebassets/icons/TextChangeCase/24_f.svg", + "staticwebassets/icons/TextChangeCase/24_r.svg", + "staticwebassets/icons/TextClearFormatting/16_f.svg", + "staticwebassets/icons/TextClearFormatting/16_r.svg", + "staticwebassets/icons/TextClearFormatting/20_f.svg", + "staticwebassets/icons/TextClearFormatting/20_r.svg", + "staticwebassets/icons/TextClearFormatting/24_f.svg", + "staticwebassets/icons/TextClearFormatting/24_r.svg", + "staticwebassets/icons/TextClearFormatting/en/16_f.svg", + "staticwebassets/icons/TextClearFormatting/en/16_r.svg", + "staticwebassets/icons/TextClearFormatting/en/20_f.svg", + "staticwebassets/icons/TextClearFormatting/en/20_r.svg", + "staticwebassets/icons/TextClearFormatting/en/24_f.svg", + "staticwebassets/icons/TextClearFormatting/en/24_r.svg", + "staticwebassets/icons/TextClearFormatting/ko/24_f.svg", + "staticwebassets/icons/TextClearFormatting/ko/24_r.svg", + "staticwebassets/icons/TextCollapse/20_f.svg", + "staticwebassets/icons/TextCollapse/20_r.svg", + "staticwebassets/icons/TextCollapse/24_f.svg", + "staticwebassets/icons/TextCollapse/24_r.svg", + "staticwebassets/icons/TextColor/16_f.svg", + "staticwebassets/icons/TextColor/16_r.svg", + "staticwebassets/icons/TextColor/20_f.svg", + "staticwebassets/icons/TextColor/20_r.svg", + "staticwebassets/icons/TextColor/24_f.svg", + "staticwebassets/icons/TextColor/24_r.svg", + "staticwebassets/icons/TextColor/en/16_f.svg", + "staticwebassets/icons/TextColor/en/16_r.svg", + "staticwebassets/icons/TextColor/en/20_f.svg", + "staticwebassets/icons/TextColor/en/20_r.svg", + "staticwebassets/icons/TextColor/en/24_f.svg", + "staticwebassets/icons/TextColor/en/24_r.svg", + "staticwebassets/icons/TextColor/ko/20_f.svg", + "staticwebassets/icons/TextColor/ko/20_r.svg", + "staticwebassets/icons/TextColor/ko/24_f.svg", + "staticwebassets/icons/TextColor/ko/24_r.svg", + "staticwebassets/icons/TextColorAccent/16_f.svg", + "staticwebassets/icons/TextColorAccent/20_f.svg", + "staticwebassets/icons/TextColorAccent/24_f.svg", + "staticwebassets/icons/TextColumnOne/20_f.svg", + "staticwebassets/icons/TextColumnOne/20_r.svg", + "staticwebassets/icons/TextColumnOne/24_f.svg", + "staticwebassets/icons/TextColumnOne/24_r.svg", + "staticwebassets/icons/TextColumnOneNarrow/20_f.svg", + "staticwebassets/icons/TextColumnOneNarrow/20_r.svg", + "staticwebassets/icons/TextColumnOneNarrow/24_f.svg", + "staticwebassets/icons/TextColumnOneNarrow/24_r.svg", + "staticwebassets/icons/TextColumnOneSemiNarrow/20_f.svg", + "staticwebassets/icons/TextColumnOneSemiNarrow/20_r.svg", + "staticwebassets/icons/TextColumnOneSemiNarrow/24_f.svg", + "staticwebassets/icons/TextColumnOneSemiNarrow/24_r.svg", + "staticwebassets/icons/TextColumnOneWide/20_f.svg", + "staticwebassets/icons/TextColumnOneWide/20_r.svg", + "staticwebassets/icons/TextColumnOneWide/24_f.svg", + "staticwebassets/icons/TextColumnOneWide/24_r.svg", + "staticwebassets/icons/TextColumnOneWideLightning/20_f.svg", + "staticwebassets/icons/TextColumnOneWideLightning/20_r.svg", + "staticwebassets/icons/TextColumnOneWideLightning/24_f.svg", + "staticwebassets/icons/TextColumnOneWideLightning/24_r.svg", + "staticwebassets/icons/TextColumnThree/20_f.svg", + "staticwebassets/icons/TextColumnThree/20_r.svg", + "staticwebassets/icons/TextColumnThree/24_f.svg", + "staticwebassets/icons/TextColumnThree/24_r.svg", + "staticwebassets/icons/TextColumnTwo/20_f.svg", + "staticwebassets/icons/TextColumnTwo/20_r.svg", + "staticwebassets/icons/TextColumnTwo/24_f.svg", + "staticwebassets/icons/TextColumnTwo/24_r.svg", + "staticwebassets/icons/TextColumnTwoLeft/20_f.svg", + "staticwebassets/icons/TextColumnTwoLeft/20_r.svg", + "staticwebassets/icons/TextColumnTwoLeft/24_f.svg", + "staticwebassets/icons/TextColumnTwoLeft/24_r.svg", + "staticwebassets/icons/TextColumnTwoRight/20_f.svg", + "staticwebassets/icons/TextColumnTwoRight/20_r.svg", + "staticwebassets/icons/TextColumnTwoRight/24_f.svg", + "staticwebassets/icons/TextColumnTwoRight/24_r.svg", + "staticwebassets/icons/TextContinuous/20_f.svg", + "staticwebassets/icons/TextContinuous/20_r.svg", + "staticwebassets/icons/TextContinuous/24_f.svg", + "staticwebassets/icons/TextContinuous/24_r.svg", + "staticwebassets/icons/TextDensity/16_f.svg", + "staticwebassets/icons/TextDensity/16_r.svg", + "staticwebassets/icons/TextDensity/20_f.svg", + "staticwebassets/icons/TextDensity/20_r.svg", + "staticwebassets/icons/TextDensity/24_f.svg", + "staticwebassets/icons/TextDensity/24_r.svg", + "staticwebassets/icons/TextDensity/28_f.svg", + "staticwebassets/icons/TextDensity/28_r.svg", + "staticwebassets/icons/TextDescription/20_f.svg", + "staticwebassets/icons/TextDescription/20_r.svg", + "staticwebassets/icons/TextDescription/24_f.svg", + "staticwebassets/icons/TextDescription/24_r.svg", + "staticwebassets/icons/TextDescriptionLTR/20_f.svg", + "staticwebassets/icons/TextDescriptionLTR/20_r.svg", + "staticwebassets/icons/TextDescriptionLTR/24_f.svg", + "staticwebassets/icons/TextDescriptionLTR/24_r.svg", + "staticwebassets/icons/TextDescriptionRTL/20_f.svg", + "staticwebassets/icons/TextDescriptionRTL/20_r.svg", + "staticwebassets/icons/TextDescriptionRTL/24_f.svg", + "staticwebassets/icons/TextDescriptionRTL/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/en/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/en/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/en/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/en/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/ko/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/ko/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/ko/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLTR/ko/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/en/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/en/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/en/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/en/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/ko/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/ko/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/ko/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalLeft/ko/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/en/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/en/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/en/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/en/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/ko/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/ko/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/ko/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRTL/ko/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/en/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/en/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/en/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/en/24_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/ko/20_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/ko/20_r.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/ko/24_f.svg", + "staticwebassets/icons/TextDirectionHorizontalRight/ko/24_r.svg", + "staticwebassets/icons/TextDirectionRotate270Right/20_f.svg", + "staticwebassets/icons/TextDirectionRotate270Right/20_r.svg", + "staticwebassets/icons/TextDirectionRotate270Right/24_f.svg", + "staticwebassets/icons/TextDirectionRotate270Right/24_r.svg", + "staticwebassets/icons/TextDirectionRotate270Right/en/20_f.svg", + "staticwebassets/icons/TextDirectionRotate270Right/en/20_r.svg", + "staticwebassets/icons/TextDirectionRotate270Right/en/24_f.svg", + "staticwebassets/icons/TextDirectionRotate270Right/en/24_r.svg", + "staticwebassets/icons/TextDirectionRotate270Right/ko/20_f.svg", + "staticwebassets/icons/TextDirectionRotate270Right/ko/20_r.svg", + "staticwebassets/icons/TextDirectionRotate270Right/ko/24_f.svg", + "staticwebassets/icons/TextDirectionRotate270Right/ko/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/en/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/en/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/en/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/en/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/ko/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/ko/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/ko/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90LTR/ko/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90Left/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90Left/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90Left/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90Left/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90Left/en/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90Left/en/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90Left/en/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90Left/en/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/en/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/en/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/en/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90RTL/en/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90Right/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90Right/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90Right/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90Right/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90Right/en/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90Right/en/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90Right/en/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90Right/en/24_r.svg", + "staticwebassets/icons/TextDirectionRotate90Right/ko/20_f.svg", + "staticwebassets/icons/TextDirectionRotate90Right/ko/20_r.svg", + "staticwebassets/icons/TextDirectionRotate90Right/ko/24_f.svg", + "staticwebassets/icons/TextDirectionRotate90Right/ko/24_r.svg", + "staticwebassets/icons/TextDirectionVertical/20_f.svg", + "staticwebassets/icons/TextDirectionVertical/20_r.svg", + "staticwebassets/icons/TextDirectionVertical/24_f.svg", + "staticwebassets/icons/TextDirectionVertical/24_r.svg", + "staticwebassets/icons/TextDirectionVertical/en/20_f.svg", + "staticwebassets/icons/TextDirectionVertical/en/20_r.svg", + "staticwebassets/icons/TextDirectionVertical/en/24_f.svg", + "staticwebassets/icons/TextDirectionVertical/en/24_r.svg", + "staticwebassets/icons/TextDirectionVertical/ko/20_f.svg", + "staticwebassets/icons/TextDirectionVertical/ko/20_r.svg", + "staticwebassets/icons/TextDirectionVertical/ko/24_f.svg", + "staticwebassets/icons/TextDirectionVertical/ko/24_r.svg", + "staticwebassets/icons/TextEditStyle/20_f.svg", + "staticwebassets/icons/TextEditStyle/20_r.svg", + "staticwebassets/icons/TextEditStyle/24_f.svg", + "staticwebassets/icons/TextEditStyle/24_r.svg", + "staticwebassets/icons/TextEditStyle/en/20_f.svg", + "staticwebassets/icons/TextEditStyle/en/20_r.svg", + "staticwebassets/icons/TextEditStyle/en/24_f.svg", + "staticwebassets/icons/TextEditStyle/en/24_r.svg", + "staticwebassets/icons/TextEditStyle/ko/20_f.svg", + "staticwebassets/icons/TextEditStyle/ko/20_r.svg", + "staticwebassets/icons/TextEditStyle/ko/24_f.svg", + "staticwebassets/icons/TextEditStyle/ko/24_r.svg", + "staticwebassets/icons/TextEffects/20_f.svg", + "staticwebassets/icons/TextEffects/20_r.svg", + "staticwebassets/icons/TextEffects/24_f.svg", + "staticwebassets/icons/TextEffects/24_r.svg", + "staticwebassets/icons/TextEffects/en/20_f.svg", + "staticwebassets/icons/TextEffects/en/20_r.svg", + "staticwebassets/icons/TextEffects/en/24_f.svg", + "staticwebassets/icons/TextEffects/en/24_r.svg", + "staticwebassets/icons/TextEffects/ko/20_f.svg", + "staticwebassets/icons/TextEffects/ko/20_r.svg", + "staticwebassets/icons/TextEffects/ko/24_f.svg", + "staticwebassets/icons/TextEffects/ko/24_r.svg", + "staticwebassets/icons/TextExpand/16_f.svg", + "staticwebassets/icons/TextExpand/16_r.svg", + "staticwebassets/icons/TextExpand/20_f.svg", + "staticwebassets/icons/TextExpand/20_r.svg", + "staticwebassets/icons/TextExpand/24_f.svg", + "staticwebassets/icons/TextExpand/24_r.svg", + "staticwebassets/icons/TextField/16_f.svg", + "staticwebassets/icons/TextField/16_r.svg", + "staticwebassets/icons/TextField/20_f.svg", + "staticwebassets/icons/TextField/20_r.svg", + "staticwebassets/icons/TextField/24_f.svg", + "staticwebassets/icons/TextField/24_r.svg", + "staticwebassets/icons/TextFirstLine/20_f.svg", + "staticwebassets/icons/TextFirstLine/20_r.svg", + "staticwebassets/icons/TextFirstLine/24_f.svg", + "staticwebassets/icons/TextFirstLine/24_r.svg", + "staticwebassets/icons/TextFirstLineTempLTR/20_f.svg", + "staticwebassets/icons/TextFirstLineTempLTR/20_r.svg", + "staticwebassets/icons/TextFirstLineTempLTR/24_f.svg", + "staticwebassets/icons/TextFirstLineTempLTR/24_r.svg", + "staticwebassets/icons/TextFirstLineTempRTL/20_f.svg", + "staticwebassets/icons/TextFirstLineTempRTL/20_r.svg", + "staticwebassets/icons/TextFirstLineTempRTL/24_f.svg", + "staticwebassets/icons/TextFirstLineTempRTL/24_r.svg", + "staticwebassets/icons/TextFont/16_f.svg", + "staticwebassets/icons/TextFont/16_r.svg", + "staticwebassets/icons/TextFont/20_f.svg", + "staticwebassets/icons/TextFont/20_r.svg", + "staticwebassets/icons/TextFont/24_f.svg", + "staticwebassets/icons/TextFont/24_r.svg", + "staticwebassets/icons/TextFontInfo/16_f.svg", + "staticwebassets/icons/TextFontInfo/16_r.svg", + "staticwebassets/icons/TextFontInfo/20_f.svg", + "staticwebassets/icons/TextFontInfo/20_r.svg", + "staticwebassets/icons/TextFontInfo/24_f.svg", + "staticwebassets/icons/TextFontInfo/24_r.svg", + "staticwebassets/icons/TextFontSize/16_f.svg", + "staticwebassets/icons/TextFontSize/16_r.svg", + "staticwebassets/icons/TextFontSize/20_f.svg", + "staticwebassets/icons/TextFontSize/20_r.svg", + "staticwebassets/icons/TextFontSize/24_f.svg", + "staticwebassets/icons/TextFontSize/24_r.svg", + "staticwebassets/icons/TextFootnote/20_f.svg", + "staticwebassets/icons/TextFootnote/20_r.svg", + "staticwebassets/icons/TextFootnote/24_f.svg", + "staticwebassets/icons/TextFootnote/24_r.svg", + "staticwebassets/icons/TextFootnote/en/20_f.svg", + "staticwebassets/icons/TextFootnote/en/20_r.svg", + "staticwebassets/icons/TextFootnote/en/24_f.svg", + "staticwebassets/icons/TextFootnote/en/24_r.svg", + "staticwebassets/icons/TextFootnote/ko/20_f.svg", + "staticwebassets/icons/TextFootnote/ko/20_r.svg", + "staticwebassets/icons/TextFootnote/ko/24_f.svg", + "staticwebassets/icons/TextFootnote/ko/24_r.svg", + "staticwebassets/icons/TextGrammarArrowLeft/20_f.svg", + "staticwebassets/icons/TextGrammarArrowLeft/20_r.svg", + "staticwebassets/icons/TextGrammarArrowLeft/24_f.svg", + "staticwebassets/icons/TextGrammarArrowLeft/24_r.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempLTR/20_f.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempLTR/20_r.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempLTR/24_f.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempLTR/24_r.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempRTL/20_f.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempRTL/20_r.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempRTL/24_f.svg", + "staticwebassets/icons/TextGrammarArrowLeftTempRTL/24_r.svg", + "staticwebassets/icons/TextGrammarArrowRight/20_f.svg", + "staticwebassets/icons/TextGrammarArrowRight/20_r.svg", + "staticwebassets/icons/TextGrammarArrowRight/24_f.svg", + "staticwebassets/icons/TextGrammarArrowRight/24_r.svg", + "staticwebassets/icons/TextGrammarArrowRightTempLTR/20_f.svg", + "staticwebassets/icons/TextGrammarArrowRightTempLTR/20_r.svg", + "staticwebassets/icons/TextGrammarArrowRightTempLTR/24_f.svg", + "staticwebassets/icons/TextGrammarArrowRightTempLTR/24_r.svg", + "staticwebassets/icons/TextGrammarArrowRightTempRTL/20_f.svg", + "staticwebassets/icons/TextGrammarArrowRightTempRTL/20_r.svg", + "staticwebassets/icons/TextGrammarArrowRightTempRTL/24_f.svg", + "staticwebassets/icons/TextGrammarArrowRightTempRTL/24_r.svg", + "staticwebassets/icons/TextGrammarCheckmark/20_f.svg", + "staticwebassets/icons/TextGrammarCheckmark/20_r.svg", + "staticwebassets/icons/TextGrammarCheckmark/24_f.svg", + "staticwebassets/icons/TextGrammarCheckmark/24_r.svg", + "staticwebassets/icons/TextGrammarDismiss/20_f.svg", + "staticwebassets/icons/TextGrammarDismiss/20_r.svg", + "staticwebassets/icons/TextGrammarDismiss/24_f.svg", + "staticwebassets/icons/TextGrammarDismiss/24_r.svg", + "staticwebassets/icons/TextGrammarError/20_f.svg", + "staticwebassets/icons/TextGrammarError/20_r.svg", + "staticwebassets/icons/TextGrammarSettings/20_f.svg", + "staticwebassets/icons/TextGrammarSettings/20_r.svg", + "staticwebassets/icons/TextGrammarSettings/24_f.svg", + "staticwebassets/icons/TextGrammarSettings/24_r.svg", + "staticwebassets/icons/TextGrammarWand/16_f.svg", + "staticwebassets/icons/TextGrammarWand/16_r.svg", + "staticwebassets/icons/TextGrammarWand/20_f.svg", + "staticwebassets/icons/TextGrammarWand/20_r.svg", + "staticwebassets/icons/TextGrammarWand/24_f.svg", + "staticwebassets/icons/TextGrammarWand/24_r.svg", + "staticwebassets/icons/TextHanging/20_f.svg", + "staticwebassets/icons/TextHanging/20_r.svg", + "staticwebassets/icons/TextHanging/24_f.svg", + "staticwebassets/icons/TextHanging/24_r.svg", + "staticwebassets/icons/TextHangingTempLTR/20_f.svg", + "staticwebassets/icons/TextHangingTempLTR/20_r.svg", + "staticwebassets/icons/TextHangingTempLTR/24_f.svg", + "staticwebassets/icons/TextHangingTempLTR/24_r.svg", + "staticwebassets/icons/TextHangingTempRTL/20_f.svg", + "staticwebassets/icons/TextHangingTempRTL/20_r.svg", + "staticwebassets/icons/TextHangingTempRTL/24_f.svg", + "staticwebassets/icons/TextHangingTempRTL/24_r.svg", + "staticwebassets/icons/TextHeader1/20_f.svg", + "staticwebassets/icons/TextHeader1/20_r.svg", + "staticwebassets/icons/TextHeader1/24_f.svg", + "staticwebassets/icons/TextHeader1/24_r.svg", + "staticwebassets/icons/TextHeader2/20_f.svg", + "staticwebassets/icons/TextHeader2/20_r.svg", + "staticwebassets/icons/TextHeader2/24_f.svg", + "staticwebassets/icons/TextHeader2/24_r.svg", + "staticwebassets/icons/TextHeader3/20_f.svg", + "staticwebassets/icons/TextHeader3/20_r.svg", + "staticwebassets/icons/TextHeader3/24_f.svg", + "staticwebassets/icons/TextHeader3/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseLTR/16_f.svg", + "staticwebassets/icons/TextIndentDecreaseLTR/16_r.svg", + "staticwebassets/icons/TextIndentDecreaseLTR/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseLTR/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseLTR/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseLTR/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseLTR90/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseLTR90/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseLTR90/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseLTR90/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseLTRRotate270/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseLTRRotate270/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseLTRRotate270/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseLTRRotate270/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseRTL/16_f.svg", + "staticwebassets/icons/TextIndentDecreaseRTL/16_r.svg", + "staticwebassets/icons/TextIndentDecreaseRTL/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseRTL/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseRTL/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseRTL/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseRTL90/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseRTL90/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseRTL90/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseRTL90/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseRTLRotate270/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseRTLRotate270/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseRTLRotate270/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseRTLRotate270/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseRotate270/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseRotate270/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseRotate270/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseRotate270/24_r.svg", + "staticwebassets/icons/TextIndentDecreaseRotate90/20_f.svg", + "staticwebassets/icons/TextIndentDecreaseRotate90/20_r.svg", + "staticwebassets/icons/TextIndentDecreaseRotate90/24_f.svg", + "staticwebassets/icons/TextIndentDecreaseRotate90/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseLTR/16_f.svg", + "staticwebassets/icons/TextIndentIncreaseLTR/16_r.svg", + "staticwebassets/icons/TextIndentIncreaseLTR/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseLTR/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseLTR/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseLTR/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseLTR90/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseLTR90/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseLTR90/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseLTR90/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseLTRRotate270/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseLTRRotate270/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseLTRRotate270/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseLTRRotate270/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseRTL/16_f.svg", + "staticwebassets/icons/TextIndentIncreaseRTL/16_r.svg", + "staticwebassets/icons/TextIndentIncreaseRTL/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseRTL/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseRTL/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseRTL/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseRTL90/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseRTL90/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseRTL90/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseRTL90/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseRTLRotate270/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseRTLRotate270/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseRTLRotate270/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseRTLRotate270/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseRotate270/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseRotate270/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseRotate270/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseRotate270/24_r.svg", + "staticwebassets/icons/TextIndentIncreaseRotate90/20_f.svg", + "staticwebassets/icons/TextIndentIncreaseRotate90/20_r.svg", + "staticwebassets/icons/TextIndentIncreaseRotate90/24_f.svg", + "staticwebassets/icons/TextIndentIncreaseRotate90/24_r.svg", + "staticwebassets/icons/TextItalic/16_f.svg", + "staticwebassets/icons/TextItalic/16_r.svg", + "staticwebassets/icons/TextItalic/20_f.svg", + "staticwebassets/icons/TextItalic/20_r.svg", + "staticwebassets/icons/TextItalic/24_f.svg", + "staticwebassets/icons/TextItalic/24_r.svg", + "staticwebassets/icons/TextItalic/bg/16_f.svg", + "staticwebassets/icons/TextItalic/bg/16_r.svg", + "staticwebassets/icons/TextItalic/bg/20_f.svg", + "staticwebassets/icons/TextItalic/bg/20_r.svg", + "staticwebassets/icons/TextItalic/bg/24_f.svg", + "staticwebassets/icons/TextItalic/bg/24_r.svg", + "staticwebassets/icons/TextItalic/ca/16_f.svg", + "staticwebassets/icons/TextItalic/ca/16_r.svg", + "staticwebassets/icons/TextItalic/ca/20_f.svg", + "staticwebassets/icons/TextItalic/ca/20_r.svg", + "staticwebassets/icons/TextItalic/ca/24_f.svg", + "staticwebassets/icons/TextItalic/ca/24_r.svg", + "staticwebassets/icons/TextItalic/da/16_f.svg", + "staticwebassets/icons/TextItalic/da/16_r.svg", + "staticwebassets/icons/TextItalic/da/20_f.svg", + "staticwebassets/icons/TextItalic/da/20_r.svg", + "staticwebassets/icons/TextItalic/da/24_f.svg", + "staticwebassets/icons/TextItalic/da/24_r.svg", + "staticwebassets/icons/TextItalic/de/16_f.svg", + "staticwebassets/icons/TextItalic/de/16_r.svg", + "staticwebassets/icons/TextItalic/de/20_f.svg", + "staticwebassets/icons/TextItalic/de/20_r.svg", + "staticwebassets/icons/TextItalic/de/24_f.svg", + "staticwebassets/icons/TextItalic/de/24_r.svg", + "staticwebassets/icons/TextItalic/en/16_f.svg", + "staticwebassets/icons/TextItalic/en/16_r.svg", + "staticwebassets/icons/TextItalic/en/20_f.svg", + "staticwebassets/icons/TextItalic/en/20_r.svg", + "staticwebassets/icons/TextItalic/en/24_f.svg", + "staticwebassets/icons/TextItalic/en/24_r.svg", + "staticwebassets/icons/TextItalic/es/16_f.svg", + "staticwebassets/icons/TextItalic/es/16_r.svg", + "staticwebassets/icons/TextItalic/es/20_f.svg", + "staticwebassets/icons/TextItalic/es/20_r.svg", + "staticwebassets/icons/TextItalic/es/24_f.svg", + "staticwebassets/icons/TextItalic/es/24_r.svg", + "staticwebassets/icons/TextItalic/et/16_f.svg", + "staticwebassets/icons/TextItalic/et/16_r.svg", + "staticwebassets/icons/TextItalic/et/20_f.svg", + "staticwebassets/icons/TextItalic/et/20_r.svg", + "staticwebassets/icons/TextItalic/et/24_f.svg", + "staticwebassets/icons/TextItalic/et/24_r.svg", + "staticwebassets/icons/TextItalic/eu/16_f.svg", + "staticwebassets/icons/TextItalic/eu/16_r.svg", + "staticwebassets/icons/TextItalic/eu/20_f.svg", + "staticwebassets/icons/TextItalic/eu/20_r.svg", + "staticwebassets/icons/TextItalic/eu/24_f.svg", + "staticwebassets/icons/TextItalic/eu/24_r.svg", + "staticwebassets/icons/TextItalic/gl/16_f.svg", + "staticwebassets/icons/TextItalic/gl/16_r.svg", + "staticwebassets/icons/TextItalic/gl/20_f.svg", + "staticwebassets/icons/TextItalic/gl/20_r.svg", + "staticwebassets/icons/TextItalic/gl/24_f.svg", + "staticwebassets/icons/TextItalic/gl/24_r.svg", + "staticwebassets/icons/TextItalic/hu/16_f.svg", + "staticwebassets/icons/TextItalic/hu/16_r.svg", + "staticwebassets/icons/TextItalic/hu/20_f.svg", + "staticwebassets/icons/TextItalic/hu/20_r.svg", + "staticwebassets/icons/TextItalic/hu/24_f.svg", + "staticwebassets/icons/TextItalic/hu/24_r.svg", + "staticwebassets/icons/TextItalic/it/16_f.svg", + "staticwebassets/icons/TextItalic/it/16_r.svg", + "staticwebassets/icons/TextItalic/it/20_f.svg", + "staticwebassets/icons/TextItalic/it/20_r.svg", + "staticwebassets/icons/TextItalic/it/24_f.svg", + "staticwebassets/icons/TextItalic/it/24_r.svg", + "staticwebassets/icons/TextItalic/kk/16_f.svg", + "staticwebassets/icons/TextItalic/kk/16_r.svg", + "staticwebassets/icons/TextItalic/kk/20_f.svg", + "staticwebassets/icons/TextItalic/kk/20_r.svg", + "staticwebassets/icons/TextItalic/kk/24_f.svg", + "staticwebassets/icons/TextItalic/kk/24_r.svg", + "staticwebassets/icons/TextItalic/ko/16_f.svg", + "staticwebassets/icons/TextItalic/ko/16_r.svg", + "staticwebassets/icons/TextItalic/ko/20_f.svg", + "staticwebassets/icons/TextItalic/ko/20_r.svg", + "staticwebassets/icons/TextItalic/ko/24_f.svg", + "staticwebassets/icons/TextItalic/ko/24_r.svg", + "staticwebassets/icons/TextItalic/lt/16_f.svg", + "staticwebassets/icons/TextItalic/lt/16_r.svg", + "staticwebassets/icons/TextItalic/lt/20_f.svg", + "staticwebassets/icons/TextItalic/lt/20_r.svg", + "staticwebassets/icons/TextItalic/lt/24_f.svg", + "staticwebassets/icons/TextItalic/lt/24_r.svg", + "staticwebassets/icons/TextItalic/lv/16_f.svg", + "staticwebassets/icons/TextItalic/lv/16_r.svg", + "staticwebassets/icons/TextItalic/lv/20_f.svg", + "staticwebassets/icons/TextItalic/lv/20_r.svg", + "staticwebassets/icons/TextItalic/lv/24_f.svg", + "staticwebassets/icons/TextItalic/lv/24_r.svg", + "staticwebassets/icons/TextItalic/no/16_f.svg", + "staticwebassets/icons/TextItalic/no/16_r.svg", + "staticwebassets/icons/TextItalic/no/20_f.svg", + "staticwebassets/icons/TextItalic/no/20_r.svg", + "staticwebassets/icons/TextItalic/no/24_f.svg", + "staticwebassets/icons/TextItalic/no/24_r.svg", + "staticwebassets/icons/TextItalic/ru/16_f.svg", + "staticwebassets/icons/TextItalic/ru/16_r.svg", + "staticwebassets/icons/TextItalic/ru/20_f.svg", + "staticwebassets/icons/TextItalic/ru/20_r.svg", + "staticwebassets/icons/TextItalic/ru/24_f.svg", + "staticwebassets/icons/TextItalic/ru/24_r.svg", + "staticwebassets/icons/TextItalic/sl/16_f.svg", + "staticwebassets/icons/TextItalic/sl/16_r.svg", + "staticwebassets/icons/TextItalic/sl/20_f.svg", + "staticwebassets/icons/TextItalic/sl/20_r.svg", + "staticwebassets/icons/TextItalic/sl/24_f.svg", + "staticwebassets/icons/TextItalic/sl/24_r.svg", + "staticwebassets/icons/TextItalic/sr/16_f.svg", + "staticwebassets/icons/TextItalic/sr/16_r.svg", + "staticwebassets/icons/TextItalic/sr/20_f.svg", + "staticwebassets/icons/TextItalic/sr/20_r.svg", + "staticwebassets/icons/TextItalic/sr/24_f.svg", + "staticwebassets/icons/TextItalic/sr/24_r.svg", + "staticwebassets/icons/TextItalic/sv/16_f.svg", + "staticwebassets/icons/TextItalic/sv/16_r.svg", + "staticwebassets/icons/TextItalic/sv/20_f.svg", + "staticwebassets/icons/TextItalic/sv/20_r.svg", + "staticwebassets/icons/TextItalic/sv/24_f.svg", + "staticwebassets/icons/TextItalic/sv/24_r.svg", + "staticwebassets/icons/TextItalic/tr/16_f.svg", + "staticwebassets/icons/TextItalic/tr/16_r.svg", + "staticwebassets/icons/TextItalic/tr/20_f.svg", + "staticwebassets/icons/TextItalic/tr/20_r.svg", + "staticwebassets/icons/TextItalic/tr/24_f.svg", + "staticwebassets/icons/TextItalic/tr/24_r.svg", + "staticwebassets/icons/TextItalic/uk/16_f.svg", + "staticwebassets/icons/TextItalic/uk/16_r.svg", + "staticwebassets/icons/TextItalic/uk/20_f.svg", + "staticwebassets/icons/TextItalic/uk/20_r.svg", + "staticwebassets/icons/TextItalic/uk/24_f.svg", + "staticwebassets/icons/TextItalic/uk/24_r.svg", + "staticwebassets/icons/TextLineSpacing/20_f.svg", + "staticwebassets/icons/TextLineSpacing/20_r.svg", + "staticwebassets/icons/TextLineSpacing/24_f.svg", + "staticwebassets/icons/TextLineSpacing/24_r.svg", + "staticwebassets/icons/TextMore/20_f.svg", + "staticwebassets/icons/TextMore/20_r.svg", + "staticwebassets/icons/TextMore/24_f.svg", + "staticwebassets/icons/TextMore/24_r.svg", + "staticwebassets/icons/TextMore/en/20_f.svg", + "staticwebassets/icons/TextMore/en/20_r.svg", + "staticwebassets/icons/TextMore/en/24_f.svg", + "staticwebassets/icons/TextMore/en/24_r.svg", + "staticwebassets/icons/TextMore/ko/20_f.svg", + "staticwebassets/icons/TextMore/ko/20_r.svg", + "staticwebassets/icons/TextMore/ko/24_f.svg", + "staticwebassets/icons/TextMore/ko/24_r.svg", + "staticwebassets/icons/TextNumberFormat/20_f.svg", + "staticwebassets/icons/TextNumberFormat/20_r.svg", + "staticwebassets/icons/TextNumberFormat/24_f.svg", + "staticwebassets/icons/TextNumberFormat/24_r.svg", + "staticwebassets/icons/TextNumberFormat/en/20_f.svg", + "staticwebassets/icons/TextNumberFormat/en/20_r.svg", + "staticwebassets/icons/TextNumberFormat/en/24_f.svg", + "staticwebassets/icons/TextNumberFormat/en/24_r.svg", + "staticwebassets/icons/TextNumberFormat/ko/20_f.svg", + "staticwebassets/icons/TextNumberFormat/ko/20_r.svg", + "staticwebassets/icons/TextNumberFormat/ko/24_f.svg", + "staticwebassets/icons/TextNumberFormat/ko/24_r.svg", + "staticwebassets/icons/TextNumberListLTR/16_f.svg", + "staticwebassets/icons/TextNumberListLTR/16_r.svg", + "staticwebassets/icons/TextNumberListLTR/20_f.svg", + "staticwebassets/icons/TextNumberListLTR/20_r.svg", + "staticwebassets/icons/TextNumberListLTR/24_f.svg", + "staticwebassets/icons/TextNumberListLTR/24_r.svg", + "staticwebassets/icons/TextNumberListLTR90/20_f.svg", + "staticwebassets/icons/TextNumberListLTR90/20_r.svg", + "staticwebassets/icons/TextNumberListLTR90/24_f.svg", + "staticwebassets/icons/TextNumberListLTR90/24_r.svg", + "staticwebassets/icons/TextNumberListLTRRotate270/20_f.svg", + "staticwebassets/icons/TextNumberListLTRRotate270/20_r.svg", + "staticwebassets/icons/TextNumberListLTRRotate270/24_f.svg", + "staticwebassets/icons/TextNumberListLTRRotate270/24_r.svg", + "staticwebassets/icons/TextNumberListRTL/16_f.svg", + "staticwebassets/icons/TextNumberListRTL/16_r.svg", + "staticwebassets/icons/TextNumberListRTL/20_f.svg", + "staticwebassets/icons/TextNumberListRTL/20_r.svg", + "staticwebassets/icons/TextNumberListRTL/24_f.svg", + "staticwebassets/icons/TextNumberListRTL/24_r.svg", + "staticwebassets/icons/TextNumberListRTL90/20_f.svg", + "staticwebassets/icons/TextNumberListRTL90/20_r.svg", + "staticwebassets/icons/TextNumberListRTL90/24_f.svg", + "staticwebassets/icons/TextNumberListRTL90/24_r.svg", + "staticwebassets/icons/TextNumberListRTLRotate270/20_f.svg", + "staticwebassets/icons/TextNumberListRTLRotate270/20_r.svg", + "staticwebassets/icons/TextNumberListRTLRotate270/24_f.svg", + "staticwebassets/icons/TextNumberListRTLRotate270/24_r.svg", + "staticwebassets/icons/TextNumberListRotate270/20_f.svg", + "staticwebassets/icons/TextNumberListRotate270/20_r.svg", + "staticwebassets/icons/TextNumberListRotate270/24_f.svg", + "staticwebassets/icons/TextNumberListRotate270/24_r.svg", + "staticwebassets/icons/TextNumberListRotate270/LTR/20_f.svg", + "staticwebassets/icons/TextNumberListRotate270/LTR/20_r.svg", + "staticwebassets/icons/TextNumberListRotate270/LTR/24_f.svg", + "staticwebassets/icons/TextNumberListRotate270/LTR/24_r.svg", + "staticwebassets/icons/TextNumberListRotate270/RTL/20_f.svg", + "staticwebassets/icons/TextNumberListRotate270/RTL/20_r.svg", + "staticwebassets/icons/TextNumberListRotate270/RTL/24_f.svg", + "staticwebassets/icons/TextNumberListRotate270/RTL/24_r.svg", + "staticwebassets/icons/TextNumberListRotate90/20_f.svg", + "staticwebassets/icons/TextNumberListRotate90/20_r.svg", + "staticwebassets/icons/TextNumberListRotate90/24_f.svg", + "staticwebassets/icons/TextNumberListRotate90/24_r.svg", + "staticwebassets/icons/TextNumberListRotate90/LTR/20_f.svg", + "staticwebassets/icons/TextNumberListRotate90/LTR/20_r.svg", + "staticwebassets/icons/TextNumberListRotate90/LTR/24_f.svg", + "staticwebassets/icons/TextNumberListRotate90/LTR/24_r.svg", + "staticwebassets/icons/TextNumberListRotate90/RTL/20_f.svg", + "staticwebassets/icons/TextNumberListRotate90/RTL/20_r.svg", + "staticwebassets/icons/TextNumberListRotate90/RTL/24_f.svg", + "staticwebassets/icons/TextNumberListRotate90/RTL/24_r.svg", + "staticwebassets/icons/TextParagraph/16_f.svg", + "staticwebassets/icons/TextParagraph/16_r.svg", + "staticwebassets/icons/TextParagraph/20_f.svg", + "staticwebassets/icons/TextParagraph/20_r.svg", + "staticwebassets/icons/TextParagraph/24_f.svg", + "staticwebassets/icons/TextParagraph/24_r.svg", + "staticwebassets/icons/TextParagraph/en/16_f.svg", + "staticwebassets/icons/TextParagraph/en/16_r.svg", + "staticwebassets/icons/TextParagraph/en/20_f.svg", + "staticwebassets/icons/TextParagraph/en/20_r.svg", + "staticwebassets/icons/TextParagraph/en/24_f.svg", + "staticwebassets/icons/TextParagraph/en/24_r.svg", + "staticwebassets/icons/TextParagraph/ja/16_f.svg", + "staticwebassets/icons/TextParagraph/ja/16_r.svg", + "staticwebassets/icons/TextParagraph/ja/20_f.svg", + "staticwebassets/icons/TextParagraph/ja/20_r.svg", + "staticwebassets/icons/TextParagraph/ja/24_f.svg", + "staticwebassets/icons/TextParagraph/ja/24_r.svg", + "staticwebassets/icons/TextParagraph/ko/16_f.svg", + "staticwebassets/icons/TextParagraph/ko/16_r.svg", + "staticwebassets/icons/TextParagraph/ko/20_f.svg", + "staticwebassets/icons/TextParagraph/ko/20_r.svg", + "staticwebassets/icons/TextParagraph/ko/24_f.svg", + "staticwebassets/icons/TextParagraph/ko/24_r.svg", + "staticwebassets/icons/TextParagraph/zh/16_f.svg", + "staticwebassets/icons/TextParagraph/zh/16_r.svg", + "staticwebassets/icons/TextParagraph/zh/20_f.svg", + "staticwebassets/icons/TextParagraph/zh/20_r.svg", + "staticwebassets/icons/TextParagraph/zh/24_f.svg", + "staticwebassets/icons/TextParagraph/zh/24_r.svg", + "staticwebassets/icons/TextParagraphDirection/20_f.svg", + "staticwebassets/icons/TextParagraphDirection/20_r.svg", + "staticwebassets/icons/TextParagraphDirection/24_f.svg", + "staticwebassets/icons/TextParagraphDirection/24_r.svg", + "staticwebassets/icons/TextParagraphDirectionLeft/16_f.svg", + "staticwebassets/icons/TextParagraphDirectionLeft/16_r.svg", + "staticwebassets/icons/TextParagraphDirectionLeft/20_f.svg", + "staticwebassets/icons/TextParagraphDirectionLeft/20_r.svg", + "staticwebassets/icons/TextParagraphDirectionRight/16_f.svg", + "staticwebassets/icons/TextParagraphDirectionRight/16_r.svg", + "staticwebassets/icons/TextParagraphDirectionRight/20_f.svg", + "staticwebassets/icons/TextParagraphDirectionRight/20_r.svg", + "staticwebassets/icons/TextParagraphTempLTR/16_f.svg", + "staticwebassets/icons/TextParagraphTempLTR/16_r.svg", + "staticwebassets/icons/TextParagraphTempLTR/20_f.svg", + "staticwebassets/icons/TextParagraphTempLTR/20_r.svg", + "staticwebassets/icons/TextParagraphTempLTR/24_f.svg", + "staticwebassets/icons/TextParagraphTempLTR/24_r.svg", + "staticwebassets/icons/TextParagraphTempRTL/16_f.svg", + "staticwebassets/icons/TextParagraphTempRTL/16_r.svg", + "staticwebassets/icons/TextParagraphTempRTL/20_f.svg", + "staticwebassets/icons/TextParagraphTempRTL/20_r.svg", + "staticwebassets/icons/TextParagraphTempRTL/24_f.svg", + "staticwebassets/icons/TextParagraphTempRTL/24_r.svg", + "staticwebassets/icons/TextPeriodAsterisk/20_f.svg", + "staticwebassets/icons/TextPeriodAsterisk/20_r.svg", + "staticwebassets/icons/TextPositionBehind/20_f.svg", + "staticwebassets/icons/TextPositionBehind/20_r.svg", + "staticwebassets/icons/TextPositionBehind/24_f.svg", + "staticwebassets/icons/TextPositionBehind/24_r.svg", + "staticwebassets/icons/TextPositionFront/20_f.svg", + "staticwebassets/icons/TextPositionFront/20_r.svg", + "staticwebassets/icons/TextPositionFront/24_f.svg", + "staticwebassets/icons/TextPositionFront/24_r.svg", + "staticwebassets/icons/TextPositionLine/20_f.svg", + "staticwebassets/icons/TextPositionLine/20_r.svg", + "staticwebassets/icons/TextPositionLine/24_f.svg", + "staticwebassets/icons/TextPositionLine/24_r.svg", + "staticwebassets/icons/TextPositionSquare/20_f.svg", + "staticwebassets/icons/TextPositionSquare/20_r.svg", + "staticwebassets/icons/TextPositionSquare/24_f.svg", + "staticwebassets/icons/TextPositionSquare/24_r.svg", + "staticwebassets/icons/TextPositionSquareLeft/16_f.svg", + "staticwebassets/icons/TextPositionSquareLeft/16_r.svg", + "staticwebassets/icons/TextPositionSquareLeft/20_f.svg", + "staticwebassets/icons/TextPositionSquareLeft/20_r.svg", + "staticwebassets/icons/TextPositionSquareLeft/24_f.svg", + "staticwebassets/icons/TextPositionSquareLeft/24_r.svg", + "staticwebassets/icons/TextPositionSquareRight/16_f.svg", + "staticwebassets/icons/TextPositionSquareRight/16_r.svg", + "staticwebassets/icons/TextPositionSquareRight/20_f.svg", + "staticwebassets/icons/TextPositionSquareRight/20_r.svg", + "staticwebassets/icons/TextPositionSquareRight/24_f.svg", + "staticwebassets/icons/TextPositionSquareRight/24_r.svg", + "staticwebassets/icons/TextPositionThrough/20_f.svg", + "staticwebassets/icons/TextPositionThrough/20_r.svg", + "staticwebassets/icons/TextPositionThrough/24_f.svg", + "staticwebassets/icons/TextPositionThrough/24_r.svg", + "staticwebassets/icons/TextPositionTight/20_f.svg", + "staticwebassets/icons/TextPositionTight/20_r.svg", + "staticwebassets/icons/TextPositionTight/24_f.svg", + "staticwebassets/icons/TextPositionTight/24_r.svg", + "staticwebassets/icons/TextPositionTopBottom/20_f.svg", + "staticwebassets/icons/TextPositionTopBottom/20_r.svg", + "staticwebassets/icons/TextPositionTopBottom/24_f.svg", + "staticwebassets/icons/TextPositionTopBottom/24_r.svg", + "staticwebassets/icons/TextProofingTools/20_f.svg", + "staticwebassets/icons/TextProofingTools/20_r.svg", + "staticwebassets/icons/TextProofingTools/24_f.svg", + "staticwebassets/icons/TextProofingTools/24_r.svg", + "staticwebassets/icons/TextProofingTools/en/20_f.svg", + "staticwebassets/icons/TextProofingTools/en/20_r.svg", + "staticwebassets/icons/TextProofingTools/en/24_f.svg", + "staticwebassets/icons/TextProofingTools/en/24_r.svg", + "staticwebassets/icons/TextProofingTools/ko/20_f.svg", + "staticwebassets/icons/TextProofingTools/ko/20_r.svg", + "staticwebassets/icons/TextProofingTools/ko/24_f.svg", + "staticwebassets/icons/TextProofingTools/ko/24_r.svg", + "staticwebassets/icons/TextProofingTools/zh/20_f.svg", + "staticwebassets/icons/TextProofingTools/zh/20_r.svg", + "staticwebassets/icons/TextProofingTools/zh/24_f.svg", + "staticwebassets/icons/TextProofingTools/zh/24_r.svg", + "staticwebassets/icons/TextQuote/16_f.svg", + "staticwebassets/icons/TextQuote/16_r.svg", + "staticwebassets/icons/TextQuote/20_f.svg", + "staticwebassets/icons/TextQuote/20_r.svg", + "staticwebassets/icons/TextQuote/24_f.svg", + "staticwebassets/icons/TextQuote/24_r.svg", + "staticwebassets/icons/TextSortAscending/16_f.svg", + "staticwebassets/icons/TextSortAscending/16_r.svg", + "staticwebassets/icons/TextSortAscending/20_f.svg", + "staticwebassets/icons/TextSortAscending/20_r.svg", + "staticwebassets/icons/TextSortAscending/24_f.svg", + "staticwebassets/icons/TextSortAscending/24_r.svg", + "staticwebassets/icons/TextSortAscending/bg/16_f.svg", + "staticwebassets/icons/TextSortAscending/bg/16_r.svg", + "staticwebassets/icons/TextSortAscending/bg/20_f.svg", + "staticwebassets/icons/TextSortAscending/bg/20_r.svg", + "staticwebassets/icons/TextSortAscending/bg/24_f.svg", + "staticwebassets/icons/TextSortAscending/bg/24_r.svg", + "staticwebassets/icons/TextSortAscending/da/16_f.svg", + "staticwebassets/icons/TextSortAscending/da/16_r.svg", + "staticwebassets/icons/TextSortAscending/da/20_f.svg", + "staticwebassets/icons/TextSortAscending/da/20_r.svg", + "staticwebassets/icons/TextSortAscending/da/24_f.svg", + "staticwebassets/icons/TextSortAscending/da/24_r.svg", + "staticwebassets/icons/TextSortAscending/en/16_f.svg", + "staticwebassets/icons/TextSortAscending/en/16_r.svg", + "staticwebassets/icons/TextSortAscending/en/20_f.svg", + "staticwebassets/icons/TextSortAscending/en/20_r.svg", + "staticwebassets/icons/TextSortAscending/en/24_f.svg", + "staticwebassets/icons/TextSortAscending/en/24_r.svg", + "staticwebassets/icons/TextSortAscending/fi/16_f.svg", + "staticwebassets/icons/TextSortAscending/fi/16_r.svg", + "staticwebassets/icons/TextSortAscending/fi/20_f.svg", + "staticwebassets/icons/TextSortAscending/fi/20_r.svg", + "staticwebassets/icons/TextSortAscending/fi/24_f.svg", + "staticwebassets/icons/TextSortAscending/fi/24_r.svg", + "staticwebassets/icons/TextSortAscending/gr/16_f.svg", + "staticwebassets/icons/TextSortAscending/gr/16_r.svg", + "staticwebassets/icons/TextSortAscending/gr/20_f.svg", + "staticwebassets/icons/TextSortAscending/gr/20_r.svg", + "staticwebassets/icons/TextSortAscending/gr/24_f.svg", + "staticwebassets/icons/TextSortAscending/gr/24_r.svg", + "staticwebassets/icons/TextSortAscending/kk/16_f.svg", + "staticwebassets/icons/TextSortAscending/kk/16_r.svg", + "staticwebassets/icons/TextSortAscending/kk/20_f.svg", + "staticwebassets/icons/TextSortAscending/kk/20_r.svg", + "staticwebassets/icons/TextSortAscending/kk/24_f.svg", + "staticwebassets/icons/TextSortAscending/kk/24_r.svg", + "staticwebassets/icons/TextSortAscending/ko/16_f.svg", + "staticwebassets/icons/TextSortAscending/ko/16_r.svg", + "staticwebassets/icons/TextSortAscending/ko/20_f.svg", + "staticwebassets/icons/TextSortAscending/ko/20_r.svg", + "staticwebassets/icons/TextSortAscending/ko/24_f.svg", + "staticwebassets/icons/TextSortAscending/ko/24_r.svg", + "staticwebassets/icons/TextSortAscending/ru/16_f.svg", + "staticwebassets/icons/TextSortAscending/ru/16_r.svg", + "staticwebassets/icons/TextSortAscending/ru/20_f.svg", + "staticwebassets/icons/TextSortAscending/ru/20_r.svg", + "staticwebassets/icons/TextSortAscending/ru/24_f.svg", + "staticwebassets/icons/TextSortAscending/ru/24_r.svg", + "staticwebassets/icons/TextSortAscending/se/16_f.svg", + "staticwebassets/icons/TextSortAscending/se/16_r.svg", + "staticwebassets/icons/TextSortAscending/se/20_f.svg", + "staticwebassets/icons/TextSortAscending/se/20_r.svg", + "staticwebassets/icons/TextSortAscending/se/24_f.svg", + "staticwebassets/icons/TextSortAscending/se/24_r.svg", + "staticwebassets/icons/TextSortAscending/sl/16_f.svg", + "staticwebassets/icons/TextSortAscending/sl/16_r.svg", + "staticwebassets/icons/TextSortAscending/sl/20_f.svg", + "staticwebassets/icons/TextSortAscending/sl/20_r.svg", + "staticwebassets/icons/TextSortAscending/sl/24_f.svg", + "staticwebassets/icons/TextSortAscending/sl/24_r.svg", + "staticwebassets/icons/TextSortAscending/sr/16_f.svg", + "staticwebassets/icons/TextSortAscending/sr/16_r.svg", + "staticwebassets/icons/TextSortAscending/sr/20_f.svg", + "staticwebassets/icons/TextSortAscending/sr/20_r.svg", + "staticwebassets/icons/TextSortAscending/sr/24_f.svg", + "staticwebassets/icons/TextSortAscending/sr/24_r.svg", + "staticwebassets/icons/TextSortDescending/16_f.svg", + "staticwebassets/icons/TextSortDescending/16_r.svg", + "staticwebassets/icons/TextSortDescending/20_f.svg", + "staticwebassets/icons/TextSortDescending/20_r.svg", + "staticwebassets/icons/TextSortDescending/24_f.svg", + "staticwebassets/icons/TextSortDescending/24_r.svg", + "staticwebassets/icons/TextSortDescending/bg/16_f.svg", + "staticwebassets/icons/TextSortDescending/bg/16_r.svg", + "staticwebassets/icons/TextSortDescending/bg/20_f.svg", + "staticwebassets/icons/TextSortDescending/bg/20_r.svg", + "staticwebassets/icons/TextSortDescending/bg/24_f.svg", + "staticwebassets/icons/TextSortDescending/bg/24_r.svg", + "staticwebassets/icons/TextSortDescending/da/16_f.svg", + "staticwebassets/icons/TextSortDescending/da/16_r.svg", + "staticwebassets/icons/TextSortDescending/da/20_f.svg", + "staticwebassets/icons/TextSortDescending/da/20_r.svg", + "staticwebassets/icons/TextSortDescending/da/24_f.svg", + "staticwebassets/icons/TextSortDescending/da/24_r.svg", + "staticwebassets/icons/TextSortDescending/en/16_f.svg", + "staticwebassets/icons/TextSortDescending/en/16_r.svg", + "staticwebassets/icons/TextSortDescending/en/20_f.svg", + "staticwebassets/icons/TextSortDescending/en/20_r.svg", + "staticwebassets/icons/TextSortDescending/en/24_f.svg", + "staticwebassets/icons/TextSortDescending/en/24_r.svg", + "staticwebassets/icons/TextSortDescending/fi/16_f.svg", + "staticwebassets/icons/TextSortDescending/fi/16_r.svg", + "staticwebassets/icons/TextSortDescending/fi/20_f.svg", + "staticwebassets/icons/TextSortDescending/fi/20_r.svg", + "staticwebassets/icons/TextSortDescending/fi/24_f.svg", + "staticwebassets/icons/TextSortDescending/fi/24_r.svg", + "staticwebassets/icons/TextSortDescending/gr/16_f.svg", + "staticwebassets/icons/TextSortDescending/gr/16_r.svg", + "staticwebassets/icons/TextSortDescending/gr/20_f.svg", + "staticwebassets/icons/TextSortDescending/gr/20_r.svg", + "staticwebassets/icons/TextSortDescending/gr/24_f.svg", + "staticwebassets/icons/TextSortDescending/gr/24_r.svg", + "staticwebassets/icons/TextSortDescending/kk/16_f.svg", + "staticwebassets/icons/TextSortDescending/kk/16_r.svg", + "staticwebassets/icons/TextSortDescending/kk/20_f.svg", + "staticwebassets/icons/TextSortDescending/kk/20_r.svg", + "staticwebassets/icons/TextSortDescending/kk/24_f.svg", + "staticwebassets/icons/TextSortDescending/kk/24_r.svg", + "staticwebassets/icons/TextSortDescending/ko/16_f.svg", + "staticwebassets/icons/TextSortDescending/ko/16_r.svg", + "staticwebassets/icons/TextSortDescending/ko/20_f.svg", + "staticwebassets/icons/TextSortDescending/ko/20_r.svg", + "staticwebassets/icons/TextSortDescending/ko/24_f.svg", + "staticwebassets/icons/TextSortDescending/ko/24_r.svg", + "staticwebassets/icons/TextSortDescending/ru/16_f.svg", + "staticwebassets/icons/TextSortDescending/ru/16_r.svg", + "staticwebassets/icons/TextSortDescending/ru/20_f.svg", + "staticwebassets/icons/TextSortDescending/ru/20_r.svg", + "staticwebassets/icons/TextSortDescending/ru/24_f.svg", + "staticwebassets/icons/TextSortDescending/ru/24_r.svg", + "staticwebassets/icons/TextSortDescending/se/16_f.svg", + "staticwebassets/icons/TextSortDescending/se/16_r.svg", + "staticwebassets/icons/TextSortDescending/se/20_f.svg", + "staticwebassets/icons/TextSortDescending/se/20_r.svg", + "staticwebassets/icons/TextSortDescending/se/24_f.svg", + "staticwebassets/icons/TextSortDescending/se/24_r.svg", + "staticwebassets/icons/TextSortDescending/sl/16_f.svg", + "staticwebassets/icons/TextSortDescending/sl/16_r.svg", + "staticwebassets/icons/TextSortDescending/sl/20_f.svg", + "staticwebassets/icons/TextSortDescending/sl/20_r.svg", + "staticwebassets/icons/TextSortDescending/sl/24_f.svg", + "staticwebassets/icons/TextSortDescending/sl/24_r.svg", + "staticwebassets/icons/TextSortDescending/sr/16_f.svg", + "staticwebassets/icons/TextSortDescending/sr/16_r.svg", + "staticwebassets/icons/TextSortDescending/sr/20_f.svg", + "staticwebassets/icons/TextSortDescending/sr/20_r.svg", + "staticwebassets/icons/TextSortDescending/sr/24_f.svg", + "staticwebassets/icons/TextSortDescending/sr/24_r.svg", + "staticwebassets/icons/TextStrikethrough/16_f.svg", + "staticwebassets/icons/TextStrikethrough/16_r.svg", + "staticwebassets/icons/TextStrikethrough/20_f.svg", + "staticwebassets/icons/TextStrikethrough/20_r.svg", + "staticwebassets/icons/TextStrikethrough/24_f.svg", + "staticwebassets/icons/TextStrikethrough/24_r.svg", + "staticwebassets/icons/TextStrikethrough/en/16_f.svg", + "staticwebassets/icons/TextStrikethrough/en/16_r.svg", + "staticwebassets/icons/TextStrikethrough/en/20_f.svg", + "staticwebassets/icons/TextStrikethrough/en/20_r.svg", + "staticwebassets/icons/TextStrikethrough/en/24_f.svg", + "staticwebassets/icons/TextStrikethrough/en/24_r.svg", + "staticwebassets/icons/TextStrikethrough/ko/16_f.svg", + "staticwebassets/icons/TextStrikethrough/ko/16_r.svg", + "staticwebassets/icons/TextStrikethrough/ko/20_f.svg", + "staticwebassets/icons/TextStrikethrough/ko/20_r.svg", + "staticwebassets/icons/TextStrikethrough/ko/24_f.svg", + "staticwebassets/icons/TextStrikethrough/ko/24_r.svg", + "staticwebassets/icons/TextSubscript/16_f.svg", + "staticwebassets/icons/TextSubscript/16_r.svg", + "staticwebassets/icons/TextSubscript/20_f.svg", + "staticwebassets/icons/TextSubscript/20_r.svg", + "staticwebassets/icons/TextSubscript/24_f.svg", + "staticwebassets/icons/TextSubscript/24_r.svg", + "staticwebassets/icons/TextSuperscript/16_f.svg", + "staticwebassets/icons/TextSuperscript/16_r.svg", + "staticwebassets/icons/TextSuperscript/20_f.svg", + "staticwebassets/icons/TextSuperscript/20_r.svg", + "staticwebassets/icons/TextSuperscript/24_f.svg", + "staticwebassets/icons/TextSuperscript/24_r.svg", + "staticwebassets/icons/TextT/12_f.svg", + "staticwebassets/icons/TextT/12_r.svg", + "staticwebassets/icons/TextT/16_f.svg", + "staticwebassets/icons/TextT/16_r.svg", + "staticwebassets/icons/TextT/20_f.svg", + "staticwebassets/icons/TextT/20_r.svg", + "staticwebassets/icons/TextT/24_f.svg", + "staticwebassets/icons/TextT/24_r.svg", + "staticwebassets/icons/TextT/28_f.svg", + "staticwebassets/icons/TextT/28_r.svg", + "staticwebassets/icons/TextT/32_f.svg", + "staticwebassets/icons/TextT/32_r.svg", + "staticwebassets/icons/TextT/48_f.svg", + "staticwebassets/icons/TextT/48_r.svg", + "staticwebassets/icons/TextTTag/16_f.svg", + "staticwebassets/icons/TextTTag/16_r.svg", + "staticwebassets/icons/TextUnderline/16_f.svg", + "staticwebassets/icons/TextUnderline/16_r.svg", + "staticwebassets/icons/TextUnderline/20_f.svg", + "staticwebassets/icons/TextUnderline/20_r.svg", + "staticwebassets/icons/TextUnderline/24_f.svg", + "staticwebassets/icons/TextUnderline/24_r.svg", + "staticwebassets/icons/TextUnderline/bg/16_f.svg", + "staticwebassets/icons/TextUnderline/bg/16_r.svg", + "staticwebassets/icons/TextUnderline/bg/20_f.svg", + "staticwebassets/icons/TextUnderline/bg/20_r.svg", + "staticwebassets/icons/TextUnderline/bg/24_f.svg", + "staticwebassets/icons/TextUnderline/bg/24_r.svg", + "staticwebassets/icons/TextUnderline/ca/16_f.svg", + "staticwebassets/icons/TextUnderline/ca/16_r.svg", + "staticwebassets/icons/TextUnderline/ca/20_f.svg", + "staticwebassets/icons/TextUnderline/ca/20_r.svg", + "staticwebassets/icons/TextUnderline/ca/24_f.svg", + "staticwebassets/icons/TextUnderline/ca/24_r.svg", + "staticwebassets/icons/TextUnderline/en/16_f.svg", + "staticwebassets/icons/TextUnderline/en/16_r.svg", + "staticwebassets/icons/TextUnderline/en/20_f.svg", + "staticwebassets/icons/TextUnderline/en/20_r.svg", + "staticwebassets/icons/TextUnderline/en/24_f.svg", + "staticwebassets/icons/TextUnderline/en/24_r.svg", + "staticwebassets/icons/TextUnderline/es/16_f.svg", + "staticwebassets/icons/TextUnderline/es/16_r.svg", + "staticwebassets/icons/TextUnderline/es/20_f.svg", + "staticwebassets/icons/TextUnderline/es/20_r.svg", + "staticwebassets/icons/TextUnderline/es/24_f.svg", + "staticwebassets/icons/TextUnderline/es/24_r.svg", + "staticwebassets/icons/TextUnderline/et/16_f.svg", + "staticwebassets/icons/TextUnderline/et/16_r.svg", + "staticwebassets/icons/TextUnderline/et/20_f.svg", + "staticwebassets/icons/TextUnderline/et/20_r.svg", + "staticwebassets/icons/TextUnderline/et/24_f.svg", + "staticwebassets/icons/TextUnderline/et/24_r.svg", + "staticwebassets/icons/TextUnderline/eu/16_f.svg", + "staticwebassets/icons/TextUnderline/eu/16_r.svg", + "staticwebassets/icons/TextUnderline/eu/20_f.svg", + "staticwebassets/icons/TextUnderline/eu/20_r.svg", + "staticwebassets/icons/TextUnderline/eu/24_f.svg", + "staticwebassets/icons/TextUnderline/eu/24_r.svg", + "staticwebassets/icons/TextUnderline/fr/16_f.svg", + "staticwebassets/icons/TextUnderline/fr/16_r.svg", + "staticwebassets/icons/TextUnderline/fr/20_f.svg", + "staticwebassets/icons/TextUnderline/fr/20_r.svg", + "staticwebassets/icons/TextUnderline/fr/24_f.svg", + "staticwebassets/icons/TextUnderline/fr/24_r.svg", + "staticwebassets/icons/TextUnderline/gl/16_f.svg", + "staticwebassets/icons/TextUnderline/gl/16_r.svg", + "staticwebassets/icons/TextUnderline/gl/20_f.svg", + "staticwebassets/icons/TextUnderline/gl/20_r.svg", + "staticwebassets/icons/TextUnderline/gl/24_f.svg", + "staticwebassets/icons/TextUnderline/gl/24_r.svg", + "staticwebassets/icons/TextUnderline/hu/16_f.svg", + "staticwebassets/icons/TextUnderline/hu/16_r.svg", + "staticwebassets/icons/TextUnderline/hu/20_f.svg", + "staticwebassets/icons/TextUnderline/hu/20_r.svg", + "staticwebassets/icons/TextUnderline/hu/24_f.svg", + "staticwebassets/icons/TextUnderline/hu/24_r.svg", + "staticwebassets/icons/TextUnderline/it/16_f.svg", + "staticwebassets/icons/TextUnderline/it/16_r.svg", + "staticwebassets/icons/TextUnderline/it/20_f.svg", + "staticwebassets/icons/TextUnderline/it/20_r.svg", + "staticwebassets/icons/TextUnderline/it/24_f.svg", + "staticwebassets/icons/TextUnderline/it/24_r.svg", + "staticwebassets/icons/TextUnderline/kk/16_f.svg", + "staticwebassets/icons/TextUnderline/kk/16_r.svg", + "staticwebassets/icons/TextUnderline/kk/20_f.svg", + "staticwebassets/icons/TextUnderline/kk/20_r.svg", + "staticwebassets/icons/TextUnderline/kk/24_f.svg", + "staticwebassets/icons/TextUnderline/kk/24_r.svg", + "staticwebassets/icons/TextUnderline/ko/16_f.svg", + "staticwebassets/icons/TextUnderline/ko/16_r.svg", + "staticwebassets/icons/TextUnderline/ko/20_f.svg", + "staticwebassets/icons/TextUnderline/ko/20_r.svg", + "staticwebassets/icons/TextUnderline/ko/24_f.svg", + "staticwebassets/icons/TextUnderline/ko/24_r.svg", + "staticwebassets/icons/TextUnderline/lt/16_f.svg", + "staticwebassets/icons/TextUnderline/lt/16_r.svg", + "staticwebassets/icons/TextUnderline/lt/20_f.svg", + "staticwebassets/icons/TextUnderline/lt/20_r.svg", + "staticwebassets/icons/TextUnderline/lt/24_f.svg", + "staticwebassets/icons/TextUnderline/lt/24_r.svg", + "staticwebassets/icons/TextUnderline/lv/16_f.svg", + "staticwebassets/icons/TextUnderline/lv/16_r.svg", + "staticwebassets/icons/TextUnderline/lv/20_f.svg", + "staticwebassets/icons/TextUnderline/lv/20_r.svg", + "staticwebassets/icons/TextUnderline/lv/24_f.svg", + "staticwebassets/icons/TextUnderline/lv/24_r.svg", + "staticwebassets/icons/TextUnderline/pt/16_f.svg", + "staticwebassets/icons/TextUnderline/pt/16_r.svg", + "staticwebassets/icons/TextUnderline/pt/20_f.svg", + "staticwebassets/icons/TextUnderline/pt/20_r.svg", + "staticwebassets/icons/TextUnderline/pt/24_f.svg", + "staticwebassets/icons/TextUnderline/pt/24_r.svg", + "staticwebassets/icons/TextUnderline/ru/16_f.svg", + "staticwebassets/icons/TextUnderline/ru/16_r.svg", + "staticwebassets/icons/TextUnderline/ru/20_f.svg", + "staticwebassets/icons/TextUnderline/ru/20_r.svg", + "staticwebassets/icons/TextUnderline/ru/24_f.svg", + "staticwebassets/icons/TextUnderline/ru/24_r.svg", + "staticwebassets/icons/TextUnderline/sl/16_f.svg", + "staticwebassets/icons/TextUnderline/sl/16_r.svg", + "staticwebassets/icons/TextUnderline/sl/20_f.svg", + "staticwebassets/icons/TextUnderline/sl/20_r.svg", + "staticwebassets/icons/TextUnderline/sl/24_f.svg", + "staticwebassets/icons/TextUnderline/sl/24_r.svg", + "staticwebassets/icons/TextUnderline/sr/16_f.svg", + "staticwebassets/icons/TextUnderline/sr/16_r.svg", + "staticwebassets/icons/TextUnderline/sr/20_f.svg", + "staticwebassets/icons/TextUnderline/sr/20_r.svg", + "staticwebassets/icons/TextUnderline/sr/24_f.svg", + "staticwebassets/icons/TextUnderline/sr/24_r.svg", + "staticwebassets/icons/TextUnderline/tr/16_f.svg", + "staticwebassets/icons/TextUnderline/tr/16_r.svg", + "staticwebassets/icons/TextUnderline/tr/20_f.svg", + "staticwebassets/icons/TextUnderline/tr/20_r.svg", + "staticwebassets/icons/TextUnderline/tr/24_f.svg", + "staticwebassets/icons/TextUnderline/tr/24_r.svg", + "staticwebassets/icons/TextUnderline/uk/16_f.svg", + "staticwebassets/icons/TextUnderline/uk/16_r.svg", + "staticwebassets/icons/TextUnderline/uk/20_f.svg", + "staticwebassets/icons/TextUnderline/uk/20_r.svg", + "staticwebassets/icons/TextUnderline/uk/24_f.svg", + "staticwebassets/icons/TextUnderline/uk/24_r.svg", + "staticwebassets/icons/TextUnderlineCharacterU/16_f.svg", + "staticwebassets/icons/TextUnderlineCharacterU/16_r.svg", + "staticwebassets/icons/TextUnderlineCharacterU/20_f.svg", + "staticwebassets/icons/TextUnderlineCharacterU/20_r.svg", + "staticwebassets/icons/TextUnderlineCharacterU/24_f.svg", + "staticwebassets/icons/TextUnderlineCharacterU/24_r.svg", + "staticwebassets/icons/TextUnderlineDouble/20_f.svg", + "staticwebassets/icons/TextUnderlineDouble/20_r.svg", + "staticwebassets/icons/TextUnderlineDouble/24_f.svg", + "staticwebassets/icons/TextUnderlineDouble/24_r.svg", + "staticwebassets/icons/TextWholeWord/20_f.svg", + "staticwebassets/icons/TextWholeWord/20_r.svg", + "staticwebassets/icons/TextWordCount/20_f.svg", + "staticwebassets/icons/TextWordCount/20_r.svg", + "staticwebassets/icons/TextWordCount/24_f.svg", + "staticwebassets/icons/TextWordCount/24_r.svg", + "staticwebassets/icons/TextWrap/16_f.svg", + "staticwebassets/icons/TextWrap/16_r.svg", + "staticwebassets/icons/TextWrap/20_f.svg", + "staticwebassets/icons/TextWrap/20_r.svg", + "staticwebassets/icons/TextWrap/24_f.svg", + "staticwebassets/icons/TextWrap/24_r.svg", + "staticwebassets/icons/TextWrapOff/16_f.svg", + "staticwebassets/icons/TextWrapOff/16_r.svg", + "staticwebassets/icons/TextWrapOff/20_f.svg", + "staticwebassets/icons/TextWrapOff/20_r.svg", + "staticwebassets/icons/TextWrapOff/24_f.svg", + "staticwebassets/icons/TextWrapOff/24_r.svg", + "staticwebassets/icons/Thinking/20_f.svg", + "staticwebassets/icons/Thinking/20_r.svg", + "staticwebassets/icons/Thinking/24_f.svg", + "staticwebassets/icons/Thinking/24_r.svg", + "staticwebassets/icons/ThumbDislike/16_f.svg", + "staticwebassets/icons/ThumbDislike/16_r.svg", + "staticwebassets/icons/ThumbDislike/20_f.svg", + "staticwebassets/icons/ThumbDislike/20_r.svg", + "staticwebassets/icons/ThumbDislike/24_f.svg", + "staticwebassets/icons/ThumbDislike/24_r.svg", + "staticwebassets/icons/ThumbLike/16_f.svg", + "staticwebassets/icons/ThumbLike/16_r.svg", + "staticwebassets/icons/ThumbLike/20_f.svg", + "staticwebassets/icons/ThumbLike/20_r.svg", + "staticwebassets/icons/ThumbLike/24_f.svg", + "staticwebassets/icons/ThumbLike/24_r.svg", + "staticwebassets/icons/ThumbLike/28_f.svg", + "staticwebassets/icons/ThumbLike/28_r.svg", + "staticwebassets/icons/ThumbLike/48_f.svg", + "staticwebassets/icons/ThumbLike/48_r.svg", + "staticwebassets/icons/TicketDiagonal/16_f.svg", + "staticwebassets/icons/TicketDiagonal/16_r.svg", + "staticwebassets/icons/TicketDiagonal/20_f.svg", + "staticwebassets/icons/TicketDiagonal/20_r.svg", + "staticwebassets/icons/TicketDiagonal/24_f.svg", + "staticwebassets/icons/TicketDiagonal/24_r.svg", + "staticwebassets/icons/TicketDiagonal/28_f.svg", + "staticwebassets/icons/TicketDiagonal/28_r.svg", + "staticwebassets/icons/TicketHorizontal/20_f.svg", + "staticwebassets/icons/TicketHorizontal/20_r.svg", + "staticwebassets/icons/TicketHorizontal/24_f.svg", + "staticwebassets/icons/TicketHorizontal/24_r.svg", + "staticwebassets/icons/TimeAndWeather/20_f.svg", + "staticwebassets/icons/TimeAndWeather/20_r.svg", + "staticwebassets/icons/TimeAndWeather/24_f.svg", + "staticwebassets/icons/TimeAndWeather/24_r.svg", + "staticwebassets/icons/TimePicker/20_f.svg", + "staticwebassets/icons/TimePicker/20_r.svg", + "staticwebassets/icons/TimePicker/24_f.svg", + "staticwebassets/icons/TimePicker/24_r.svg", + "staticwebassets/icons/Timeline/20_f.svg", + "staticwebassets/icons/Timeline/20_r.svg", + "staticwebassets/icons/Timeline/24_f.svg", + "staticwebassets/icons/Timeline/24_r.svg", + "staticwebassets/icons/Timer/12_f.svg", + "staticwebassets/icons/Timer/12_r.svg", + "staticwebassets/icons/Timer/16_f.svg", + "staticwebassets/icons/Timer/16_r.svg", + "staticwebassets/icons/Timer/20_f.svg", + "staticwebassets/icons/Timer/20_r.svg", + "staticwebassets/icons/Timer/24_f.svg", + "staticwebassets/icons/Timer/24_r.svg", + "staticwebassets/icons/Timer/28_f.svg", + "staticwebassets/icons/Timer/28_r.svg", + "staticwebassets/icons/Timer/32_f.svg", + "staticwebassets/icons/Timer/32_r.svg", + "staticwebassets/icons/Timer/48_f.svg", + "staticwebassets/icons/Timer/48_r.svg", + "staticwebassets/icons/Timer10/20_f.svg", + "staticwebassets/icons/Timer10/20_r.svg", + "staticwebassets/icons/Timer10/24_f.svg", + "staticwebassets/icons/Timer10/24_r.svg", + "staticwebassets/icons/Timer2/20_f.svg", + "staticwebassets/icons/Timer2/20_r.svg", + "staticwebassets/icons/Timer2/24_f.svg", + "staticwebassets/icons/Timer2/24_r.svg", + "staticwebassets/icons/Timer3/20_f.svg", + "staticwebassets/icons/Timer3/20_r.svg", + "staticwebassets/icons/Timer3/24_f.svg", + "staticwebassets/icons/Timer3/24_r.svg", + "staticwebassets/icons/TimerOff/20_f.svg", + "staticwebassets/icons/TimerOff/20_r.svg", + "staticwebassets/icons/TimerOff/24_f.svg", + "staticwebassets/icons/TimerOff/24_r.svg", + "staticwebassets/icons/ToggleLeft/16_f.svg", + "staticwebassets/icons/ToggleLeft/16_r.svg", + "staticwebassets/icons/ToggleLeft/20_f.svg", + "staticwebassets/icons/ToggleLeft/20_r.svg", + "staticwebassets/icons/ToggleLeft/24_f.svg", + "staticwebassets/icons/ToggleLeft/24_r.svg", + "staticwebassets/icons/ToggleLeft/28_f.svg", + "staticwebassets/icons/ToggleLeft/28_r.svg", + "staticwebassets/icons/ToggleLeft/48_f.svg", + "staticwebassets/icons/ToggleLeft/48_r.svg", + "staticwebassets/icons/ToggleMultiple/16_f.svg", + "staticwebassets/icons/ToggleMultiple/16_r.svg", + "staticwebassets/icons/ToggleMultiple/20_f.svg", + "staticwebassets/icons/ToggleMultiple/20_r.svg", + "staticwebassets/icons/ToggleMultiple/24_f.svg", + "staticwebassets/icons/ToggleMultiple/24_r.svg", + "staticwebassets/icons/ToggleRight/16_f.svg", + "staticwebassets/icons/ToggleRight/16_r.svg", + "staticwebassets/icons/ToggleRight/20_f.svg", + "staticwebassets/icons/ToggleRight/20_r.svg", + "staticwebassets/icons/ToggleRight/24_f.svg", + "staticwebassets/icons/ToggleRight/24_r.svg", + "staticwebassets/icons/ToggleRight/28_f.svg", + "staticwebassets/icons/ToggleRight/28_r.svg", + "staticwebassets/icons/ToggleRight/48_f.svg", + "staticwebassets/icons/ToggleRight/48_r.svg", + "staticwebassets/icons/Toolbox/12_f.svg", + "staticwebassets/icons/Toolbox/12_r.svg", + "staticwebassets/icons/Toolbox/16_f.svg", + "staticwebassets/icons/Toolbox/16_r.svg", + "staticwebassets/icons/Toolbox/20_f.svg", + "staticwebassets/icons/Toolbox/20_r.svg", + "staticwebassets/icons/Toolbox/24_f.svg", + "staticwebassets/icons/Toolbox/24_r.svg", + "staticwebassets/icons/Toolbox/28_f.svg", + "staticwebassets/icons/Toolbox/28_r.svg", + "staticwebassets/icons/TooltipQuote/20_f.svg", + "staticwebassets/icons/TooltipQuote/20_r.svg", + "staticwebassets/icons/TooltipQuote/24_f.svg", + "staticwebassets/icons/TooltipQuote/24_r.svg", + "staticwebassets/icons/TopSpeed/20_f.svg", + "staticwebassets/icons/TopSpeed/20_r.svg", + "staticwebassets/icons/TopSpeed/24_f.svg", + "staticwebassets/icons/TopSpeed/24_r.svg", + "staticwebassets/icons/Translate/16_f.svg", + "staticwebassets/icons/Translate/16_r.svg", + "staticwebassets/icons/Translate/20_f.svg", + "staticwebassets/icons/Translate/20_r.svg", + "staticwebassets/icons/Translate/24_f.svg", + "staticwebassets/icons/Translate/24_r.svg", + "staticwebassets/icons/TranslateAuto/16_f.svg", + "staticwebassets/icons/TranslateAuto/16_r.svg", + "staticwebassets/icons/TranslateAuto/20_f.svg", + "staticwebassets/icons/TranslateAuto/20_r.svg", + "staticwebassets/icons/TranslateAuto/24_f.svg", + "staticwebassets/icons/TranslateAuto/24_r.svg", + "staticwebassets/icons/TranslateOff/16_f.svg", + "staticwebassets/icons/TranslateOff/16_r.svg", + "staticwebassets/icons/TranslateOff/20_f.svg", + "staticwebassets/icons/TranslateOff/20_r.svg", + "staticwebassets/icons/TranslateOff/24_f.svg", + "staticwebassets/icons/TranslateOff/24_r.svg", + "staticwebassets/icons/Transmission/20_f.svg", + "staticwebassets/icons/Transmission/20_r.svg", + "staticwebassets/icons/Transmission/24_f.svg", + "staticwebassets/icons/Transmission/24_r.svg", + "staticwebassets/icons/TrayItemAdd/20_f.svg", + "staticwebassets/icons/TrayItemAdd/20_r.svg", + "staticwebassets/icons/TrayItemAdd/24_f.svg", + "staticwebassets/icons/TrayItemAdd/24_r.svg", + "staticwebassets/icons/TrayItemRemove/20_f.svg", + "staticwebassets/icons/TrayItemRemove/20_r.svg", + "staticwebassets/icons/TrayItemRemove/24_f.svg", + "staticwebassets/icons/TrayItemRemove/24_r.svg", + "staticwebassets/icons/TreeDeciduous/20_f.svg", + "staticwebassets/icons/TreeDeciduous/20_r.svg", + "staticwebassets/icons/TreeDeciduous/24_f.svg", + "staticwebassets/icons/TreeDeciduous/24_r.svg", + "staticwebassets/icons/TreeDeciduous/28_f.svg", + "staticwebassets/icons/TreeDeciduous/28_r.svg", + "staticwebassets/icons/TreeEvergreen/20_f.svg", + "staticwebassets/icons/TreeEvergreen/20_r.svg", + "staticwebassets/icons/Triangle/12_f.svg", + "staticwebassets/icons/Triangle/12_r.svg", + "staticwebassets/icons/Triangle/16_f.svg", + "staticwebassets/icons/Triangle/16_r.svg", + "staticwebassets/icons/Triangle/20_f.svg", + "staticwebassets/icons/Triangle/20_r.svg", + "staticwebassets/icons/Triangle/32_f.svg", + "staticwebassets/icons/Triangle/32_r.svg", + "staticwebassets/icons/Triangle/48_f.svg", + "staticwebassets/icons/Triangle/48_r.svg", + "staticwebassets/icons/TriangleDown/12_f.svg", + "staticwebassets/icons/TriangleDown/12_r.svg", + "staticwebassets/icons/TriangleDown/16_f.svg", + "staticwebassets/icons/TriangleDown/16_r.svg", + "staticwebassets/icons/TriangleDown/20_f.svg", + "staticwebassets/icons/TriangleDown/20_r.svg", + "staticwebassets/icons/TriangleDown/32_f.svg", + "staticwebassets/icons/TriangleDown/32_r.svg", + "staticwebassets/icons/TriangleDown/48_f.svg", + "staticwebassets/icons/TriangleDown/48_r.svg", + "staticwebassets/icons/TriangleLeft/12_f.svg", + "staticwebassets/icons/TriangleLeft/12_r.svg", + "staticwebassets/icons/TriangleLeft/16_f.svg", + "staticwebassets/icons/TriangleLeft/16_r.svg", + "staticwebassets/icons/TriangleLeft/20_f.svg", + "staticwebassets/icons/TriangleLeft/20_r.svg", + "staticwebassets/icons/TriangleLeft/32_f.svg", + "staticwebassets/icons/TriangleLeft/32_r.svg", + "staticwebassets/icons/TriangleLeft/48_f.svg", + "staticwebassets/icons/TriangleLeft/48_r.svg", + "staticwebassets/icons/TriangleRight/12_f.svg", + "staticwebassets/icons/TriangleRight/12_r.svg", + "staticwebassets/icons/TriangleRight/16_f.svg", + "staticwebassets/icons/TriangleRight/16_r.svg", + "staticwebassets/icons/TriangleRight/20_f.svg", + "staticwebassets/icons/TriangleRight/20_r.svg", + "staticwebassets/icons/TriangleRight/32_f.svg", + "staticwebassets/icons/TriangleRight/32_r.svg", + "staticwebassets/icons/TriangleRight/48_f.svg", + "staticwebassets/icons/TriangleRight/48_r.svg", + "staticwebassets/icons/Trophy/16_f.svg", + "staticwebassets/icons/Trophy/16_r.svg", + "staticwebassets/icons/Trophy/20_f.svg", + "staticwebassets/icons/Trophy/20_r.svg", + "staticwebassets/icons/Trophy/24_f.svg", + "staticwebassets/icons/Trophy/24_r.svg", + "staticwebassets/icons/Trophy/28_f.svg", + "staticwebassets/icons/Trophy/28_r.svg", + "staticwebassets/icons/Trophy/32_f.svg", + "staticwebassets/icons/Trophy/32_r.svg", + "staticwebassets/icons/Trophy/48_f.svg", + "staticwebassets/icons/Trophy/48_r.svg", + "staticwebassets/icons/TrophyLock/16_f.svg", + "staticwebassets/icons/TrophyLock/16_r.svg", + "staticwebassets/icons/TrophyLock/20_f.svg", + "staticwebassets/icons/TrophyLock/20_r.svg", + "staticwebassets/icons/TrophyLock/24_f.svg", + "staticwebassets/icons/TrophyLock/24_r.svg", + "staticwebassets/icons/TrophyLock/28_f.svg", + "staticwebassets/icons/TrophyLock/28_r.svg", + "staticwebassets/icons/TrophyLock/32_f.svg", + "staticwebassets/icons/TrophyLock/32_r.svg", + "staticwebassets/icons/TrophyLock/48_f.svg", + "staticwebassets/icons/TrophyLock/48_r.svg", + "staticwebassets/icons/TrophyOff/16_f.svg", + "staticwebassets/icons/TrophyOff/16_r.svg", + "staticwebassets/icons/TrophyOff/20_f.svg", + "staticwebassets/icons/TrophyOff/20_r.svg", + "staticwebassets/icons/TrophyOff/24_f.svg", + "staticwebassets/icons/TrophyOff/24_r.svg", + "staticwebassets/icons/TrophyOff/28_f.svg", + "staticwebassets/icons/TrophyOff/28_r.svg", + "staticwebassets/icons/TrophyOff/32_f.svg", + "staticwebassets/icons/TrophyOff/32_r.svg", + "staticwebassets/icons/TrophyOff/48_f.svg", + "staticwebassets/icons/TrophyOff/48_r.svg", + "staticwebassets/icons/USBPlug/20_f.svg", + "staticwebassets/icons/USBPlug/20_r.svg", + "staticwebassets/icons/USBPlug/24_f.svg", + "staticwebassets/icons/USBPlug/24_r.svg", + "staticwebassets/icons/Umbrella/20_f.svg", + "staticwebassets/icons/Umbrella/20_r.svg", + "staticwebassets/icons/Umbrella/24_f.svg", + "staticwebassets/icons/Umbrella/24_r.svg", + "staticwebassets/icons/UninstallApp/20_f.svg", + "staticwebassets/icons/UninstallApp/20_r.svg", + "staticwebassets/icons/UninstallApp/24_f.svg", + "staticwebassets/icons/UninstallApp/24_r.svg", + "staticwebassets/icons/UsbStick/20_f.svg", + "staticwebassets/icons/UsbStick/20_r.svg", + "staticwebassets/icons/UsbStick/24_f.svg", + "staticwebassets/icons/UsbStick/24_r.svg", + "staticwebassets/icons/Vault/16_f.svg", + "staticwebassets/icons/Vault/16_r.svg", + "staticwebassets/icons/Vault/20_f.svg", + "staticwebassets/icons/Vault/20_r.svg", + "staticwebassets/icons/Vault/24_f.svg", + "staticwebassets/icons/Vault/24_r.svg", + "staticwebassets/icons/VehicleBicycle/16_f.svg", + "staticwebassets/icons/VehicleBicycle/16_r.svg", + "staticwebassets/icons/VehicleBicycle/20_f.svg", + "staticwebassets/icons/VehicleBicycle/20_r.svg", + "staticwebassets/icons/VehicleBicycle/24_f.svg", + "staticwebassets/icons/VehicleBicycle/24_r.svg", + "staticwebassets/icons/VehicleBus/16_f.svg", + "staticwebassets/icons/VehicleBus/16_r.svg", + "staticwebassets/icons/VehicleBus/20_f.svg", + "staticwebassets/icons/VehicleBus/20_r.svg", + "staticwebassets/icons/VehicleBus/24_f.svg", + "staticwebassets/icons/VehicleBus/24_r.svg", + "staticwebassets/icons/VehicleCab/16_f.svg", + "staticwebassets/icons/VehicleCab/16_r.svg", + "staticwebassets/icons/VehicleCab/20_f.svg", + "staticwebassets/icons/VehicleCab/20_r.svg", + "staticwebassets/icons/VehicleCab/24_f.svg", + "staticwebassets/icons/VehicleCab/24_r.svg", + "staticwebassets/icons/VehicleCab/28_f.svg", + "staticwebassets/icons/VehicleCab/28_r.svg", + "staticwebassets/icons/VehicleCableCar/20_f.svg", + "staticwebassets/icons/VehicleCableCar/20_r.svg", + "staticwebassets/icons/VehicleCableCar/24_f.svg", + "staticwebassets/icons/VehicleCableCar/24_r.svg", + "staticwebassets/icons/VehicleCableCar/28_f.svg", + "staticwebassets/icons/VehicleCableCar/28_r.svg", + "staticwebassets/icons/VehicleCar/16_f.svg", + "staticwebassets/icons/VehicleCar/16_r.svg", + "staticwebassets/icons/VehicleCar/20_f.svg", + "staticwebassets/icons/VehicleCar/20_r.svg", + "staticwebassets/icons/VehicleCar/24_f.svg", + "staticwebassets/icons/VehicleCar/24_r.svg", + "staticwebassets/icons/VehicleCar/28_f.svg", + "staticwebassets/icons/VehicleCar/28_r.svg", + "staticwebassets/icons/VehicleCar/32_f.svg", + "staticwebassets/icons/VehicleCar/32_r.svg", + "staticwebassets/icons/VehicleCar/48_f.svg", + "staticwebassets/icons/VehicleCar/48_r.svg", + "staticwebassets/icons/VehicleCarCollision/16_f.svg", + "staticwebassets/icons/VehicleCarCollision/16_r.svg", + "staticwebassets/icons/VehicleCarCollision/20_f.svg", + "staticwebassets/icons/VehicleCarCollision/20_r.svg", + "staticwebassets/icons/VehicleCarCollision/24_f.svg", + "staticwebassets/icons/VehicleCarCollision/24_r.svg", + "staticwebassets/icons/VehicleCarCollision/28_f.svg", + "staticwebassets/icons/VehicleCarCollision/28_r.svg", + "staticwebassets/icons/VehicleCarCollision/32_f.svg", + "staticwebassets/icons/VehicleCarCollision/32_r.svg", + "staticwebassets/icons/VehicleCarCollision/48_f.svg", + "staticwebassets/icons/VehicleCarCollision/48_r.svg", + "staticwebassets/icons/VehicleCarParking/16_f.svg", + "staticwebassets/icons/VehicleCarParking/16_r.svg", + "staticwebassets/icons/VehicleCarParking/20_f.svg", + "staticwebassets/icons/VehicleCarParking/20_r.svg", + "staticwebassets/icons/VehicleCarParking/24_f.svg", + "staticwebassets/icons/VehicleCarParking/24_r.svg", + "staticwebassets/icons/VehicleCarParking/32_f.svg", + "staticwebassets/icons/VehicleCarParking/32_r.svg", + "staticwebassets/icons/VehicleCarParking/48_f.svg", + "staticwebassets/icons/VehicleCarParking/48_r.svg", + "staticwebassets/icons/VehicleCarProfileLTR/16_f.svg", + "staticwebassets/icons/VehicleCarProfileLTR/16_r.svg", + "staticwebassets/icons/VehicleCarProfileLTR/20_f.svg", + "staticwebassets/icons/VehicleCarProfileLTR/20_r.svg", + "staticwebassets/icons/VehicleCarProfileLTR/24_f.svg", + "staticwebassets/icons/VehicleCarProfileLTR/24_r.svg", + "staticwebassets/icons/VehicleCarProfileLTRClock/16_f.svg", + "staticwebassets/icons/VehicleCarProfileLTRClock/16_r.svg", + "staticwebassets/icons/VehicleCarProfileLTRClock/20_f.svg", + "staticwebassets/icons/VehicleCarProfileLTRClock/20_r.svg", + "staticwebassets/icons/VehicleCarProfileLTRClock/24_f.svg", + "staticwebassets/icons/VehicleCarProfileLTRClock/24_r.svg", + "staticwebassets/icons/VehicleCarProfileRTL/16_f.svg", + "staticwebassets/icons/VehicleCarProfileRTL/16_r.svg", + "staticwebassets/icons/VehicleCarProfileRTL/20_f.svg", + "staticwebassets/icons/VehicleCarProfileRTL/20_r.svg", + "staticwebassets/icons/VehicleCarProfileRTL/24_f.svg", + "staticwebassets/icons/VehicleCarProfileRTL/24_r.svg", + "staticwebassets/icons/VehicleShip/16_f.svg", + "staticwebassets/icons/VehicleShip/16_r.svg", + "staticwebassets/icons/VehicleShip/20_f.svg", + "staticwebassets/icons/VehicleShip/20_r.svg", + "staticwebassets/icons/VehicleShip/24_f.svg", + "staticwebassets/icons/VehicleShip/24_r.svg", + "staticwebassets/icons/VehicleSubway/16_f.svg", + "staticwebassets/icons/VehicleSubway/16_r.svg", + "staticwebassets/icons/VehicleSubway/20_f.svg", + "staticwebassets/icons/VehicleSubway/20_r.svg", + "staticwebassets/icons/VehicleSubway/24_f.svg", + "staticwebassets/icons/VehicleSubway/24_r.svg", + "staticwebassets/icons/VehicleTruck/16_f.svg", + "staticwebassets/icons/VehicleTruck/16_r.svg", + "staticwebassets/icons/VehicleTruck/20_f.svg", + "staticwebassets/icons/VehicleTruck/20_r.svg", + "staticwebassets/icons/VehicleTruck/24_f.svg", + "staticwebassets/icons/VehicleTruck/24_r.svg", + "staticwebassets/icons/VehicleTruckBag/20_f.svg", + "staticwebassets/icons/VehicleTruckBag/20_r.svg", + "staticwebassets/icons/VehicleTruckBag/24_f.svg", + "staticwebassets/icons/VehicleTruckBag/24_r.svg", + "staticwebassets/icons/VehicleTruckCube/20_f.svg", + "staticwebassets/icons/VehicleTruckCube/20_r.svg", + "staticwebassets/icons/VehicleTruckCube/24_f.svg", + "staticwebassets/icons/VehicleTruckCube/24_r.svg", + "staticwebassets/icons/VehicleTruckProfile/16_f.svg", + "staticwebassets/icons/VehicleTruckProfile/16_r.svg", + "staticwebassets/icons/VehicleTruckProfile/20_f.svg", + "staticwebassets/icons/VehicleTruckProfile/20_r.svg", + "staticwebassets/icons/VehicleTruckProfile/24_f.svg", + "staticwebassets/icons/VehicleTruckProfile/24_r.svg", + "staticwebassets/icons/Video/16_f.svg", + "staticwebassets/icons/Video/16_r.svg", + "staticwebassets/icons/Video/20_f.svg", + "staticwebassets/icons/Video/20_r.svg", + "staticwebassets/icons/Video/24_f.svg", + "staticwebassets/icons/Video/24_r.svg", + "staticwebassets/icons/Video/28_f.svg", + "staticwebassets/icons/Video/28_r.svg", + "staticwebassets/icons/Video/32_f.svg", + "staticwebassets/icons/Video/32_r.svg", + "staticwebassets/icons/Video/48_f.svg", + "staticwebassets/icons/Video/48_r.svg", + "staticwebassets/icons/Video360/20_f.svg", + "staticwebassets/icons/Video360/20_r.svg", + "staticwebassets/icons/Video360/24_f.svg", + "staticwebassets/icons/Video360/24_r.svg", + "staticwebassets/icons/Video360Off/20_f.svg", + "staticwebassets/icons/Video360Off/20_r.svg", + "staticwebassets/icons/VideoAdd/20_f.svg", + "staticwebassets/icons/VideoAdd/20_r.svg", + "staticwebassets/icons/VideoAdd/24_f.svg", + "staticwebassets/icons/VideoAdd/24_r.svg", + "staticwebassets/icons/VideoBackgroundEffect/16_f.svg", + "staticwebassets/icons/VideoBackgroundEffect/16_r.svg", + "staticwebassets/icons/VideoBackgroundEffect/20_f.svg", + "staticwebassets/icons/VideoBackgroundEffect/20_r.svg", + "staticwebassets/icons/VideoBackgroundEffect/24_f.svg", + "staticwebassets/icons/VideoBackgroundEffect/24_r.svg", + "staticwebassets/icons/VideoBackgroundEffect/28_f.svg", + "staticwebassets/icons/VideoBackgroundEffect/28_r.svg", + "staticwebassets/icons/VideoBackgroundEffect/32_f.svg", + "staticwebassets/icons/VideoBackgroundEffect/32_r.svg", + "staticwebassets/icons/VideoBackgroundEffect/48_f.svg", + "staticwebassets/icons/VideoBackgroundEffect/48_r.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/16_f.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/16_r.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/20_f.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/20_r.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/24_f.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/24_r.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/28_f.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/28_r.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/32_f.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/32_r.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/48_f.svg", + "staticwebassets/icons/VideoBackgroundEffectHorizontal/48_r.svg", + "staticwebassets/icons/VideoChat/16_f.svg", + "staticwebassets/icons/VideoChat/16_r.svg", + "staticwebassets/icons/VideoChat/20_f.svg", + "staticwebassets/icons/VideoChat/20_r.svg", + "staticwebassets/icons/VideoChat/24_f.svg", + "staticwebassets/icons/VideoChat/24_r.svg", + "staticwebassets/icons/VideoChat/28_f.svg", + "staticwebassets/icons/VideoChat/28_r.svg", + "staticwebassets/icons/VideoChat/32_f.svg", + "staticwebassets/icons/VideoChat/32_r.svg", + "staticwebassets/icons/VideoChat/48_f.svg", + "staticwebassets/icons/VideoChat/48_r.svg", + "staticwebassets/icons/VideoClip/16_f.svg", + "staticwebassets/icons/VideoClip/16_r.svg", + "staticwebassets/icons/VideoClip/20_f.svg", + "staticwebassets/icons/VideoClip/20_r.svg", + "staticwebassets/icons/VideoClip/24_f.svg", + "staticwebassets/icons/VideoClip/24_r.svg", + "staticwebassets/icons/VideoClip/28_f.svg", + "staticwebassets/icons/VideoClip/28_r.svg", + "staticwebassets/icons/VideoClip/32_f.svg", + "staticwebassets/icons/VideoClip/32_r.svg", + "staticwebassets/icons/VideoClip/48_f.svg", + "staticwebassets/icons/VideoClip/48_r.svg", + "staticwebassets/icons/VideoClipMultiple/16_f.svg", + "staticwebassets/icons/VideoClipMultiple/16_r.svg", + "staticwebassets/icons/VideoClipMultiple/20_f.svg", + "staticwebassets/icons/VideoClipMultiple/20_r.svg", + "staticwebassets/icons/VideoClipMultiple/24_f.svg", + "staticwebassets/icons/VideoClipMultiple/24_r.svg", + "staticwebassets/icons/VideoClipOff/16_f.svg", + "staticwebassets/icons/VideoClipOff/16_r.svg", + "staticwebassets/icons/VideoClipOff/20_f.svg", + "staticwebassets/icons/VideoClipOff/20_r.svg", + "staticwebassets/icons/VideoClipOff/24_f.svg", + "staticwebassets/icons/VideoClipOff/24_r.svg", + "staticwebassets/icons/VideoOff/20_f.svg", + "staticwebassets/icons/VideoOff/20_r.svg", + "staticwebassets/icons/VideoOff/24_f.svg", + "staticwebassets/icons/VideoOff/24_r.svg", + "staticwebassets/icons/VideoOff/28_f.svg", + "staticwebassets/icons/VideoOff/28_r.svg", + "staticwebassets/icons/VideoOff/32_f.svg", + "staticwebassets/icons/VideoOff/32_r.svg", + "staticwebassets/icons/VideoOff/48_f.svg", + "staticwebassets/icons/VideoOff/48_r.svg", + "staticwebassets/icons/VideoPeople/32_f.svg", + "staticwebassets/icons/VideoPeople/32_r.svg", + "staticwebassets/icons/VideoPerson/12_f.svg", + "staticwebassets/icons/VideoPerson/12_r.svg", + "staticwebassets/icons/VideoPerson/16_f.svg", + "staticwebassets/icons/VideoPerson/16_r.svg", + "staticwebassets/icons/VideoPerson/20_f.svg", + "staticwebassets/icons/VideoPerson/20_r.svg", + "staticwebassets/icons/VideoPerson/24_f.svg", + "staticwebassets/icons/VideoPerson/24_r.svg", + "staticwebassets/icons/VideoPerson/28_f.svg", + "staticwebassets/icons/VideoPerson/28_r.svg", + "staticwebassets/icons/VideoPerson/32_f.svg", + "staticwebassets/icons/VideoPerson/32_r.svg", + "staticwebassets/icons/VideoPerson/48_f.svg", + "staticwebassets/icons/VideoPerson/48_r.svg", + "staticwebassets/icons/VideoPersonCall/16_f.svg", + "staticwebassets/icons/VideoPersonCall/16_r.svg", + "staticwebassets/icons/VideoPersonCall/20_f.svg", + "staticwebassets/icons/VideoPersonCall/20_r.svg", + "staticwebassets/icons/VideoPersonCall/24_f.svg", + "staticwebassets/icons/VideoPersonCall/24_r.svg", + "staticwebassets/icons/VideoPersonCall/32_f.svg", + "staticwebassets/icons/VideoPersonCall/32_r.svg", + "staticwebassets/icons/VideoPersonClock/16_f.svg", + "staticwebassets/icons/VideoPersonClock/16_r.svg", + "staticwebassets/icons/VideoPersonClock/20_f.svg", + "staticwebassets/icons/VideoPersonClock/20_r.svg", + "staticwebassets/icons/VideoPersonClock/24_f.svg", + "staticwebassets/icons/VideoPersonClock/24_r.svg", + "staticwebassets/icons/VideoPersonClock/28_f.svg", + "staticwebassets/icons/VideoPersonClock/28_r.svg", + "staticwebassets/icons/VideoPersonClock/32_f.svg", + "staticwebassets/icons/VideoPersonClock/32_r.svg", + "staticwebassets/icons/VideoPersonClock/48_f.svg", + "staticwebassets/icons/VideoPersonClock/48_r.svg", + "staticwebassets/icons/VideoPersonOff/20_f.svg", + "staticwebassets/icons/VideoPersonOff/20_r.svg", + "staticwebassets/icons/VideoPersonOff/24_f.svg", + "staticwebassets/icons/VideoPersonOff/24_r.svg", + "staticwebassets/icons/VideoPersonSparkle/16_f.svg", + "staticwebassets/icons/VideoPersonSparkle/16_r.svg", + "staticwebassets/icons/VideoPersonSparkle/20_f.svg", + "staticwebassets/icons/VideoPersonSparkle/20_r.svg", + "staticwebassets/icons/VideoPersonSparkle/24_f.svg", + "staticwebassets/icons/VideoPersonSparkle/24_r.svg", + "staticwebassets/icons/VideoPersonSparkle/28_f.svg", + "staticwebassets/icons/VideoPersonSparkle/28_r.svg", + "staticwebassets/icons/VideoPersonSparkle/48_f.svg", + "staticwebassets/icons/VideoPersonSparkle/48_r.svg", + "staticwebassets/icons/VideoPersonStar/20_f.svg", + "staticwebassets/icons/VideoPersonStar/20_r.svg", + "staticwebassets/icons/VideoPersonStar/24_f.svg", + "staticwebassets/icons/VideoPersonStar/24_r.svg", + "staticwebassets/icons/VideoPersonStarOff/20_f.svg", + "staticwebassets/icons/VideoPersonStarOff/20_r.svg", + "staticwebassets/icons/VideoPersonStarOff/24_f.svg", + "staticwebassets/icons/VideoPersonStarOff/24_r.svg", + "staticwebassets/icons/VideoPlayPause/20_f.svg", + "staticwebassets/icons/VideoPlayPause/20_r.svg", + "staticwebassets/icons/VideoPlayPause/24_f.svg", + "staticwebassets/icons/VideoPlayPause/24_r.svg", + "staticwebassets/icons/VideoProhibited/16_f.svg", + "staticwebassets/icons/VideoProhibited/16_r.svg", + "staticwebassets/icons/VideoProhibited/20_f.svg", + "staticwebassets/icons/VideoProhibited/20_r.svg", + "staticwebassets/icons/VideoProhibited/24_f.svg", + "staticwebassets/icons/VideoProhibited/24_r.svg", + "staticwebassets/icons/VideoProhibited/28_f.svg", + "staticwebassets/icons/VideoProhibited/28_r.svg", + "staticwebassets/icons/VideoRecording/20_f.svg", + "staticwebassets/icons/VideoRecording/20_r.svg", + "staticwebassets/icons/VideoSecurity/20_f.svg", + "staticwebassets/icons/VideoSecurity/20_r.svg", + "staticwebassets/icons/VideoSecurity/24_f.svg", + "staticwebassets/icons/VideoSecurity/24_r.svg", + "staticwebassets/icons/VideoSwitch/20_f.svg", + "staticwebassets/icons/VideoSwitch/20_r.svg", + "staticwebassets/icons/VideoSwitch/24_f.svg", + "staticwebassets/icons/VideoSwitch/24_r.svg", + "staticwebassets/icons/VideoSync/20_f.svg", + "staticwebassets/icons/VideoSync/20_r.svg", + "staticwebassets/icons/ViewDesktop/20_f.svg", + "staticwebassets/icons/ViewDesktop/20_r.svg", + "staticwebassets/icons/ViewDesktop/24_f.svg", + "staticwebassets/icons/ViewDesktop/24_r.svg", + "staticwebassets/icons/ViewDesktopMobile/20_f.svg", + "staticwebassets/icons/ViewDesktopMobile/20_r.svg", + "staticwebassets/icons/ViewDesktopMobile/24_f.svg", + "staticwebassets/icons/ViewDesktopMobile/24_r.svg", + "staticwebassets/icons/VirtualNetwork/20_f.svg", + "staticwebassets/icons/VirtualNetwork/20_r.svg", + "staticwebassets/icons/VirtualNetworkToolbox/20_f.svg", + "staticwebassets/icons/VirtualNetworkToolbox/20_r.svg", + "staticwebassets/icons/Voicemail/16_f.svg", + "staticwebassets/icons/Voicemail/16_r.svg", + "staticwebassets/icons/Voicemail/20_f.svg", + "staticwebassets/icons/Voicemail/20_r.svg", + "staticwebassets/icons/Voicemail/24_f.svg", + "staticwebassets/icons/Voicemail/24_r.svg", + "staticwebassets/icons/Voicemail/28_f.svg", + "staticwebassets/icons/Voicemail/28_r.svg", + "staticwebassets/icons/Voicemail/32_f.svg", + "staticwebassets/icons/Voicemail/32_r.svg", + "staticwebassets/icons/Voicemail/48_f.svg", + "staticwebassets/icons/Voicemail/48_r.svg", + "staticwebassets/icons/VoicemailArrowBack/16_f.svg", + "staticwebassets/icons/VoicemailArrowBack/16_r.svg", + "staticwebassets/icons/VoicemailArrowBack/20_f.svg", + "staticwebassets/icons/VoicemailArrowBack/20_r.svg", + "staticwebassets/icons/VoicemailArrowForward/16_f.svg", + "staticwebassets/icons/VoicemailArrowForward/16_r.svg", + "staticwebassets/icons/VoicemailArrowForward/20_f.svg", + "staticwebassets/icons/VoicemailArrowForward/20_r.svg", + "staticwebassets/icons/VoicemailArrowSubtract/20_f.svg", + "staticwebassets/icons/VoicemailArrowSubtract/20_r.svg", + "staticwebassets/icons/VoicemailSubtract/16_f.svg", + "staticwebassets/icons/VoicemailSubtract/16_r.svg", + "staticwebassets/icons/VoicemailSubtract/20_f.svg", + "staticwebassets/icons/VoicemailSubtract/20_r.svg", + "staticwebassets/icons/Vote/20_f.svg", + "staticwebassets/icons/Vote/20_r.svg", + "staticwebassets/icons/Vote/24_f.svg", + "staticwebassets/icons/Vote/24_r.svg", + "staticwebassets/icons/WalkieTalkie/20_f.svg", + "staticwebassets/icons/WalkieTalkie/20_r.svg", + "staticwebassets/icons/WalkieTalkie/24_f.svg", + "staticwebassets/icons/WalkieTalkie/24_r.svg", + "staticwebassets/icons/WalkieTalkie/28_f.svg", + "staticwebassets/icons/WalkieTalkie/28_r.svg", + "staticwebassets/icons/Wallet/16_f.svg", + "staticwebassets/icons/Wallet/16_r.svg", + "staticwebassets/icons/Wallet/20_f.svg", + "staticwebassets/icons/Wallet/20_r.svg", + "staticwebassets/icons/Wallet/24_f.svg", + "staticwebassets/icons/Wallet/24_r.svg", + "staticwebassets/icons/Wallet/28_f.svg", + "staticwebassets/icons/Wallet/28_r.svg", + "staticwebassets/icons/Wallet/32_f.svg", + "staticwebassets/icons/Wallet/32_r.svg", + "staticwebassets/icons/Wallet/48_f.svg", + "staticwebassets/icons/Wallet/48_r.svg", + "staticwebassets/icons/WalletCreditCard/16_f.svg", + "staticwebassets/icons/WalletCreditCard/16_r.svg", + "staticwebassets/icons/WalletCreditCard/20_f.svg", + "staticwebassets/icons/WalletCreditCard/20_r.svg", + "staticwebassets/icons/WalletCreditCard/24_f.svg", + "staticwebassets/icons/WalletCreditCard/24_r.svg", + "staticwebassets/icons/WalletCreditCard/32_f.svg", + "staticwebassets/icons/WalletCreditCard/32_r.svg", + "staticwebassets/icons/Wallpaper/20_f.svg", + "staticwebassets/icons/Wallpaper/20_r.svg", + "staticwebassets/icons/Wallpaper/24_f.svg", + "staticwebassets/icons/Wallpaper/24_r.svg", + "staticwebassets/icons/Wand/16_f.svg", + "staticwebassets/icons/Wand/16_r.svg", + "staticwebassets/icons/Wand/20_f.svg", + "staticwebassets/icons/Wand/20_r.svg", + "staticwebassets/icons/Wand/24_f.svg", + "staticwebassets/icons/Wand/24_r.svg", + "staticwebassets/icons/Wand/28_f.svg", + "staticwebassets/icons/Wand/28_r.svg", + "staticwebassets/icons/Wand/48_f.svg", + "staticwebassets/icons/Wand/48_r.svg", + "staticwebassets/icons/Warning/12_f.svg", + "staticwebassets/icons/Warning/12_r.svg", + "staticwebassets/icons/Warning/16_f.svg", + "staticwebassets/icons/Warning/16_r.svg", + "staticwebassets/icons/Warning/20_f.svg", + "staticwebassets/icons/Warning/20_r.svg", + "staticwebassets/icons/Warning/24_f.svg", + "staticwebassets/icons/Warning/24_r.svg", + "staticwebassets/icons/Warning/28_f.svg", + "staticwebassets/icons/Warning/28_r.svg", + "staticwebassets/icons/WarningShield/20_f.svg", + "staticwebassets/icons/WarningShield/20_r.svg", + "staticwebassets/icons/Washer/20_f.svg", + "staticwebassets/icons/Washer/20_r.svg", + "staticwebassets/icons/Washer/24_f.svg", + "staticwebassets/icons/Washer/24_r.svg", + "staticwebassets/icons/Washer/32_f.svg", + "staticwebassets/icons/Washer/32_r.svg", + "staticwebassets/icons/Washer/48_f.svg", + "staticwebassets/icons/Washer/48_r.svg", + "staticwebassets/icons/Water/16_f.svg", + "staticwebassets/icons/Water/16_r.svg", + "staticwebassets/icons/Water/20_f.svg", + "staticwebassets/icons/Water/20_r.svg", + "staticwebassets/icons/Water/24_f.svg", + "staticwebassets/icons/Water/24_r.svg", + "staticwebassets/icons/Water/32_f.svg", + "staticwebassets/icons/Water/32_r.svg", + "staticwebassets/icons/Water/48_f.svg", + "staticwebassets/icons/Water/48_r.svg", + "staticwebassets/icons/WeatherBlowingSnow/20_f.svg", + "staticwebassets/icons/WeatherBlowingSnow/20_r.svg", + "staticwebassets/icons/WeatherBlowingSnow/24_f.svg", + "staticwebassets/icons/WeatherBlowingSnow/24_r.svg", + "staticwebassets/icons/WeatherBlowingSnow/48_f.svg", + "staticwebassets/icons/WeatherBlowingSnow/48_r.svg", + "staticwebassets/icons/WeatherCloudy/20_f.svg", + "staticwebassets/icons/WeatherCloudy/20_r.svg", + "staticwebassets/icons/WeatherCloudy/24_f.svg", + "staticwebassets/icons/WeatherCloudy/24_r.svg", + "staticwebassets/icons/WeatherCloudy/48_f.svg", + "staticwebassets/icons/WeatherCloudy/48_r.svg", + "staticwebassets/icons/WeatherDrizzle/20_f.svg", + "staticwebassets/icons/WeatherDrizzle/20_r.svg", + "staticwebassets/icons/WeatherDrizzle/24_f.svg", + "staticwebassets/icons/WeatherDrizzle/24_r.svg", + "staticwebassets/icons/WeatherDrizzle/48_f.svg", + "staticwebassets/icons/WeatherDrizzle/48_r.svg", + "staticwebassets/icons/WeatherDuststorm/20_f.svg", + "staticwebassets/icons/WeatherDuststorm/20_r.svg", + "staticwebassets/icons/WeatherDuststorm/24_f.svg", + "staticwebassets/icons/WeatherDuststorm/24_r.svg", + "staticwebassets/icons/WeatherDuststorm/48_f.svg", + "staticwebassets/icons/WeatherDuststorm/48_r.svg", + "staticwebassets/icons/WeatherFog/20_f.svg", + "staticwebassets/icons/WeatherFog/20_r.svg", + "staticwebassets/icons/WeatherFog/24_f.svg", + "staticwebassets/icons/WeatherFog/24_r.svg", + "staticwebassets/icons/WeatherFog/48_f.svg", + "staticwebassets/icons/WeatherFog/48_r.svg", + "staticwebassets/icons/WeatherHailDay/20_f.svg", + "staticwebassets/icons/WeatherHailDay/20_r.svg", + "staticwebassets/icons/WeatherHailDay/24_f.svg", + "staticwebassets/icons/WeatherHailDay/24_r.svg", + "staticwebassets/icons/WeatherHailDay/48_f.svg", + "staticwebassets/icons/WeatherHailDay/48_r.svg", + "staticwebassets/icons/WeatherHailNight/20_f.svg", + "staticwebassets/icons/WeatherHailNight/20_r.svg", + "staticwebassets/icons/WeatherHailNight/24_f.svg", + "staticwebassets/icons/WeatherHailNight/24_r.svg", + "staticwebassets/icons/WeatherHailNight/48_f.svg", + "staticwebassets/icons/WeatherHailNight/48_r.svg", + "staticwebassets/icons/WeatherHaze/20_f.svg", + "staticwebassets/icons/WeatherHaze/20_r.svg", + "staticwebassets/icons/WeatherHaze/24_f.svg", + "staticwebassets/icons/WeatherHaze/24_r.svg", + "staticwebassets/icons/WeatherHaze/48_f.svg", + "staticwebassets/icons/WeatherHaze/48_r.svg", + "staticwebassets/icons/WeatherMoon/16_f.svg", + "staticwebassets/icons/WeatherMoon/16_r.svg", + "staticwebassets/icons/WeatherMoon/20_f.svg", + "staticwebassets/icons/WeatherMoon/20_r.svg", + "staticwebassets/icons/WeatherMoon/24_f.svg", + "staticwebassets/icons/WeatherMoon/24_r.svg", + "staticwebassets/icons/WeatherMoon/28_f.svg", + "staticwebassets/icons/WeatherMoon/28_r.svg", + "staticwebassets/icons/WeatherMoon/48_f.svg", + "staticwebassets/icons/WeatherMoon/48_r.svg", + "staticwebassets/icons/WeatherMoonOff/16_f.svg", + "staticwebassets/icons/WeatherMoonOff/16_r.svg", + "staticwebassets/icons/WeatherMoonOff/20_f.svg", + "staticwebassets/icons/WeatherMoonOff/20_r.svg", + "staticwebassets/icons/WeatherMoonOff/24_f.svg", + "staticwebassets/icons/WeatherMoonOff/24_r.svg", + "staticwebassets/icons/WeatherMoonOff/28_f.svg", + "staticwebassets/icons/WeatherMoonOff/28_r.svg", + "staticwebassets/icons/WeatherMoonOff/48_f.svg", + "staticwebassets/icons/WeatherMoonOff/48_r.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/16_f.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/16_r.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/20_f.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/20_r.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/24_f.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/24_r.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/48_f.svg", + "staticwebassets/icons/WeatherPartlyCloudyDay/48_r.svg", + "staticwebassets/icons/WeatherPartlyCloudyNight/20_f.svg", + "staticwebassets/icons/WeatherPartlyCloudyNight/20_r.svg", + "staticwebassets/icons/WeatherPartlyCloudyNight/24_f.svg", + "staticwebassets/icons/WeatherPartlyCloudyNight/24_r.svg", + "staticwebassets/icons/WeatherPartlyCloudyNight/48_f.svg", + "staticwebassets/icons/WeatherPartlyCloudyNight/48_r.svg", + "staticwebassets/icons/WeatherRain/20_f.svg", + "staticwebassets/icons/WeatherRain/20_r.svg", + "staticwebassets/icons/WeatherRain/24_f.svg", + "staticwebassets/icons/WeatherRain/24_r.svg", + "staticwebassets/icons/WeatherRain/48_f.svg", + "staticwebassets/icons/WeatherRain/48_r.svg", + "staticwebassets/icons/WeatherRainShowersDay/20_f.svg", + "staticwebassets/icons/WeatherRainShowersDay/20_r.svg", + "staticwebassets/icons/WeatherRainShowersDay/24_f.svg", + "staticwebassets/icons/WeatherRainShowersDay/24_r.svg", + "staticwebassets/icons/WeatherRainShowersDay/48_f.svg", + "staticwebassets/icons/WeatherRainShowersDay/48_r.svg", + "staticwebassets/icons/WeatherRainShowersNight/20_f.svg", + "staticwebassets/icons/WeatherRainShowersNight/20_r.svg", + "staticwebassets/icons/WeatherRainShowersNight/24_f.svg", + "staticwebassets/icons/WeatherRainShowersNight/24_r.svg", + "staticwebassets/icons/WeatherRainShowersNight/48_f.svg", + "staticwebassets/icons/WeatherRainShowersNight/48_r.svg", + "staticwebassets/icons/WeatherRainSnow/20_f.svg", + "staticwebassets/icons/WeatherRainSnow/20_r.svg", + "staticwebassets/icons/WeatherRainSnow/24_f.svg", + "staticwebassets/icons/WeatherRainSnow/24_r.svg", + "staticwebassets/icons/WeatherRainSnow/48_f.svg", + "staticwebassets/icons/WeatherRainSnow/48_r.svg", + "staticwebassets/icons/WeatherSnow/20_f.svg", + "staticwebassets/icons/WeatherSnow/20_r.svg", + "staticwebassets/icons/WeatherSnow/24_f.svg", + "staticwebassets/icons/WeatherSnow/24_r.svg", + "staticwebassets/icons/WeatherSnow/48_f.svg", + "staticwebassets/icons/WeatherSnow/48_r.svg", + "staticwebassets/icons/WeatherSnowShowerDay/20_f.svg", + "staticwebassets/icons/WeatherSnowShowerDay/20_r.svg", + "staticwebassets/icons/WeatherSnowShowerDay/24_f.svg", + "staticwebassets/icons/WeatherSnowShowerDay/24_r.svg", + "staticwebassets/icons/WeatherSnowShowerDay/48_f.svg", + "staticwebassets/icons/WeatherSnowShowerDay/48_r.svg", + "staticwebassets/icons/WeatherSnowShowerNight/20_f.svg", + "staticwebassets/icons/WeatherSnowShowerNight/20_r.svg", + "staticwebassets/icons/WeatherSnowShowerNight/24_f.svg", + "staticwebassets/icons/WeatherSnowShowerNight/24_r.svg", + "staticwebassets/icons/WeatherSnowShowerNight/48_f.svg", + "staticwebassets/icons/WeatherSnowShowerNight/48_r.svg", + "staticwebassets/icons/WeatherSnowflake/20_f.svg", + "staticwebassets/icons/WeatherSnowflake/20_r.svg", + "staticwebassets/icons/WeatherSnowflake/24_f.svg", + "staticwebassets/icons/WeatherSnowflake/24_r.svg", + "staticwebassets/icons/WeatherSnowflake/32_f.svg", + "staticwebassets/icons/WeatherSnowflake/32_r.svg", + "staticwebassets/icons/WeatherSnowflake/48_f.svg", + "staticwebassets/icons/WeatherSnowflake/48_r.svg", + "staticwebassets/icons/WeatherSqualls/20_f.svg", + "staticwebassets/icons/WeatherSqualls/20_r.svg", + "staticwebassets/icons/WeatherSqualls/24_f.svg", + "staticwebassets/icons/WeatherSqualls/24_r.svg", + "staticwebassets/icons/WeatherSqualls/48_f.svg", + "staticwebassets/icons/WeatherSqualls/48_r.svg", + "staticwebassets/icons/WeatherSunny/16_f.svg", + "staticwebassets/icons/WeatherSunny/16_r.svg", + "staticwebassets/icons/WeatherSunny/20_f.svg", + "staticwebassets/icons/WeatherSunny/20_r.svg", + "staticwebassets/icons/WeatherSunny/24_f.svg", + "staticwebassets/icons/WeatherSunny/24_r.svg", + "staticwebassets/icons/WeatherSunny/28_f.svg", + "staticwebassets/icons/WeatherSunny/28_r.svg", + "staticwebassets/icons/WeatherSunny/32_f.svg", + "staticwebassets/icons/WeatherSunny/32_r.svg", + "staticwebassets/icons/WeatherSunny/48_f.svg", + "staticwebassets/icons/WeatherSunny/48_r.svg", + "staticwebassets/icons/WeatherSunnyHigh/20_f.svg", + "staticwebassets/icons/WeatherSunnyHigh/20_r.svg", + "staticwebassets/icons/WeatherSunnyHigh/24_f.svg", + "staticwebassets/icons/WeatherSunnyHigh/24_r.svg", + "staticwebassets/icons/WeatherSunnyHigh/48_f.svg", + "staticwebassets/icons/WeatherSunnyHigh/48_r.svg", + "staticwebassets/icons/WeatherSunnyLow/20_f.svg", + "staticwebassets/icons/WeatherSunnyLow/20_r.svg", + "staticwebassets/icons/WeatherSunnyLow/24_f.svg", + "staticwebassets/icons/WeatherSunnyLow/24_r.svg", + "staticwebassets/icons/WeatherSunnyLow/48_f.svg", + "staticwebassets/icons/WeatherSunnyLow/48_r.svg", + "staticwebassets/icons/WeatherThunderstorm/20_f.svg", + "staticwebassets/icons/WeatherThunderstorm/20_r.svg", + "staticwebassets/icons/WeatherThunderstorm/24_f.svg", + "staticwebassets/icons/WeatherThunderstorm/24_r.svg", + "staticwebassets/icons/WeatherThunderstorm/48_f.svg", + "staticwebassets/icons/WeatherThunderstorm/48_r.svg", + "staticwebassets/icons/WebAsset/16_f.svg", + "staticwebassets/icons/WebAsset/16_r.svg", + "staticwebassets/icons/WebAsset/20_f.svg", + "staticwebassets/icons/WebAsset/20_r.svg", + "staticwebassets/icons/WebAsset/24_f.svg", + "staticwebassets/icons/WebAsset/24_r.svg", + "staticwebassets/icons/Whiteboard/20_f.svg", + "staticwebassets/icons/Whiteboard/20_r.svg", + "staticwebassets/icons/Whiteboard/24_f.svg", + "staticwebassets/icons/Whiteboard/24_r.svg", + "staticwebassets/icons/Whiteboard/48_f.svg", + "staticwebassets/icons/Whiteboard/48_r.svg", + "staticwebassets/icons/WiFi1/20_f.svg", + "staticwebassets/icons/WiFi1/20_r.svg", + "staticwebassets/icons/WiFi1/24_f.svg", + "staticwebassets/icons/WiFi1/24_r.svg", + "staticwebassets/icons/WiFi2/20_f.svg", + "staticwebassets/icons/WiFi2/20_r.svg", + "staticwebassets/icons/WiFi2/24_f.svg", + "staticwebassets/icons/WiFi2/24_r.svg", + "staticwebassets/icons/WiFi3/20_f.svg", + "staticwebassets/icons/WiFi3/20_r.svg", + "staticwebassets/icons/WiFi3/24_f.svg", + "staticwebassets/icons/WiFi3/24_r.svg", + "staticwebassets/icons/WiFi4/20_f.svg", + "staticwebassets/icons/WiFi4/20_r.svg", + "staticwebassets/icons/WiFi4/24_f.svg", + "staticwebassets/icons/WiFi4/24_r.svg", + "staticwebassets/icons/WiFiLock/20_f.svg", + "staticwebassets/icons/WiFiLock/20_r.svg", + "staticwebassets/icons/WiFiLock/24_f.svg", + "staticwebassets/icons/WiFiLock/24_r.svg", + "staticwebassets/icons/WiFiOff/20_f.svg", + "staticwebassets/icons/WiFiOff/20_r.svg", + "staticwebassets/icons/WiFiOff/24_f.svg", + "staticwebassets/icons/WiFiOff/24_r.svg", + "staticwebassets/icons/WiFiSettings/20_f.svg", + "staticwebassets/icons/WiFiSettings/20_r.svg", + "staticwebassets/icons/WiFiWarning/20_f.svg", + "staticwebassets/icons/WiFiWarning/20_r.svg", + "staticwebassets/icons/WiFiWarning/24_f.svg", + "staticwebassets/icons/WiFiWarning/24_r.svg", + "staticwebassets/icons/Window/16_f.svg", + "staticwebassets/icons/Window/16_r.svg", + "staticwebassets/icons/Window/20_f.svg", + "staticwebassets/icons/Window/20_r.svg", + "staticwebassets/icons/Window/24_f.svg", + "staticwebassets/icons/Window/24_r.svg", + "staticwebassets/icons/Window/28_f.svg", + "staticwebassets/icons/Window/28_r.svg", + "staticwebassets/icons/Window/32_f.svg", + "staticwebassets/icons/Window/32_r.svg", + "staticwebassets/icons/Window/48_f.svg", + "staticwebassets/icons/Window/48_r.svg", + "staticwebassets/icons/WindowAd/20_f.svg", + "staticwebassets/icons/WindowAd/20_r.svg", + "staticwebassets/icons/WindowAdOff/20_f.svg", + "staticwebassets/icons/WindowAdOff/20_r.svg", + "staticwebassets/icons/WindowAdPerson/20_f.svg", + "staticwebassets/icons/WindowAdPerson/20_r.svg", + "staticwebassets/icons/WindowApps/16_f.svg", + "staticwebassets/icons/WindowApps/16_r.svg", + "staticwebassets/icons/WindowApps/20_f.svg", + "staticwebassets/icons/WindowApps/20_r.svg", + "staticwebassets/icons/WindowApps/24_f.svg", + "staticwebassets/icons/WindowApps/24_r.svg", + "staticwebassets/icons/WindowApps/28_f.svg", + "staticwebassets/icons/WindowApps/28_r.svg", + "staticwebassets/icons/WindowApps/32_f.svg", + "staticwebassets/icons/WindowApps/32_r.svg", + "staticwebassets/icons/WindowApps/48_f.svg", + "staticwebassets/icons/WindowApps/48_r.svg", + "staticwebassets/icons/WindowArrowUp/16_f.svg", + "staticwebassets/icons/WindowArrowUp/16_r.svg", + "staticwebassets/icons/WindowArrowUp/20_f.svg", + "staticwebassets/icons/WindowArrowUp/20_r.svg", + "staticwebassets/icons/WindowArrowUp/24_f.svg", + "staticwebassets/icons/WindowArrowUp/24_r.svg", + "staticwebassets/icons/WindowBulletList/20_f.svg", + "staticwebassets/icons/WindowBulletList/20_r.svg", + "staticwebassets/icons/WindowBulletListAdd/20_f.svg", + "staticwebassets/icons/WindowBulletListAdd/20_r.svg", + "staticwebassets/icons/WindowConsole/20_f.svg", + "staticwebassets/icons/WindowConsole/20_r.svg", + "staticwebassets/icons/WindowDatabase/20_f.svg", + "staticwebassets/icons/WindowDatabase/20_r.svg", + "staticwebassets/icons/WindowDatabase/24_f.svg", + "staticwebassets/icons/WindowDatabase/24_r.svg", + "staticwebassets/icons/WindowDevEdit/16_f.svg", + "staticwebassets/icons/WindowDevEdit/16_r.svg", + "staticwebassets/icons/WindowDevEdit/20_f.svg", + "staticwebassets/icons/WindowDevEdit/20_r.svg", + "staticwebassets/icons/WindowDevTools/16_f.svg", + "staticwebassets/icons/WindowDevTools/16_r.svg", + "staticwebassets/icons/WindowDevTools/20_f.svg", + "staticwebassets/icons/WindowDevTools/20_r.svg", + "staticwebassets/icons/WindowDevTools/24_f.svg", + "staticwebassets/icons/WindowDevTools/24_r.svg", + "staticwebassets/icons/WindowEdit/16_f.svg", + "staticwebassets/icons/WindowEdit/16_r.svg", + "staticwebassets/icons/WindowEdit/20_f.svg", + "staticwebassets/icons/WindowEdit/20_r.svg", + "staticwebassets/icons/WindowHeaderHorizontal/20_f.svg", + "staticwebassets/icons/WindowHeaderHorizontal/20_r.svg", + "staticwebassets/icons/WindowHeaderHorizontalOff/20_f.svg", + "staticwebassets/icons/WindowHeaderHorizontalOff/20_r.svg", + "staticwebassets/icons/WindowHeaderVertical/20_f.svg", + "staticwebassets/icons/WindowHeaderVertical/20_r.svg", + "staticwebassets/icons/WindowInPrivate/20_f.svg", + "staticwebassets/icons/WindowInPrivate/20_r.svg", + "staticwebassets/icons/WindowInPrivateAccount/20_f.svg", + "staticwebassets/icons/WindowInPrivateAccount/20_r.svg", + "staticwebassets/icons/WindowLocationTarget/20_f.svg", + "staticwebassets/icons/WindowLocationTarget/20_r.svg", + "staticwebassets/icons/WindowMultiple/16_f.svg", + "staticwebassets/icons/WindowMultiple/16_r.svg", + "staticwebassets/icons/WindowMultiple/20_f.svg", + "staticwebassets/icons/WindowMultiple/20_r.svg", + "staticwebassets/icons/WindowMultipleSwap/20_f.svg", + "staticwebassets/icons/WindowMultipleSwap/20_r.svg", + "staticwebassets/icons/WindowNew/16_f.svg", + "staticwebassets/icons/WindowNew/16_r.svg", + "staticwebassets/icons/WindowNew/20_f.svg", + "staticwebassets/icons/WindowNew/20_r.svg", + "staticwebassets/icons/WindowNew/24_f.svg", + "staticwebassets/icons/WindowNew/24_r.svg", + "staticwebassets/icons/WindowPlay/20_f.svg", + "staticwebassets/icons/WindowPlay/20_r.svg", + "staticwebassets/icons/WindowSettings/20_f.svg", + "staticwebassets/icons/WindowSettings/20_r.svg", + "staticwebassets/icons/WindowShield/16_f.svg", + "staticwebassets/icons/WindowShield/16_r.svg", + "staticwebassets/icons/WindowShield/20_f.svg", + "staticwebassets/icons/WindowShield/20_r.svg", + "staticwebassets/icons/WindowShield/24_f.svg", + "staticwebassets/icons/WindowShield/24_r.svg", + "staticwebassets/icons/WindowText/20_f.svg", + "staticwebassets/icons/WindowText/20_r.svg", + "staticwebassets/icons/WindowWrench/16_f.svg", + "staticwebassets/icons/WindowWrench/16_r.svg", + "staticwebassets/icons/WindowWrench/20_f.svg", + "staticwebassets/icons/WindowWrench/20_r.svg", + "staticwebassets/icons/WindowWrench/24_f.svg", + "staticwebassets/icons/WindowWrench/24_r.svg", + "staticwebassets/icons/WindowWrench/28_f.svg", + "staticwebassets/icons/WindowWrench/28_r.svg", + "staticwebassets/icons/WindowWrench/32_f.svg", + "staticwebassets/icons/WindowWrench/32_r.svg", + "staticwebassets/icons/WindowWrench/48_f.svg", + "staticwebassets/icons/WindowWrench/48_r.svg", + "staticwebassets/icons/Wrench/16_f.svg", + "staticwebassets/icons/Wrench/16_r.svg", + "staticwebassets/icons/Wrench/20_f.svg", + "staticwebassets/icons/Wrench/20_r.svg", + "staticwebassets/icons/Wrench/24_f.svg", + "staticwebassets/icons/Wrench/24_r.svg", + "staticwebassets/icons/WrenchScrewdriver/20_f.svg", + "staticwebassets/icons/WrenchScrewdriver/20_r.svg", + "staticwebassets/icons/WrenchScrewdriver/24_f.svg", + "staticwebassets/icons/WrenchScrewdriver/24_r.svg", + "staticwebassets/icons/XboxConsole/20_f.svg", + "staticwebassets/icons/XboxConsole/20_r.svg", + "staticwebassets/icons/XboxConsole/24_f.svg", + "staticwebassets/icons/XboxConsole/24_r.svg", + "staticwebassets/icons/XboxController/16_f.svg", + "staticwebassets/icons/XboxController/16_r.svg", + "staticwebassets/icons/XboxController/20_f.svg", + "staticwebassets/icons/XboxController/20_r.svg", + "staticwebassets/icons/XboxController/24_f.svg", + "staticwebassets/icons/XboxController/24_r.svg", + "staticwebassets/icons/XboxController/28_f.svg", + "staticwebassets/icons/XboxController/28_r.svg", + "staticwebassets/icons/XboxController/32_f.svg", + "staticwebassets/icons/XboxController/32_r.svg", + "staticwebassets/icons/XboxController/48_f.svg", + "staticwebassets/icons/XboxController/48_r.svg", + "staticwebassets/icons/XboxControllerError/20_f.svg", + "staticwebassets/icons/XboxControllerError/20_r.svg", + "staticwebassets/icons/XboxControllerError/24_f.svg", + "staticwebassets/icons/XboxControllerError/24_r.svg", + "staticwebassets/icons/XboxControllerError/32_f.svg", + "staticwebassets/icons/XboxControllerError/32_r.svg", + "staticwebassets/icons/XboxControllerError/48_f.svg", + "staticwebassets/icons/XboxControllerError/48_r.svg", + "staticwebassets/icons/Xray/20_f.svg", + "staticwebassets/icons/Xray/20_r.svg", + "staticwebassets/icons/Xray/24_f.svg", + "staticwebassets/icons/Xray/24_r.svg", + "staticwebassets/icons/ZoomFit/16_f.svg", + "staticwebassets/icons/ZoomFit/16_r.svg", + "staticwebassets/icons/ZoomFit/20_f.svg", + "staticwebassets/icons/ZoomFit/20_r.svg", + "staticwebassets/icons/ZoomFit/24_f.svg", + "staticwebassets/icons/ZoomFit/24_r.svg", + "staticwebassets/icons/ZoomIn/16_f.svg", + "staticwebassets/icons/ZoomIn/16_r.svg", + "staticwebassets/icons/ZoomIn/20_f.svg", + "staticwebassets/icons/ZoomIn/20_r.svg", + "staticwebassets/icons/ZoomIn/24_f.svg", + "staticwebassets/icons/ZoomIn/24_r.svg", + "staticwebassets/icons/ZoomOut/16_f.svg", + "staticwebassets/icons/ZoomOut/16_r.svg", + "staticwebassets/icons/ZoomOut/20_f.svg", + "staticwebassets/icons/ZoomOut/20_r.svg", + "staticwebassets/icons/ZoomOut/24_f.svg", + "staticwebassets/icons/ZoomOut/24_r.svg", + "staticwebassets/icons/iOSArrowLTR/24_f.svg", + "staticwebassets/icons/iOSArrowLTR/24_r.svg", + "staticwebassets/icons/iOSArrowRTL/24_f.svg", + "staticwebassets/icons/iOSArrowRTL/24_r.svg", + "staticwebassets/icons/iOSChevronRight/20_f.svg", + "staticwebassets/icons/iOSChevronRight/20_r.svg", + "staticwebassets/js/CacheStorageAccessor.js", + "staticwebassets/js/web-components.js", + "staticwebassets/js/web-components.min.js" + ] + }, + "Microsoft.Graph/5.9.0": { + "sha512": "QcUsq9jbagwhalqji7LIGJtajq+GaNHDDfXki+WTf4ivKJXzE18wFMJZ9/43skL5/TC4UdVTWJOCLO+f3apu/A==", + "type": "package", + "path": "microsoft.graph/5.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/netstandard2.0/Microsoft.Graph.dll", + "lib/netstandard2.0/Microsoft.Graph.xml", + "lib/netstandard2.1/Microsoft.Graph.dll", + "lib/netstandard2.1/Microsoft.Graph.xml", + "microsoft.graph.5.9.0.nupkg.sha512", + "microsoft.graph.nuspec" + ] + }, + "Microsoft.Graph.Beta/5.32.0-preview": { + "sha512": "6YH/Wersiw+kLNELCLE4sVlDQwqKd6P4Z9phb+IVM0bwGro4jCJ0xmMP1c2JeB+H0MFOdvFbLjxDcMBwsy/TeQ==", + "type": "package", + "path": "microsoft.graph.beta/5.32.0-preview", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/netstandard2.0/Microsoft.Graph.Beta.dll", + "lib/netstandard2.0/Microsoft.Graph.Beta.xml", + "lib/netstandard2.1/Microsoft.Graph.Beta.dll", + "lib/netstandard2.1/Microsoft.Graph.Beta.xml", + "microsoft.graph.beta.5.32.0-preview.nupkg.sha512", + "microsoft.graph.beta.nuspec" + ] + }, + "Microsoft.Graph.Core/3.0.6": { + "sha512": "hSrhDyO34D2PdJSzQw6m+SiFoPXVYh8f69OchisNbQGNnVksaoWAlHVE2kkUS2ZVHhLZZrhSMBjaF+7rIhPizA==", + "type": "package", + "path": "microsoft.graph.core/3.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "lib/net462/Microsoft.Graph.Core.dll", + "lib/net462/Microsoft.Graph.Core.xml", + "lib/net6.0-android31.0/Microsoft.Graph.Core.dll", + "lib/net6.0-android31.0/Microsoft.Graph.Core.xml", + "lib/net6.0-ios16.1/Microsoft.Graph.Core.dll", + "lib/net6.0-ios16.1/Microsoft.Graph.Core.xml", + "lib/net6.0-maccatalyst16.1/Microsoft.Graph.Core.dll", + "lib/net6.0-maccatalyst16.1/Microsoft.Graph.Core.xml", + "lib/net6.0-macos13.0/Microsoft.Graph.Core.dll", + "lib/net6.0-macos13.0/Microsoft.Graph.Core.xml", + "lib/net6.0-windows7.0/Microsoft.Graph.Core.dll", + "lib/net6.0-windows7.0/Microsoft.Graph.Core.xml", + "lib/net6.0/Microsoft.Graph.Core.dll", + "lib/net6.0/Microsoft.Graph.Core.xml", + "lib/netstandard2.0/Microsoft.Graph.Core.dll", + "lib/netstandard2.0/Microsoft.Graph.Core.xml", + "microsoft.graph.core.3.0.6.nupkg.sha512", + "microsoft.graph.core.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.29.0": { + "sha512": "qBEGruUGU5YkqV58ykpbtT5oUWzChe+xVy/siPFPzB4KydqDv6r91ElbiifIn9ncAceFtuEkIUQWav76lg7e0A==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.29.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.29.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.29.0": { + "sha512": "lJRNpOKsPqCSf1DRDlWUsM272DQKhfLtU7dKAVOnJBsN5z1wP5lncdY1RqC5uAMdGspsyjSLe0qs1aWl+lIGZQ==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.29.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.29.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.29.0": { + "sha512": "71GkXXyBNnIzs2Ybgi7FamQSrieVNPo+FLKECnFQOOgfIZdJ4jz5O3kBY7wIj4l8GbD+nKZkWYvcl6/Yk5up5g==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.29.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.29.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.29.0": { + "sha512": "5jLB91/C6+UZ+zYA3XXa9WFN1sKmvHGtQjom1cwFar4K/GkykJk/hVmVwlXLVR0oqCErsg8Bw+tXTxACEd5p5Q==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.29.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.29.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.29.0": { + "sha512": "FrmS/m+RLTgQYK+nKisOJYNiLuBe/TWw6SuDGGvc6dCZ02xb6NUlwOwDrxEM4ylSnMxQTuysPR81QbswHG81mA==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.29.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.29.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.29.0": { + "sha512": "llkQIhO3E/+7iXjGywJmBUe+kdyygsFo2RGlzFEGxPQRN7sgZDGk9pM6aJ/aFM3oQeugKWfM30wPFMgT69FXeQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.29.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.29.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.JSInterop/7.0.5": { + "sha512": "2kXMXlpGmlgLaEMv7k1YzUsPdEVb42PWyIt/46bX0BUMcz1dmFFyCiPJK1jk64t+Pwf3GGP7ykCyxOgB79mz2w==", + "type": "package", + "path": "microsoft.jsinterop/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0/Microsoft.JSInterop.dll", + "lib/net7.0/Microsoft.JSInterop.xml", + "microsoft.jsinterop.7.0.5.nupkg.sha512", + "microsoft.jsinterop.nuspec" + ] + }, + "Microsoft.JSInterop.WebAssembly/7.0.5": { + "sha512": "8u+duxlRWLTGfmJBt9KYOi306ZMppYNRMo293ydqpiMzZwm2DUrw4CmRV6l/5F4/QQwyfkObIzHWdsHnNgHpYQ==", + "type": "package", + "path": "microsoft.jsinterop.webassembly/7.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.txt", + "lib/net7.0/Microsoft.JSInterop.WebAssembly.dll", + "lib/net7.0/Microsoft.JSInterop.WebAssembly.xml", + "microsoft.jsinterop.webassembly.7.0.5.nupkg.sha512", + "microsoft.jsinterop.webassembly.nuspec" + ] + }, + "Microsoft.Kiota.Abstractions/1.1.1": { + "sha512": "CGvpUllcbVpk8cMTNpezkTGR09h1BExazuKujWnOUO76f+uDECbs1VKVfymDZ4A/Pr35QMk+rHiGHYjNioRb1g==", + "type": "package", + "path": "microsoft.kiota.abstractions/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "lib/netstandard2.0/Microsoft.Kiota.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Kiota.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Kiota.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Kiota.Abstractions.xml", + "microsoft.kiota.abstractions.1.1.1.nupkg.sha512", + "microsoft.kiota.abstractions.nuspec" + ] + }, + "Microsoft.Kiota.Authentication.Azure/1.0.2": { + "sha512": "71ypENz5SzFdTETt8ydvyKGw6HsId8Ey/B0Ij1uc4CMQ1OI+v8ukzW6BBPeUXbhj5qEEBW41/aVQ1AxK+vn8fg==", + "type": "package", + "path": "microsoft.kiota.authentication.azure/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "lib/netstandard2.0/Microsoft.Kiota.Authentication.Azure.dll", + "lib/netstandard2.0/Microsoft.Kiota.Authentication.Azure.xml", + "lib/netstandard2.1/Microsoft.Kiota.Authentication.Azure.dll", + "lib/netstandard2.1/Microsoft.Kiota.Authentication.Azure.xml", + "microsoft.kiota.authentication.azure.1.0.2.nupkg.sha512", + "microsoft.kiota.authentication.azure.nuspec" + ] + }, + "Microsoft.Kiota.Http.HttpClientLibrary/1.0.2": { + "sha512": "MSIMzp0BtkNQZWSDzvzu2V3BY041JhFCTvsLW8fLLa1l1Dcg8YoNvfdXK4EakrZPgDZaXntVkbhl3LOpyV00vg==", + "type": "package", + "path": "microsoft.kiota.http.httpclientlibrary/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "lib/netstandard2.0/Microsoft.Kiota.Http.HttpClientLibrary.dll", + "lib/netstandard2.0/Microsoft.Kiota.Http.HttpClientLibrary.xml", + "lib/netstandard2.1/Microsoft.Kiota.Http.HttpClientLibrary.dll", + "lib/netstandard2.1/Microsoft.Kiota.Http.HttpClientLibrary.xml", + "microsoft.kiota.http.httpclientlibrary.1.0.2.nupkg.sha512", + "microsoft.kiota.http.httpclientlibrary.nuspec" + ] + }, + "Microsoft.Kiota.Serialization.Form/1.0.1": { + "sha512": "o6CHBpiguOdRdIFEF7ggn/8c7Ido6iWr4jxDbnWQ304wjogfix7JIxq4gixT5yFePXJIqDbrW11biWfasCUIrw==", + "type": "package", + "path": "microsoft.kiota.serialization.form/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "lib/netstandard2.0/Microsoft.Kiota.Serialization.Form.dll", + "lib/netstandard2.0/Microsoft.Kiota.Serialization.Form.xml", + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Form.dll", + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Form.xml", + "microsoft.kiota.serialization.form.1.0.1.nupkg.sha512", + "microsoft.kiota.serialization.form.nuspec" + ] + }, + "Microsoft.Kiota.Serialization.Json/1.0.5": { + "sha512": "FKT3/j9Zd4YVT5Uk/1/+rto+zLS8Vs2+Dr37tDWiY6ESFsyuF1/zYWTNvZisRyP7/Wq9ufxdyNEkex/3tiTF1Q==", + "type": "package", + "path": "microsoft.kiota.serialization.json/1.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "lib/netstandard2.0/Microsoft.Kiota.Serialization.Json.dll", + "lib/netstandard2.0/Microsoft.Kiota.Serialization.Json.xml", + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Json.dll", + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Json.xml", + "microsoft.kiota.serialization.json.1.0.5.nupkg.sha512", + "microsoft.kiota.serialization.json.nuspec" + ] + }, + "Microsoft.Kiota.Serialization.Text/1.0.1": { + "sha512": "OPUqUAlvbjdiiVbj8nZXA+kfKfudgPk85wa+cOP25Mxni7m5+bJY/icQpsxyYfsbqgZgwlZuvwj+NH9kWCjNMA==", + "type": "package", + "path": "microsoft.kiota.serialization.text/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "README.md", + "lib/netstandard2.0/Microsoft.Kiota.Serialization.Text.dll", + "lib/netstandard2.0/Microsoft.Kiota.Serialization.Text.xml", + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Text.dll", + "lib/netstandard2.1/Microsoft.Kiota.Serialization.Text.xml", + "microsoft.kiota.serialization.text.1.0.1.nupkg.sha512", + "microsoft.kiota.serialization.text.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "paket-installmodel.cache", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml.zip", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml.zip", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "paket-installmodel.cache", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml.zip", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml.zip", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MongoDB.Bson/2.19.1": { + "sha512": "4FSR3eAbJEYMmvQ1pNFImUpFGtGHT+kEw/Yw/KZjxC9iFMj1XcZC08wMbezgRga2F9tNNFG2vDqh9zt01GinMA==", + "type": "package", + "path": "mongodb.bson/2.19.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/netstandard2.0/MongoDB.Bson.dll", + "lib/netstandard2.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.2.19.1.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/2.19.1": { + "sha512": "EeQnUCIzRmXg20jwHSM9uvw67nrEMpINKsJDF9Y8xFh/8WFWD9QjZyyJLZgUoFUSz9pUAbyLfQj+ctJYbn8gxg==", + "type": "package", + "path": "mongodb.driver/2.19.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "lib/net472/MongoDB.Driver.dll", + "lib/net472/MongoDB.Driver.xml", + "lib/netstandard2.0/MongoDB.Driver.dll", + "lib/netstandard2.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.2.19.1.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver.Core/2.19.1": { + "sha512": "+T4+vNZHCjp7qoOoNE8hf8VjnwxZttTOHTqv0jibJ4WSnM6lnXZBP4wBOjIKDF3J4aQffvtaZtIt4UWDOV+yAw==", + "type": "package", + "path": "mongodb.driver.core/2.19.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "THIRD-PARTY-NOTICES", + "lib/net472/MongoDB.Driver.Core.dll", + "lib/net472/MongoDB.Driver.Core.xml", + "lib/netstandard2.0/MongoDB.Driver.Core.dll", + "lib/netstandard2.0/MongoDB.Driver.Core.xml", + "lib/netstandard2.1/MongoDB.Driver.Core.dll", + "lib/netstandard2.1/MongoDB.Driver.Core.xml", + "mongodb.driver.core.2.19.1.nupkg.sha512", + "mongodb.driver.core.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Libmongocrypt/1.7.0": { + "sha512": "p9+peTZX63nGHskOLhvhfBtrknxNg1RzXepE07rPozuCGz27bMjCcQyvn2YByg0L3YEcNWdTmI4BlnG/5RF+5Q==", + "type": "package", + "path": "mongodb.libmongocrypt/1.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/MongoDB.Libmongocrypt.targets", + "content/libmongocrypt.dylib", + "content/libmongocrypt.so", + "content/mongocrypt.dll", + "contentFiles/any/net472/libmongocrypt.dylib", + "contentFiles/any/net472/libmongocrypt.so", + "contentFiles/any/net472/mongocrypt.dll", + "contentFiles/any/netstandard2.0/libmongocrypt.dylib", + "contentFiles/any/netstandard2.0/libmongocrypt.so", + "contentFiles/any/netstandard2.0/mongocrypt.dll", + "contentFiles/any/netstandard2.1/libmongocrypt.dylib", + "contentFiles/any/netstandard2.1/libmongocrypt.so", + "contentFiles/any/netstandard2.1/mongocrypt.dll", + "lib/net472/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", + "mongodb.libmongocrypt.1.7.0.nupkg.sha512", + "mongodb.libmongocrypt.nuspec", + "runtimes/linux/native/libmongocrypt.so", + "runtimes/osx/native/libmongocrypt.dylib", + "runtimes/win/native/mongocrypt.dll" + ] + }, + "NETStandard.Library/2.0.3": { + "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "type": "package", + "path": "netstandard.library/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.3.nupkg.sha512", + "netstandard.library.nuspec", + "paket-installmodel.cache" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Open-XML-SDK/2.9.1": { + "sha512": "X9v2Rq+kOmM4i7dAtixXtyzlJeO3vMCXZQizv9pJBvrZV3yW4zXVfE48ffO1xE/c4Cf4vsmNcZQL+pcgUuQYWA==", + "type": "package", + "path": "open-xml-sdk/2.9.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/netstandard1.3/DocumentFormat.OpenXml.dll", + "lib/netstandard1.3/DocumentFormat.OpenXml.xml", + "open-xml-sdk.2.9.1.nupkg.sha512", + "open-xml-sdk.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.2": { + "sha512": "XpJVIhjPiO0o+DU36eeIzqnRilDmE8Z7Kfhm9V9o1yNqM3ikgleD94Z5W/LeEu3t63LaZl2CNJexaix+I6AUMg==", + "type": "package", + "path": "portable.bouncycastle/1.8.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard1.0/BouncyCastle.Crypto.dll", + "lib/netstandard1.0/BouncyCastle.Crypto.xml", + "lib/netstandard1.3/BouncyCastle.Crypto.dll", + "lib/netstandard1.3/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/BouncyCastle.Crypto.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.2.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.any.System.Collections/4.3.0": { + "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "type": "package", + "path": "runtime.any.system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.3.0.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tools/4.3.0": { + "sha512": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", + "type": "package", + "path": "runtime.any.system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netstandard1.3/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", + "runtime.any.system.diagnostics.tools.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.3.0": { + "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "type": "package", + "path": "runtime.any.system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.3.0": { + "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "type": "package", + "path": "runtime.any.system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.3.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.3.0": { + "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", + "type": "package", + "path": "runtime.any.system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.3.0": { + "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "type": "package", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "SharpCompress/0.30.1": { + "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "type": "package", + "path": "sharpcompress/0.30.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/SharpCompress.dll", + "lib/net5.0/SharpCompress.dll", + "lib/netcoreapp3.1/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "lib/netstandard2.1/SharpCompress.dll", + "sharpcompress.0.30.1.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "Snappier/1.0.0": { + "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "type": "package", + "path": "snappier/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING.txt", + "lib/net5.0/Snappier.dll", + "lib/net5.0/Snappier.xml", + "lib/netcoreapp3.0/Snappier.dll", + "lib/netcoreapp3.0/Snappier.xml", + "lib/netstandard2.0/Snappier.dll", + "lib/netstandard2.0/Snappier.xml", + "lib/netstandard2.1/Snappier.dll", + "lib/netstandard2.1/Snappier.xml", + "snappier.1.0.0.nupkg.sha512", + "snappier.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml.zip", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml.zip", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml.zip", + "lib/uap10.0.16299/_._", + "paket-installmodel.cache", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml.zip", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml.zip", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml.zip", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "paket-installmodel.cache", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.29.0": { + "sha512": "2WwptlYJQffT6z7V0WVoChznOBjacAIByLSoXp5fZ8kK33heAAqn/aX50xB+cQNfKFYRGVbqiVrzz+m80Q2zcA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.29.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.29.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Packaging/4.5.0": { + "sha512": "OjtW5pGp1E7KE3ontBrzy+nSFJCM6pcbVDdo3gg4DauTfdtZKdeKvMVlADF4fSY+OfXWUp4qCvOSxIltt37LbA==", + "type": "package", + "path": "system.io.packaging/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Packaging.dll", + "lib/netstandard1.3/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.dll", + "ref/net46/System.IO.Packaging.dll", + "ref/net46/System.IO.Packaging.xml", + "ref/netstandard1.3/System.IO.Packaging.dll", + "ref/netstandard1.3/System.IO.Packaging.xml", + "ref/netstandard2.0/System.IO.Packaging.dll", + "ref/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.4.5.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipelines/7.0.0": { + "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "type": "package", + "path": "system.io.pipelines/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/net7.0/System.IO.Pipelines.dll", + "lib/net7.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.7.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Memory/4.5.0": { + "sha512": "m0psCSpUxTGfvwyO0i03ajXVhgBqyXlibXz0Mo1dtKGjaHrXFLnuQ8rNBTmWRqbfRjr4eC6Wah4X5FfuFDu5og==", + "type": "package", + "path": "system.memory/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "lib/uap10.0.16300/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "ref/uap10.0.16300/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.memory.4.5.0.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml.zip", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml.zip", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml.zip", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml.zip", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml.zip", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml.zip", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml.zip", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Private.DataContractSerialization/4.3.0": { + "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==", + "type": "package", + "path": "system.private.datacontractserialization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.3/System.Private.DataContractSerialization.dll", + "ref/netstandard/_._", + "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "system.private.datacontractserialization.4.3.0.nupkg.sha512", + "system.private.datacontractserialization.nuspec" + ] + }, + "System.Private.Uri/4.3.0": { + "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "type": "package", + "path": "system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.3.0.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "paket-installmodel.cache", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.3.0": { + "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "type": "package", + "path": "system.runtime.serialization.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" + ] + }, + "System.Runtime.Serialization.Xml/4.3.0": { + "sha512": "nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==", + "type": "package", + "path": "system.runtime.serialization.xml/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Xml.dll", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.dll", + "ref/netcore50/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/de/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/es/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/it/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.serialization.xml.4.3.0.nupkg.sha512", + "system.runtime.serialization.xml.nuspec" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml.zip", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml.zip", + "lib/uap10.0.16299/_._", + "paket-installmodel.cache", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/de/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/es/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/it/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml.zip", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml.zip", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml.zip", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml.zip", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml.zip", + "lib/uap10.0.16299/_._", + "paket-installmodel.cache", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml.zip", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml.zip", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml.zip", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml.zip", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/7.0.0": { + "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "type": "package", + "path": "system.text.encodings.web/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.7.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/7.0.2": { + "sha512": "/LZf/JrGyilojqwpaywb+sSz8Tew7ij4K/Sk+UW8AKfAK7KRhR6mKpKtTm06cYA7bCpGTWfYksIW+mVsdxPegQ==", + "type": "package", + "path": "system.text.json/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.7.0.2.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml.zip", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml.zip", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml.zip", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "paket-installmodel.cache", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.3.0": { + "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==", + "type": "package", + "path": "system.xml.xmlserializer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/netstandard1.3/System.Xml.XmlSerializer.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/System.Xml.XmlSerializer.dll", + "ref/netstandard1.0/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/System.Xml.XmlSerializer.dll", + "ref/netstandard1.3/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.3.0.nupkg.sha512", + "system.xml.xmlserializer.nuspec" + ] + }, + "Tavis.UriTemplates/2.0.0": { + "sha512": "GbetWNcPIaXvWtanHlBqlEp2KflFrsJf8RBNXmI8Yyeft9CSGxNrcsoKWEiEzyrn7gGVQ25ZC6ep9UfWPR0Otw==", + "type": "package", + "path": "tavis.uritemplates/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Tavis.UriTemplates.dll", + "tavis.uritemplates.2.0.0.nupkg.sha512", + "tavis.uritemplates.nuspec" + ] + }, + "TimeZoneConverter/6.1.0": { + "sha512": "UGdtyKWJqXXinyvGB9X6NVoIYbTAidoZYmn3aXzxeEYC9+OL8vF36eDt1qjb6RqBkWDl4v7iE84ecI+dFhA80A==", + "type": "package", + "path": "timezoneconverter/6.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/TimeZoneConverter.dll", + "lib/net462/TimeZoneConverter.xml", + "lib/net6.0/TimeZoneConverter.dll", + "lib/net6.0/TimeZoneConverter.xml", + "lib/netstandard2.0/TimeZoneConverter.dll", + "lib/netstandard2.0/TimeZoneConverter.xml", + "timezoneconverter.6.1.0.nupkg.sha512", + "timezoneconverter.nuspec" + ] + }, + "ZstdSharp.Port/0.6.2": { + "sha512": "jPao/LdUNLUz8rn3H1D8W7wQbZsRZM0iayvWI4xGejJg3XJHT56gcmYdgmCGPdJF1UEBqUjucCRrFB+4HbJsbw==", + "type": "package", + "path": "zstdsharp.port/0.6.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ZstdSharp.dll", + "lib/net5.0/ZstdSharp.dll", + "lib/net6.0/ZstdSharp.dll", + "lib/netcoreapp3.1/ZstdSharp.dll", + "lib/netstandard2.0/ZstdSharp.dll", + "lib/netstandard2.1/ZstdSharp.dll", + "zstdsharp.port.0.6.2.nupkg.sha512", + "zstdsharp.port.nuspec" + ] + }, + "SharedModels/1.0.0": { + "type": "project", + "path": "../SharedModels/SharedModels.csproj", + "msbuildProject": "../SharedModels/SharedModels.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "Azure.AI.OpenAI >= 1.0.0-beta.5", + "Azure.AI.TextAnalytics >= 5.2.0", + "AzureOpenAIClient >= 1.0.2", + "BlazorInputFile >= 0.2.0", + "Blazored.Modal >= 7.1.0", + "ChartJSCore >= 3.10.0", + "GrapeCity.Documents.Pdf >= 6.1.2", + "Microsoft.AspNetCore.Components.WebAssembly >= 7.0.5", + "Microsoft.AspNetCore.Components.WebAssembly.DevServer >= 7.0.5", + "Microsoft.AspNetCore.WebUtilities >= 2.2.0", + "Microsoft.Authentication.WebAssembly.Msal >= 7.0.5", + "Microsoft.Fast.Components.FluentUI >= 2.3.0", + "Microsoft.Graph >= 5.9.0", + "Microsoft.Graph.Beta >= 5.32.0-preview", + "Newtonsoft.Json >= 13.0.3", + "Open-XML-SDK >= 2.9.1", + "SharedModels >= 1.0.0", + "TimeZoneConverter >= 6.1.0" + ] + }, + "packageFolders": { + "C:\\Users\\mahas\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\GraphSample.csproj", + "projectName": "GraphSample", + "projectPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\GraphSample.csproj", + "packagesPath": "C:\\Users\\mahas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\mahas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\SharedModels.csproj": { + "projectPath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\SharedModels\\SharedModels.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Azure.AI.OpenAI": { + "target": "Package", + "version": "[1.0.0-beta.5, )" + }, + "Azure.AI.TextAnalytics": { + "target": "Package", + "version": "[5.2.0, )" + }, + "AzureOpenAIClient": { + "target": "Package", + "version": "[1.0.2, )" + }, + "BlazorInputFile": { + "target": "Package", + "version": "[0.2.0, )" + }, + "Blazored.Modal": { + "target": "Package", + "version": "[7.1.0, )" + }, + "ChartJSCore": { + "target": "Package", + "version": "[3.10.0, )" + }, + "GrapeCity.Documents.Pdf": { + "target": "Package", + "version": "[6.1.2, )" + }, + "Microsoft.AspNetCore.Components.WebAssembly": { + "target": "Package", + "version": "[7.0.5, )" + }, + "Microsoft.AspNetCore.Components.WebAssembly.DevServer": { + "suppressParent": "All", + "target": "Package", + "version": "[7.0.5, )" + }, + "Microsoft.AspNetCore.WebUtilities": { + "target": "Package", + "version": "[2.2.0, )" + }, + "Microsoft.Authentication.WebAssembly.Msal": { + "target": "Package", + "version": "[7.0.5, )" + }, + "Microsoft.Fast.Components.FluentUI": { + "target": "Package", + "version": "[2.3.0, )" + }, + "Microsoft.Graph": { + "target": "Package", + "version": "[5.9.0, )" + }, + "Microsoft.Graph.Beta": { + "target": "Package", + "version": "[5.32.0-preview, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + }, + "Open-XML-SDK": { + "target": "Package", + "version": "[2.9.1, )" + }, + "TimeZoneConverter": { + "target": "Package", + "version": "[6.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Runtime.Mono.browser-wasm", + "version": "[7.0.5, 7.0.5]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.203\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "browser-wasm": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/obj/project.nuget.cache b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/project.nuget.cache new file mode 100644 index 000000000..771b1c01d --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/obj/project.nuget.cache @@ -0,0 +1,154 @@ +{ + "version": 2, + "dgSpecHash": "X85JkVDgU/vxAB97goWwlvMwOs+Hn65OCtSH9e00yEOSGnbTSk/ir2js2u5Ts8Q8Puyub6FhH+M3vhI1MQLK3w==", + "success": true, + "projectFilePath": "C:\\Users\\mahas\\Downloads\\HackathonMicrosoft\\GraphSample\\GraphSample\\GraphSample.csproj", + "expectedPackageFiles": [ + "C:\\Users\\mahas\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\azure.ai.openai\\1.0.0-beta.5\\azure.ai.openai.1.0.0-beta.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\azure.ai.textanalytics\\5.2.0\\azure.ai.textanalytics.5.2.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\azure.core\\1.30.0\\azure.core.1.30.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\azureopenaiclient\\1.0.2\\azureopenaiclient.1.0.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\blazored.modal\\7.1.0\\blazored.modal.7.1.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\blazorinputfile\\0.2.0\\blazorinputfile.0.2.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\chartjscore\\3.10.0\\chartjscore.3.10.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\grapecity.documents.imaging\\6.1.2\\grapecity.documents.imaging.6.1.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\grapecity.documents.pdf\\6.1.2\\grapecity.documents.pdf.6.1.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.authorization\\7.0.5\\microsoft.aspnetcore.authorization.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components\\7.0.5\\microsoft.aspnetcore.components.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\7.0.5\\microsoft.aspnetcore.components.analyzers.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.authorization\\7.0.5\\microsoft.aspnetcore.components.authorization.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\7.0.5\\microsoft.aspnetcore.components.forms.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.web\\7.0.5\\microsoft.aspnetcore.components.web.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly\\7.0.5\\microsoft.aspnetcore.components.webassembly.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.authentication\\7.0.5\\microsoft.aspnetcore.components.webassembly.authentication.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.components.webassembly.devserver\\7.0.5\\microsoft.aspnetcore.components.webassembly.devserver.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.metadata\\7.0.5\\microsoft.aspnetcore.metadata.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.authentication.webassembly.msal\\7.0.5\\microsoft.authentication.webassembly.msal.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration\\7.0.0\\microsoft.extensions.configuration.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.binder\\7.0.4\\microsoft.extensions.configuration.binder.7.0.4.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\7.0.0\\microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.configuration.json\\7.0.0\\microsoft.extensions.configuration.json.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\7.0.0\\microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\7.0.0\\microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\7.0.0\\microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\7.0.0\\microsoft.extensions.hosting.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.http\\7.0.0\\microsoft.extensions.http.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.options\\7.0.1\\microsoft.extensions.options.7.0.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.fast.components.fluentui\\2.3.0\\microsoft.fast.components.fluentui.2.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.graph\\5.9.0\\microsoft.graph.5.9.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.graph.beta\\5.32.0-preview\\microsoft.graph.beta.5.32.0-preview.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.graph.core\\3.0.6\\microsoft.graph.core.3.0.6.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.29.0\\microsoft.identitymodel.abstractions.6.29.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.29.0\\microsoft.identitymodel.jsonwebtokens.6.29.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.logging\\6.29.0\\microsoft.identitymodel.logging.6.29.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.29.0\\microsoft.identitymodel.protocols.6.29.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.29.0\\microsoft.identitymodel.protocols.openidconnect.6.29.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.29.0\\microsoft.identitymodel.tokens.6.29.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.jsinterop\\7.0.5\\microsoft.jsinterop.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.jsinterop.webassembly\\7.0.5\\microsoft.jsinterop.webassembly.7.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.abstractions\\1.1.1\\microsoft.kiota.abstractions.1.1.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.authentication.azure\\1.0.2\\microsoft.kiota.authentication.azure.1.0.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.http.httpclientlibrary\\1.0.2\\microsoft.kiota.http.httpclientlibrary.1.0.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.serialization.form\\1.0.1\\microsoft.kiota.serialization.form.1.0.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.serialization.json\\1.0.5\\microsoft.kiota.serialization.json.1.0.5.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.kiota.serialization.text\\1.0.1\\microsoft.kiota.serialization.text.1.0.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\mongodb.bson\\2.19.1\\mongodb.bson.2.19.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\mongodb.driver\\2.19.1\\mongodb.driver.2.19.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\mongodb.driver.core\\2.19.1\\mongodb.driver.core.2.19.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\mongodb.libmongocrypt\\1.7.0\\mongodb.libmongocrypt.1.7.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\open-xml-sdk\\2.9.1\\open-xml-sdk.2.9.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\portable.bouncycastle\\1.8.2\\portable.bouncycastle.1.8.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.diagnostics.tools\\4.3.0\\runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.diagnostics.tracing\\4.3.0\\runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.reflection.extensions\\4.3.0\\runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.runtime.handles\\4.3.0\\runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.runtime.interopservices\\4.3.0\\runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.text.encoding.extensions\\4.3.0\\runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.29.0\\system.identitymodel.tokens.jwt.6.29.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.io.packaging\\4.5.0\\system.io.packaging.4.5.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.memory\\4.5.0\\system.memory.4.5.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.runtime.serialization.xml\\4.3.0\\system.runtime.serialization.xml.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.security.claims\\4.3.0\\system.security.claims.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.security.principal\\4.3.0\\system.security.principal.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.text.json\\7.0.2\\system.text.json.7.0.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\tavis.uritemplates\\2.0.0\\tavis.uritemplates.2.0.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\timezoneconverter\\6.1.0\\timezoneconverter.6.1.0.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\zstdsharp.port\\0.6.2\\zstdsharp.port.0.6.2.nupkg.sha512", + "C:\\Users\\mahas\\.nuget\\packages\\microsoft.netcore.app.runtime.mono.browser-wasm\\7.0.5\\microsoft.netcore.app.runtime.mono.browser-wasm.7.0.5.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/package-lock.json b/samples/app-nexus-productivity/GraphSample/GraphSample/package-lock.json new file mode 100644 index 000000000..e00090918 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/package-lock.json @@ -0,0 +1,889 @@ +{ + "name": "GraphSample", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "@microsoft/mgt": "^2.10.1", + "@microsoft/microsoft-graph-client": "^3.0.5" + } + }, + "node_modules/@azure/msal-browser": { + "version": "2.37.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.37.0.tgz", + "integrity": "sha512-YNGD/W/tw/5wDWlXOfmrVILaxVsorVLxYU2ovmL1PDvxkdudbQRyGk/76l4emqgDAl/kPQeqyivxjOU6w1YfvQ==", + "dependencies": { + "@azure/msal-common": "13.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-common": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.0.0.tgz", + "integrity": "sha512-GqCOg5H5bouvLij9NFXFkh+asRRxsPBRwnTDsfK7o0KcxYHJbuidKw8/VXpycahGXNxgtuhqtK/n5he+5NhyEA==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", + "dependencies": { + "regenerator-runtime": "^0.13.11" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@fluentui/web-components": { + "version": "0.22.1", + "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-0.22.1.tgz", + "integrity": "sha512-dnMgBRC2vXPa8Br2DpoJG9Fj+WNDlOEtJPzXDiDZss3ddnhsd1djzOEaHoYWayqYumA6ZU2tet5qaqF2i2lqOQ==", + "dependencies": { + "@microsoft/fast-colors": "^5.1.0", + "@microsoft/fast-element": "^1.0.0", + "@microsoft/fast-foundation": "^1.16.0", + "lodash-es": "^4.17.20", + "tslib": "^1.13.0" + } + }, + "node_modules/@microsoft/fast-colors": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz", + "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + }, + "node_modules/@microsoft/fast-element": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.12.0.tgz", + "integrity": "sha512-gQutuDHPKNxUEcQ4pypZT4Wmrbapus+P9s3bR/SEOLsMbNqNoXigGImITygI5zhb+aA5rzflM6O8YWkmRbGkPA==" + }, + "node_modules/@microsoft/fast-foundation": { + "version": "1.24.8", + "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-1.24.8.tgz", + "integrity": "sha512-n4O9jPh8BBliF/Yl9FAVhrSoopsRCnva2L432s/fHwLelY9WUeswjO3DidVBFbzXD5u/gzC4LGWJScNe/ZGU4Q==", + "dependencies": { + "@microsoft/fast-element": "^1.4.0", + "@microsoft/fast-web-utilities": "^4.8.0", + "@microsoft/tsdoc-config": "^0.13.4", + "tabbable": "^5.2.0", + "tslib": "^1.13.0" + } + }, + "node_modules/@microsoft/fast-web-utilities": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-4.8.1.tgz", + "integrity": "sha512-P3xeyUwQ9nPkFrgAdmkOzaXxIq8YqMU5K+LXcoHgJddJCBCKfGWW9OZQOTigLddItTyVyfO8qsJpDQb1TskKHA==", + "dependencies": { + "exenv-es6": "^1.0.0" + }, + "peerDependencies": { + "lodash-es": "^4.17.10" + } + }, + "node_modules/@microsoft/mgt": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt/-/mgt-2.10.1.tgz", + "integrity": "sha512-6zLHXDyif6rAlua1fjcor1kMpHTzWlmgQNsQfcFhGOxi/Nxg4hlFOCqKawWdGcEHuBDs4p35/mDXJNGBgML0NA==", + "dependencies": { + "@microsoft/mgt-components": "2.10.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/mgt-proxy-provider": "2.10.1", + "@microsoft/mgt-sharepoint-provider": "2.10.1", + "@microsoft/mgt-teams-msal2-provider": "2.10.1", + "@microsoft/mgt-teams-provider": "2.10.1" + } + }, + "node_modules/@microsoft/mgt-components": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-2.10.1.tgz", + "integrity": "sha512-uw760pZGXxkll4Uury6RoWvf0y3/IJBte55ltlCz2DunPeyIcUZ3QbA2E21EebIvMlbXwgVuUx2vBXVP9yMzdw==", + "dependencies": { + "@fluentui/web-components": "0.22.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview", + "office-ui-fabric-core": "11.0.0" + } + }, + "node_modules/@microsoft/mgt-components/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-element": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-2.10.1.tgz", + "integrity": "sha512-xRyuCOahxxpWuGPrpycwfFchcGowyC7DjV8bPbjtazh6HegKE6JjGWd+X5HwIN5Wf9JduL32zoWoX/GwfSkIgg==", + "dependencies": { + "@microsoft/microsoft-graph-client": "^2.2.1", + "idb": "6.0.0", + "lit-element": "^2.4.0" + } + }, + "node_modules/@microsoft/mgt-element/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-msal-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal-provider/-/mgt-msal-provider-2.10.1.tgz", + "integrity": "sha512-G5O6iQ2z9GF1dSjX4ErMmjaNb+8xkhOI9D8A7Oo5uBMlQZJeBCJ9vhd78oBkx1OZWNCh12lxKg5r6TePYeuczw==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + } + }, + "node_modules/@microsoft/mgt-msal-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal2-provider/-/mgt-msal2-provider-2.10.1.tgz", + "integrity": "sha512-4hT5jncgcCxX0FidS497lJxobaOnXhhjsGJLvjbdeAdH1Abg3sNP1WinCJfKSNagT3kvtM0s/JdqHOIPNdk4Xw==", + "dependencies": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + } + }, + "node_modules/@microsoft/mgt-msal2-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-proxy-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-proxy-provider/-/mgt-proxy-provider-2.10.1.tgz", + "integrity": "sha512-Xl3b3+6Asie0dMtUs3CkVhy8dJ4Wp2jpBdjIF5KetC8aNZpiZwwBocowiqNPNgdBtWoYkzar27ArgHy4UD5Mvg==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + } + }, + "node_modules/@microsoft/mgt-proxy-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-sharepoint-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-2.10.1.tgz", + "integrity": "sha512-ceZl8wkZpMleq4Btgpu2P+FWiOHBI4rbdj5fXHAdF7uvj3jhR/avw3LmrjFQxuqy/skOcpU0vcCBFgi85pHkrA==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1" + } + }, + "node_modules/@microsoft/mgt-teams-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-msal2-provider/-/mgt-teams-msal2-provider-2.10.1.tgz", + "integrity": "sha512-l1BrF5jtwi6BMSFjaMu9lpuJ8KKoNDPp/vdBFDaF8ZeY9ovlW92fFTZ1wQ2DmDsyitPreHBiqzRJHb+FCscjdg==", + "dependencies": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + } + }, + "node_modules/@microsoft/mgt-teams-msal2-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/mgt-teams-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-provider/-/mgt-teams-provider-2.10.1.tgz", + "integrity": "sha512-ZO7Mk4E/fGUkEG4Ay0fMVaevvLCXQ7w7qQNO6gCO1qtnANbOm9ESa3T6diqZIR/4LhjQ1nx9mbrLIY2z/abVHQ==", + "dependencies": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + } + }, + "node_modules/@microsoft/mgt-teams-provider/node_modules/@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + }, + "node_modules/@microsoft/microsoft-graph-client": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.5.tgz", + "integrity": "sha512-xQADFNLUhE78RzYadFZtOmy/5wBZenSZhVK193m40MTDC5hl1aYMQO1QOJApnKga8WcvMCDCU10taRhuXTOz5w==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "tslib": "^2.2.0" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependenciesMeta": { + "@azure/identity": { + "optional": true + }, + "@azure/msal-browser": { + "optional": true + }, + "buffer": { + "optional": true + }, + "stream-browserify": { + "optional": true + } + } + }, + "node_modules/@microsoft/microsoft-graph-client/node_modules/tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + }, + "node_modules/@microsoft/microsoft-graph-types": { + "version": "2.31.0", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.31.0.tgz", + "integrity": "sha512-ZEVraeRK3qmAs0sVenlEsoMKbNO4T960atGtZNYNWBd8MZ9KMeOF/+6HRVAYiGTRUo+WLlweMKXlDm+TDKGleQ==" + }, + "node_modules/@microsoft/microsoft-graph-types-beta": { + "version": "0.16.0-preview", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.16.0-preview.tgz", + "integrity": "sha512-73d1b8pv8YnKx+oiQtMZDSey4ohmx/cfM/vFiAa5ZyLSj4nr9y/7wIT5jTIO+tkdniyBsfN/QQeDiRwyutcxAQ==" + }, + "node_modules/@microsoft/tsdoc": { + "version": "0.12.24", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.24.tgz", + "integrity": "sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg==" + }, + "node_modules/@microsoft/tsdoc-config": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.13.9.tgz", + "integrity": "sha512-VqqZn+rT9f6XujFPFR2aN9XKF/fuir/IzKVzoxI0vXIzxysp4ee6S2jCakmlGFHEasibifFTsJr7IYmRPxfzYw==", + "dependencies": { + "@microsoft/tsdoc": "0.12.24", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/exenv-es6": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz", + "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/idb": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz", + "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA==" + }, + "node_modules/is-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/lit-element": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz", + "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==", + "dependencies": { + "lit-html": "^1.1.1" + } + }, + "node_modules/lit-html": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz", + "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/msal": { + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.18.tgz", + "integrity": "sha512-QyWMWrZqpwtK6LEqhwtbikxIWqA1EOcdMvDeIDjIXdGU29wM4orwq538sPe1+JfKDIgPmJj1Fgi5B7luaw/IyA==", + "dependencies": { + "tslib": "^1.9.3" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/office-ui-fabric-core": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.0.tgz", + "integrity": "sha512-K6+KGnBXXjfSxxZpp+4oDXVLgUc//7OnXrn8F08VoJnGhEz27WUf4ZuMa32SjGoqirWlb4JlKkXbOpC9cis6dQ==" + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "node_modules/resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dependencies": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tabbable": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", + "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + } + }, + "dependencies": { + "@azure/msal-browser": { + "version": "2.37.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.37.0.tgz", + "integrity": "sha512-YNGD/W/tw/5wDWlXOfmrVILaxVsorVLxYU2ovmL1PDvxkdudbQRyGk/76l4emqgDAl/kPQeqyivxjOU6w1YfvQ==", + "requires": { + "@azure/msal-common": "13.0.0" + } + }, + "@azure/msal-common": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.0.0.tgz", + "integrity": "sha512-GqCOg5H5bouvLij9NFXFkh+asRRxsPBRwnTDsfK7o0KcxYHJbuidKw8/VXpycahGXNxgtuhqtK/n5he+5NhyEA==" + }, + "@babel/runtime": { + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", + "requires": { + "regenerator-runtime": "^0.13.11" + } + }, + "@fluentui/web-components": { + "version": "0.22.1", + "resolved": "https://registry.npmjs.org/@fluentui/web-components/-/web-components-0.22.1.tgz", + "integrity": "sha512-dnMgBRC2vXPa8Br2DpoJG9Fj+WNDlOEtJPzXDiDZss3ddnhsd1djzOEaHoYWayqYumA6ZU2tet5qaqF2i2lqOQ==", + "requires": { + "@microsoft/fast-colors": "^5.1.0", + "@microsoft/fast-element": "^1.0.0", + "@microsoft/fast-foundation": "^1.16.0", + "lodash-es": "^4.17.20", + "tslib": "^1.13.0" + } + }, + "@microsoft/fast-colors": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-colors/-/fast-colors-5.3.1.tgz", + "integrity": "sha512-72RZXVfCbwQzvo5sXXkuLXLT7rMeYaSf5r/6ewQiv/trBtqpWRm4DEH2EilHw/iWTBKOXs1qZNQndgUMa5n4LA==" + }, + "@microsoft/fast-element": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/@microsoft/fast-element/-/fast-element-1.12.0.tgz", + "integrity": "sha512-gQutuDHPKNxUEcQ4pypZT4Wmrbapus+P9s3bR/SEOLsMbNqNoXigGImITygI5zhb+aA5rzflM6O8YWkmRbGkPA==" + }, + "@microsoft/fast-foundation": { + "version": "1.24.8", + "resolved": "https://registry.npmjs.org/@microsoft/fast-foundation/-/fast-foundation-1.24.8.tgz", + "integrity": "sha512-n4O9jPh8BBliF/Yl9FAVhrSoopsRCnva2L432s/fHwLelY9WUeswjO3DidVBFbzXD5u/gzC4LGWJScNe/ZGU4Q==", + "requires": { + "@microsoft/fast-element": "^1.4.0", + "@microsoft/fast-web-utilities": "^4.8.0", + "@microsoft/tsdoc-config": "^0.13.4", + "tabbable": "^5.2.0", + "tslib": "^1.13.0" + } + }, + "@microsoft/fast-web-utilities": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/@microsoft/fast-web-utilities/-/fast-web-utilities-4.8.1.tgz", + "integrity": "sha512-P3xeyUwQ9nPkFrgAdmkOzaXxIq8YqMU5K+LXcoHgJddJCBCKfGWW9OZQOTigLddItTyVyfO8qsJpDQb1TskKHA==", + "requires": { + "exenv-es6": "^1.0.0" + } + }, + "@microsoft/mgt": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt/-/mgt-2.10.1.tgz", + "integrity": "sha512-6zLHXDyif6rAlua1fjcor1kMpHTzWlmgQNsQfcFhGOxi/Nxg4hlFOCqKawWdGcEHuBDs4p35/mDXJNGBgML0NA==", + "requires": { + "@microsoft/mgt-components": "2.10.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/mgt-proxy-provider": "2.10.1", + "@microsoft/mgt-sharepoint-provider": "2.10.1", + "@microsoft/mgt-teams-msal2-provider": "2.10.1", + "@microsoft/mgt-teams-provider": "2.10.1" + } + }, + "@microsoft/mgt-components": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-components/-/mgt-components-2.10.1.tgz", + "integrity": "sha512-uw760pZGXxkll4Uury6RoWvf0y3/IJBte55ltlCz2DunPeyIcUZ3QbA2E21EebIvMlbXwgVuUx2vBXVP9yMzdw==", + "requires": { + "@fluentui/web-components": "0.22.1", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "@microsoft/microsoft-graph-types": "^2.0.0", + "@microsoft/microsoft-graph-types-beta": "^0.16.0-preview", + "office-ui-fabric-core": "11.0.0" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-element": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-element/-/mgt-element-2.10.1.tgz", + "integrity": "sha512-xRyuCOahxxpWuGPrpycwfFchcGowyC7DjV8bPbjtazh6HegKE6JjGWd+X5HwIN5Wf9JduL32zoWoX/GwfSkIgg==", + "requires": { + "@microsoft/microsoft-graph-client": "^2.2.1", + "idb": "6.0.0", + "lit-element": "^2.4.0" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-msal-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal-provider/-/mgt-msal-provider-2.10.1.tgz", + "integrity": "sha512-G5O6iQ2z9GF1dSjX4ErMmjaNb+8xkhOI9D8A7Oo5uBMlQZJeBCJ9vhd78oBkx1OZWNCh12lxKg5r6TePYeuczw==", + "requires": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-msal2-provider/-/mgt-msal2-provider-2.10.1.tgz", + "integrity": "sha512-4hT5jncgcCxX0FidS497lJxobaOnXhhjsGJLvjbdeAdH1Abg3sNP1WinCJfKSNagT3kvtM0s/JdqHOIPNdk4Xw==", + "requires": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-proxy-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-proxy-provider/-/mgt-proxy-provider-2.10.1.tgz", + "integrity": "sha512-Xl3b3+6Asie0dMtUs3CkVhy8dJ4Wp2jpBdjIF5KetC8aNZpiZwwBocowiqNPNgdBtWoYkzar27ArgHy4UD5Mvg==", + "requires": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-sharepoint-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-sharepoint-provider/-/mgt-sharepoint-provider-2.10.1.tgz", + "integrity": "sha512-ceZl8wkZpMleq4Btgpu2P+FWiOHBI4rbdj5fXHAdF7uvj3jhR/avw3LmrjFQxuqy/skOcpU0vcCBFgi85pHkrA==", + "requires": { + "@microsoft/mgt-element": "2.10.1" + } + }, + "@microsoft/mgt-teams-msal2-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-msal2-provider/-/mgt-teams-msal2-provider-2.10.1.tgz", + "integrity": "sha512-l1BrF5jtwi6BMSFjaMu9lpuJ8KKoNDPp/vdBFDaF8ZeY9ovlW92fFTZ1wQ2DmDsyitPreHBiqzRJHb+FCscjdg==", + "requires": { + "@azure/msal-browser": "^2.22.0", + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal2-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/mgt-teams-provider": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@microsoft/mgt-teams-provider/-/mgt-teams-provider-2.10.1.tgz", + "integrity": "sha512-ZO7Mk4E/fGUkEG4Ay0fMVaevvLCXQ7w7qQNO6gCO1qtnANbOm9ESa3T6diqZIR/4LhjQ1nx9mbrLIY2z/abVHQ==", + "requires": { + "@microsoft/mgt-element": "2.10.1", + "@microsoft/mgt-msal-provider": "2.10.1", + "@microsoft/microsoft-graph-client": "^2.2.1", + "msal": "^1.4.10" + }, + "dependencies": { + "@microsoft/microsoft-graph-client": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-2.2.1.tgz", + "integrity": "sha512-fbDN3UJ+jtSP9llAejqmslMcv498YuIrS3OS/Luivb8OSjdUESZKdP0gcUunnuNIayePVT0/bGYSJTzAIptJQQ==", + "requires": { + "@babel/runtime": "^7.4.4", + "msal": "^1.4.4", + "tslib": "^1.9.3" + } + } + } + }, + "@microsoft/microsoft-graph-client": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.5.tgz", + "integrity": "sha512-xQADFNLUhE78RzYadFZtOmy/5wBZenSZhVK193m40MTDC5hl1aYMQO1QOJApnKga8WcvMCDCU10taRhuXTOz5w==", + "requires": { + "@babel/runtime": "^7.12.5", + "tslib": "^2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", + "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" + } + } + }, + "@microsoft/microsoft-graph-types": { + "version": "2.31.0", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types/-/microsoft-graph-types-2.31.0.tgz", + "integrity": "sha512-ZEVraeRK3qmAs0sVenlEsoMKbNO4T960atGtZNYNWBd8MZ9KMeOF/+6HRVAYiGTRUo+WLlweMKXlDm+TDKGleQ==" + }, + "@microsoft/microsoft-graph-types-beta": { + "version": "0.16.0-preview", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-types-beta/-/microsoft-graph-types-beta-0.16.0-preview.tgz", + "integrity": "sha512-73d1b8pv8YnKx+oiQtMZDSey4ohmx/cfM/vFiAa5ZyLSj4nr9y/7wIT5jTIO+tkdniyBsfN/QQeDiRwyutcxAQ==" + }, + "@microsoft/tsdoc": { + "version": "0.12.24", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.12.24.tgz", + "integrity": "sha512-Mfmij13RUTmHEMi9vRUhMXD7rnGR2VvxeNYtaGtaJ4redwwjT4UXYJ+nzmVJF7hhd4pn/Fx5sncDKxMVFJSWPg==" + }, + "@microsoft/tsdoc-config": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.13.9.tgz", + "integrity": "sha512-VqqZn+rT9f6XujFPFR2aN9XKF/fuir/IzKVzoxI0vXIzxysp4ee6S2jCakmlGFHEasibifFTsJr7IYmRPxfzYw==", + "requires": { + "@microsoft/tsdoc": "0.12.24", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "exenv-es6": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exenv-es6/-/exenv-es6-1.1.1.tgz", + "integrity": "sha512-vlVu3N8d6yEMpMsEm+7sUBAI81aqYYuEvfK0jNqmdb/OPXzzH7QWDDnVjMvDSY47JdHEqx/dfC/q8WkfoTmpGQ==" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "idb": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/idb/-/idb-6.0.0.tgz", + "integrity": "sha512-+M367poGtpzAylX4pwcrZIa7cFQLfNkAOlMMLN2kw/2jGfJP6h+TB/unQNSVYwNtP8XqkLYrfuiVnxLQNP1tjA==" + }, + "is-core-module": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", + "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", + "requires": { + "has": "^1.0.3" + } + }, + "jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "lit-element": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-2.5.1.tgz", + "integrity": "sha512-ogu7PiJTA33bEK0xGu1dmaX5vhcRjBXCFexPja0e7P7jqLhTpNKYRPmE+GmiCaRVAbiQKGkUgkh/i6+bh++dPQ==", + "requires": { + "lit-html": "^1.1.1" + } + }, + "lit-html": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-1.4.1.tgz", + "integrity": "sha512-B9btcSgPYb1q4oSOb/PrOT6Z/H+r6xuNzfH4lFli/AWhYwdtrgQkQWBbIc6mdnf6E2IL3gDXdkkqNktpU0OZQA==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "msal": { + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.18.tgz", + "integrity": "sha512-QyWMWrZqpwtK6LEqhwtbikxIWqA1EOcdMvDeIDjIXdGU29wM4orwq538sPe1+JfKDIgPmJj1Fgi5B7luaw/IyA==", + "requires": { + "tslib": "^1.9.3" + } + }, + "office-ui-fabric-core": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/office-ui-fabric-core/-/office-ui-fabric-core-11.0.0.tgz", + "integrity": "sha512-K6+KGnBXXjfSxxZpp+4oDXVLgUc//7OnXrn8F08VoJnGhEz27WUf4ZuMa32SjGoqirWlb4JlKkXbOpC9cis6dQ==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + }, + "regenerator-runtime": { + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + }, + "resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "requires": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + } + }, + "tabbable": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz", + "integrity": "sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==" + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + } + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/package.json b/samples/app-nexus-productivity/GraphSample/GraphSample/package.json new file mode 100644 index 000000000..0f40843e0 --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/package.json @@ -0,0 +1,6 @@ +{ + "dependencies": { + "@microsoft/mgt": "^2.10.1", + "@microsoft/microsoft-graph-client": "^3.0.5" + } +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/TeamsLogin.js b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/TeamsLogin.js new file mode 100644 index 000000000..04624ee5c --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/TeamsLogin.js @@ -0,0 +1,15 @@ +// Import the providers and credential at the top of the page +import { Providers } from '@microsoft/mgt-element'; +import { TeamsFxProvider } from '@microsoft/mgt-teamsfx-provider'; +import { TeamsUserCredential, TeamsUserCredentialAuthConfig } from "@microsoft/teamsfx"; +const authConfig: TeamsUserCredentialAuthConfig = { + clientId: "0f0f6aac- da6d - 4a9a-938d - 42fb95cbda4c", + initiateLoginEndpoint: "https://login.microsoftonline.com/common", +}; +const scope = ["User.Read;MailboxSettings.Read;Mail.ReadWrite;Calendars.ReadWrite;Chat.ReadWrite;Tasks.ReadWrite;Directory.Read.All;Directory.ReadWrite.All;Team.ReadBasic.All;TeamSettings.Read.All;TeamSettings.ReadWrite.All;OnlineMeetingTranscript.Read.All;Files.Read.All;Sites.Read.All;Mail.Send;Notes.Create;Notes.ReadWrite;Notes.ReadWrite.All"]; +const credential = new TeamsUserCredential(authConfig); +const provider = new TeamsFxProvider(credential, scope); +Providers.globalProvider = provider; +// Put these code in a call-to-action callback function to avoid browser blocking automatically showing up pop-ups. +await credential.login(this.scope); +Providers.globalProvider.setState(ProviderState.SignedIn); \ No newline at end of file diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/appsettings.json b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/appsettings.json new file mode 100644 index 000000000..51f278dbd --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/appsettings.json @@ -0,0 +1,10 @@ +{ + "AzureAd": { + "Authority": "https://login.microsoftonline.com/common", + "ClientId": "0f0f6aac-da6d-4a9a-938d-42fb95cbda4c", + "ClientSecret": "6xp8Q~rrmRcby8Y2JEvzQHu1-ZwyqW3Su2WVScIi", + "ValidateAuthority": true + }, + + "GraphScopes": "User.Read;MailboxSettings.Read;Mail.ReadWrite;Calendars.ReadWrite;Chat.ReadWrite;Tasks.ReadWrite;Directory.Read.All;Directory.ReadWrite.All;Team.ReadBasic.All;TeamSettings.Read.All;TeamSettings.ReadWrite.All;OnlineMeetingTranscript.Read.All;Files.Read.All;Sites.Read.All;Mail.Send;Notes.Create;Notes.ReadWrite;Notes.ReadWrite.All;OnlineMeetings.ReadWrite;ChannelMessage.Send;ChannelMessage.ReadWrite;ChannelMessage.Edit;" +} diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/css/app.css b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/css/app.css new file mode 100644 index 000000000..a0af7b81f --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/css/app.css @@ -0,0 +1,89 @@ +@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); + +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + width: 100%; + height: 100%; + background:linear-gradient(#c5e5fc, rgb(252, 241, 252)); + background-repeat: no-repeat !important; + background-size: cover !important; + background-attachment: fixed !important; +} + + +@media screen and (min-width: 400px) { + html, body { + width: 100%; + height: 100%; + margin: 0; + padding: 0; + } +} + +h1:focus { + outline: none; +} + +a, .btn-link { + color: #0071c1; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.content { + padding-top: 1.1rem; + width: fit-content; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid greenyellow; +} + +.validation-message { + color: green; +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + width: 100%; + z-index: 1; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } + +.nav-profile-photo { + width: 36px; +} + +.nav-link { + padding: 0.5rem 1rem; +} + diff --git a/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/css/bootstrap.css.map b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/css/bootstrap.css.map new file mode 100644 index 000000000..cd35b271d --- /dev/null +++ b/samples/app-nexus-productivity/GraphSample/GraphSample/wwwroot/css/bootstrap.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","../../scss/_variables.scss","bootstrap.css","../../scss/mixins/_hover.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/mixins/_border-radius.scss","../../scss/_code.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/mixins/_breakpoints.scss","../../scss/mixins/_grid-framework.scss","../../scss/_tables.scss","../../scss/mixins/_table-row.scss","../../scss/_functions.scss","../../scss/_forms.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_forms.scss","../../scss/mixins/_gradients.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/mixins/_nav-divider.scss","../../scss/_button-group.scss","../../scss/_input-group.scss","../../scss/_custom-forms.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/mixins/_badge.scss","../../scss/_jumbotron.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_media.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_modal.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/utilities/_align.scss","../../scss/mixins/_background-variant.scss","../../scss/utilities/_background.scss","../../scss/utilities/_borders.scss","../../scss/mixins/_clearfix.scss","../../scss/utilities/_display.scss","../../scss/utilities/_embed.scss","../../scss/utilities/_flex.scss","../../scss/utilities/_float.scss","../../scss/mixins/_float.scss","../../scss/utilities/_position.scss","../../scss/utilities/_screenreaders.scss","../../scss/mixins/_screen-reader.scss","../../scss/utilities/_shadows.scss","../../scss/utilities/_sizing.scss","../../scss/utilities/_spacing.scss","../../scss/utilities/_text.scss","../../scss/mixins/_text-truncate.scss","../../scss/mixins/_text-emphasis.scss","../../scss/mixins/_text-hide.scss","../../scss/utilities/_visibility.scss","../../scss/mixins/_visibility.scss","../../scss/_print.scss"],"names":[],"mappings":"AAAA;;;;;GAKG;ACLH;EAGI,gBAAc;EAAd,kBAAc;EAAd,kBAAc;EAAd,gBAAc;EAAd,eAAc;EAAd,kBAAc;EAAd,kBAAc;EAAd,iBAAc;EAAd,gBAAc;EAAd,gBAAc;EAAd,cAAc;EAAd,gBAAc;EAAd,qBAAc;EAId,mBAAc;EAAd,qBAAc;EAAd,mBAAc;EAAd,gBAAc;EAAd,mBAAc;EAAd,kBAAc;EAAd,iBAAc;EAAd,gBAAc;EAId,mBAAiC;EAAjC,uBAAiC;EAAjC,uBAAiC;EAAjC,uBAAiC;EAAjC,wBAAiC;EAKnC,mMAAyB;EACzB,8GAAwB;CACzB;;ACED;;;EAGE,uBAAsB;CACvB;;AAED;EACE,wBAAuB;EACvB,kBAAiB;EACjB,+BAA8B;EAC9B,2BAA0B;EAC1B,8BAA6B;EAC7B,8CCZa;CDad;;AAIC;EACE,oBAAmB;CEgBtB;;AFVD;EACE,eAAc;CACf;;AAUD;EACE,UAAS;EACT,sLCgMoM;ED/LpM,gBCoMgC;EDnMhC,iBCwM+B;EDvM/B,iBC2M+B;ED1M/B,eC3CgB;ED4ChB,iBAAgB;EAChB,uBCtDa;CDuDd;;AEMD;EFEE,sBAAqB;CACtB;;AAQD;EACE,wBAAuB;EACvB,UAAS;EACT,kBAAiB;CAClB;;AAYD;EACE,cAAa;EACb,sBC6KyC;CD5K1C;;AAOD;EACE,cAAa;EACb,oBCkE8B;CDjE/B;;AASD;;EAEE,2BAA0B;EAC1B,0CAAiC;EAAjC,kCAAiC;EACjC,aAAY;EACZ,iBAAgB;CACjB;;AAED;EACE,oBAAmB;EACnB,mBAAkB;EAClB,qBAAoB;CACrB;;AAED;;;EAGE,cAAa;EACb,oBAAmB;CACpB;;AAED;;;;EAIE,iBAAgB;CACjB;;AAED;EACE,iBCgH+B;CD/GhC;;AAED;EACE,qBAAoB;EACpB,eAAc;CACf;;AAED;EACE,iBAAgB;CACjB;;AAED;EACE,mBAAkB;CACnB;;AAGD;;EAEE,oBAAmB;CACpB;;AAGD;EACE,eAAc;CACf;;AAOD;;EAEE,mBAAkB;EAClB,eAAc;EACd,eAAc;EACd,yBAAwB;CACzB;;AAED;EAAM,eAAc;CAAI;;AACxB;EAAM,WAAU;CAAI;;AAOpB;EACE,eC9Je;ED+Jf,sBC/B8B;EDgC9B,8BAA6B;EAC7B,sCAAqC;CAMtC;;AGnMC;EHgME,eCnCgD;EDoChD,2BCnCiC;CE9Jb;;AH2MxB;EACE,eAAc;EACd,sBAAqB;CAUtB;;AGnNC;EH4ME,eAAc;EACd,sBAAqB;CG1MtB;;AHoMH;EAUI,WAAU;CACX;;AAQH;;;;EAIE,kGCagH;EDZhH,eAAc;CACf;;AAED;EAEE,cAAa;EAEb,oBAAmB;EAEnB,eAAc;EAGd,8BAA6B;CAC9B;;AAOD;EAEE,iBAAgB;CACjB;;AAOD;EACE,uBAAsB;EACtB,mBAAkB;CACnB;;AAED;EAGE,iBAAgB;EAChB,uBAAsB;CACvB;;AAOD;EACE,0BAAyB;CAC1B;;AAED;EACE,qBC8BkC;ED7BlC,wBC6BkC;ED5BlC,eCrRgB;EDsRhB,iBAAgB;EAChB,qBAAoB;CACrB;;AAED;EAGE,oBAAmB;CACpB;;AAOD;EAEE,sBAAqB;EACrB,sBC+F2C;CD9F5C;;AAKD;EACE,iBAAgB;CACjB;;AAMD;EACE,oBAAmB;EACnB,2CAA0C;CAC3C;;AAED;;;;;EAKE,UAAS;EACT,qBAAoB;EACpB,mBAAkB;EAClB,qBAAoB;CACrB;;AAED;;EAEE,kBAAiB;CAClB;;AAED;;EAEE,qBAAoB;CACrB;;AAKD;;;;EAIE,2BAA0B;CAC3B;;AAGD;;;;EAIE,WAAU;EACV,mBAAkB;CACnB;;AAED;;EAEE,uBAAsB;EACtB,WAAU;CACX;;AAGD;;;;EASE,4BAA2B;CAC5B;;AAED;EACE,eAAc;EAEd,iBAAgB;CACjB;;AAED;EAME,aAAY;EAEZ,WAAU;EACV,UAAS;EACT,UAAS;CACV;;AAID;EACE,eAAc;EACd,YAAW;EACX,gBAAe;EACf,WAAU;EACV,qBAAoB;EACpB,kBAAiB;EACjB,qBAAoB;EACpB,eAAc;EACd,oBAAmB;CACpB;;AAED;EACE,yBAAwB;CACzB;;AEtGD;;EF2GE,aAAY;CACb;;AEvGD;EF8GE,qBAAoB;EACpB,yBAAwB;CACzB;;AE3GD;;EFmHE,yBAAwB;CACzB;;AAOD;EACE,cAAa;EACb,2BAA0B;CAC3B;;AAMD;EACE,sBAAqB;CACtB;;AAED;EACE,mBAAkB;EAClB,gBAAe;CAChB;;AAED;EACE,cAAa;CACd;;AExHD;EF6HE,yBAAwB;CACzB;;AI5dD;;EAEE,sBHyQyC;EGxQzC,qBHyQmC;EGxQnC,iBHyQ+B;EGxQ/B,iBHyQ+B;EGxQ/B,eHyQmC;CGxQpC;;AAED;EAAU,kBH2PyC;CG3Pb;;AACtC;EAAU,gBH2PuC;CG3PX;;AACtC;EAAU,mBH2P0C;CG3Pd;;AACtC;EAAU,kBH2PyC;CG3Pb;;AACtC;EAAU,mBH2P0C;CG3Pd;;AACtC;EAAU,gBH2OwB;CG3OI;;AAEtC;EACE,mBH2QoD;EG1QpD,iBH2Q+B;CG1QhC;;AAGD;EACE,gBH0PgC;EGzPhC,iBH8P+B;EG7P/B,iBHqP+B;CGpPhC;;AACD;EACE,kBHsPkC;EGrPlC,iBH0P+B;EGzP/B,iBHgP+B;CG/OhC;;AACD;EACE,kBHkPkC;EGjPlC,iBHsP+B;EGrP/B,iBH2O+B;CG1OhC;;AACD;EACE,kBH8OkC;EG7OlC,iBHkP+B;EGjP/B,iBHsO+B;CGrOhC;;AJmCD;EI3BE,iBHwEW;EGvEX,oBHuEW;EGtEX,UAAS;EACT,yCHtCa;CGuCd;;AAOD;;EAEE,eHiO+B;EGhO/B,iBH+L+B;CG9LhC;;AAED;;EAEE,eHqOgC;EGpOhC,0BH6OmC;CG5OpC;;AAOD;EC/EE,gBAAe;EACf,iBAAgB;CDgFjB;;AAGD;ECpFE,gBAAe;EACf,iBAAgB;CDqFjB;;AACD;EACE,sBAAqB;CAKtB;;AAND;EAII,qBHuN+B;CGtNhC;;AASH;EACE,eAAc;EACd,0BAAyB;CAC1B;;AAGD;EACE,oBHeW;EGdX,mBHyLoD;CGxLrD;;AAED;EACE,eAAc;EACd,eAAc;EACd,eHvGgB;CG4GjB;;AARD;EAMI,uBAAsB;CACvB;;AEpHH;ECIE,gBAAe;EAGf,aAAY;CDLb;;AAID;EACE,iBL61BwC;EK51BxC,uBLLa;EKMb,0BLHgB;EOTd,uBP+NgC;EMxNlC,gBAAe;EAGf,aAAY;CDQb;;AAMD;EAEE,sBAAqB;CACtB;;AAED;EACE,sBAA4B;EAC5B,eAAc;CACf;;AAED;EACE,eL80BqC;EK70BrC,eLxBgB;CKyBjB;;AGxCD;EACE,iBRs6BuC;EQr6BvC,eRwCe;EQvCf,uBAAsB;CAMvB;;AAHC;EACE,eAAc;CACf;;AAIH;EACE,uBR85BuC;EQ75BvC,iBRy5BuC;EQx5BvC,YRNa;EQOb,0BREgB;EOfd,sBPiO+B;CQ1MlC;;AAdD;EASI,WAAU;EACV,gBAAe;EACf,iBR6O6B;CQ3O9B;;ATwNH;ESnNE,eAAc;EACd,iBRw4BuC;EQv4BvC,eRdgB;CQsBjB;;AAXD;EAOI,mBAAkB;EAClB,eAAc;EACd,mBAAkB;CACnB;;AAIH;EACE,kBRq4BuC;EQp4BvC,mBAAkB;CACnB;;AC1CC;ECAA,YAAW;EACX,oBAAuC;EACvC,mBAAsC;EACtC,mBAAkB;EAClB,kBAAiB;CDDhB;;AEoDC;EFvDF;ICYI,iBVwLK;GSjMR;CRwiBF;;AUpfG;EFvDF;ICYI,iBVyLK;GSlMR;CR8iBF;;AU1fG;EFvDF;ICYI,iBV0LK;GSnMR;CRojBF;;AUhgBG;EFvDF;ICYI,kBV2LM;GSpMT;CR0jBF;;AQjjBC;ECZA,YAAW;EACX,oBAAuC;EACvC,mBAAsC;EACtC,mBAAkB;EAClB,kBAAiB;CDUhB;;AAQD;ECJA,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,oBAAuC;EACvC,mBAAsC;CDGrC;;AAID;EACE,gBAAe;EACf,eAAc;CAOf;;AATD;;EAMI,iBAAgB;EAChB,gBAAe;CAChB;;AGlCH;;;;;;EACE,mBAAkB;EAClB,YAAW;EACX,gBAAe;EACf,oBAA4B;EAC5B,mBAA2B;CAC5B;;AAkBG;EACE,2BAAa;EAAb,cAAa;EACb,qBAAY;EAAZ,aAAY;EACZ,gBAAe;CAChB;;AACD;EACE,mBAAc;EAAd,eAAc;EACd,YAAW;EACX,gBAAe;CAChB;;AAGC;EFFN,wBAAsC;EAAtC,oBAAsC;EAItC,qBAAuC;CEAhC;;AAFD;EFFN,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,kBAAsC;EAAtC,cAAsC;EAItC,eAAuC;CEAhC;;AAFD;EFFN,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,kBAAsC;EAAtC,cAAsC;EAItC,eAAuC;CEAhC;;AAFD;EFFN,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,kBAAsC;EAAtC,cAAsC;EAItC,eAAuC;CEAhC;;AAFD;EFFN,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,yBAAsC;EAAtC,qBAAsC;EAItC,sBAAuC;CEAhC;;AAFD;EFFN,mBAAsC;EAAtC,eAAsC;EAItC,gBAAuC;CEAhC;;AAGH;EAAwB,mBAAS;EAAT,UAAS;CAAI;;AAErC;EAAuB,mBZoKG;EYpKH,UZoKG;CYpKoB;;AAG5C;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,kBADZ;EACY,SADZ;CACyB;;AAArC;EAAwB,mBADZ;EACY,UADZ;CACyB;;AAArC;EAAwB,mBADZ;EACY,UADZ;CACyB;;AAArC;EAAwB,mBADZ;EACY,UADZ;CACyB;;AAMnC;EFTR,uBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,iBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,iBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,iBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;AAFD;EFTR,wBAA8C;CEWrC;;ADDP;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,mBAAS;IAAT,UAAS;GAAI;EAErC;IAAuB,mBZoKG;IYpKH,UZoKG;GYpKoB;EAG5C;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CX02BV;;AU32BG;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,mBAAS;IAAT,UAAS;GAAI;EAErC;IAAuB,mBZoKG;IYpKH,UZoKG;GYpKoB;EAG5C;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CXw/BV;;AUz/BG;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,mBAAS;IAAT,UAAS;GAAI;EAErC;IAAuB,mBZoKG;IYpKH,UZoKG;GYpKoB;EAG5C;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CXsoCV;;AUvoCG;EC7BE;IACE,2BAAa;IAAb,cAAa;IACb,qBAAY;IAAZ,aAAY;IACZ,gBAAe;GAChB;EACD;IACE,mBAAc;IAAd,eAAc;IACd,YAAW;IACX,gBAAe;GAChB;EAGC;IFFN,wBAAsC;IAAtC,oBAAsC;IAItC,qBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,kBAAsC;IAAtC,cAAsC;IAItC,eAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,yBAAsC;IAAtC,qBAAsC;IAItC,sBAAuC;GEAhC;EAFD;IFFN,mBAAsC;IAAtC,eAAsC;IAItC,gBAAuC;GEAhC;EAGH;IAAwB,mBAAS;IAAT,UAAS;GAAI;EAErC;IAAuB,mBZoKG;IYpKH,UZoKG;GYpKoB;EAG5C;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,kBADZ;IACY,SADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAArC;IAAwB,mBADZ;IACY,UADZ;GACyB;EAMnC;IFTR,eAA4B;GEWnB;EAFD;IFTR,uBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,iBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;EAFD;IFTR,wBAA8C;GEWrC;CXoxCV;;AY70CD;EACE,YAAW;EACX,oBbyHW;EaxHX,8Bb6TuC;CaxSxC;;AAxBD;;EAOI,iBbsTgC;EarThC,oBAAmB;EACnB,8BbAc;CaCf;;AAVH;EAaI,uBAAsB;EACtB,iCbLc;CaMf;;AAfH;EAkBI,8BbTc;CaUf;;AAnBH;EAsBI,uBbhBW;CaiBZ;;AAQH;;EAGI,gBb4R+B;Ca3RhC;;AAQH;EACE,0BbnCgB;CagDjB;;AAdD;;EAKI,0BbvCc;CawCf;;AANH;;EAWM,yBAA8C;CAC/C;;AAIL;;;;EAKI,UAAS;CACV;;AAOH;EAEI,sCb1DW;Ca2DZ;;AXnED;EW8EI,uCbtES;CERS;;AYPtB;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,0BC2E4D;CD1E7D;;AZEH;EYQM,0BAJsC;CZJtB;;AYGtB;;EASQ,0BARoC;CASrC;;AApBP;;;EAII,uCdWS;CcVV;;AZEH;EYQM,uCAJsC;CZJtB;;AYGtB;;EASQ,uCARoC;CASrC;;ADwFT;EAGM,Yb1GS;Ea2GT,0BblGY;EamGZ,sBb4NgD;Ca3NjD;;AANL;EAWM,eb3GY;Ea4GZ,0BbjHY;EakHZ,sBbjHY;CakHb;;AAIL;EACE,Yb1Ha;Ea2Hb,0BblHgB;Ca2IjB;;AA3BD;;;EAOI,sBbwMkD;CavMnD;;AARH;EAWI,UAAS;CACV;;AAZH;EAgBM,4CbzIS;Ca0IV;;AXxIH;EW8IM,6CbhJO;CEES;;AS6DpB;EEkGA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbA;IAUK,UAAS;GACV;CZ84CR;;AU3/CG;EEkGA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbA;IAUK,UAAS;GACV;CZ25CR;;AUxgDG;EEkGA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbA;IAUK,UAAS;GACV;CZw6CR;;AUrhDG;EEkGA;IAEI,eAAc;IACd,YAAW;IACX,iBAAgB;IAChB,kCAAiC;IACjC,6CAA4C;GAO/C;EAbA;IAUK,UAAS;GACV;CZq7CR;;AYr8CD;EAOQ,eAAc;EACd,YAAW;EACX,iBAAgB;EAChB,kCAAiC;EACjC,6CAA4C;CAO/C;;AAlBL;EAeU,UAAS;CACV;;AGhLT;EACE,eAAc;EACd,YAAW;EACX,4BhBob4F;EgBnb5F,0BhBoVkC;EgBnVlC,gBhBoPgC;EgBnPhC,iBhB4P+B;EgB3P/B,ehBIgB;EgBHhB,uBhBJa;EgBKb,6BAA4B;EAC5B,0BhBFgB;EgBOd,uBhB8MgC;EiB9N9B,yEjBgc4F;CgB5YjG;;AChDC;EDHF;ICII,iBAAgB;GD+CnB;CfmlDA;;AetoDD;EA0BI,8BAA6B;EAC7B,UAAS;CACV;;AErBD;EACE,elBGc;EkBFd,uBlBLW;EkBMX,sBlBkasE;EkBjatE,WAAU;EAKR,iDlBkBW;CkBhBd;;AFlBH;EAmCI,ehBzBc;EgB2Bd,WAAU;CACX;;AAtCH;EAmCI,ehBzBc;EgB2Bd,WAAU;CACX;;AAtCH;EAmCI,ehBzBc;EgB2Bd,WAAU;CACX;;AAtCH;EAmCI,ehBzBc;EgB2Bd,WAAU;CACX;;AAtCH;EAmCI,ehBzBc;EgB2Bd,WAAU;CACX;;AAtCH;EA+CI,0BhBzCc;EgB2Cd,WAAU;CACX;;AAGH;EAOI,ehBjDc;EgBkDd,uBhBzDW;CgB0DZ;;AAIH;;EAEE,eAAc;EACd,YAAW;CACZ;;AASD;EACE,kCAA+D;EAC/D,qCAAkE;EAClE,iBAAgB;EAChB,mBAAkB;EAClB,iBhB8K+B;CgB7KhC;;AAED;EACE,gCAAkE;EAClE,mCAAqE;EACrE,mBhBgKoD;EgB/JpD,iBhB4H+B;CgB3HhC;;AAED;EACE,iCAAkE;EAClE,oCAAqE;EACrE,oBhB0JoD;EgBzJpD,iBhBsH+B;CgBrHhC;;AAQD;EACE,eAAc;EACd,YAAW;EACX,sBhByOmC;EgBxOnC,yBhBwOmC;EgBvOnC,iBAAgB;EAChB,iBhBiJ+B;EgBhJ/B,ehBrGgB;EgBsGhB,8BAA6B;EAC7B,0BAAyB;EACzB,oBAAmC;CAOpC;;AAjBD;EAcI,iBAAgB;EAChB,gBAAe;CAChB;;AAWH;EACE,8BhBmT+F;EgBlT/F,wBhBwNiC;EgBvNjC,oBhBkHoD;EgBjHpD,iBhB8E+B;EO1N7B,sBPiO+B;CgBnFlC;;AAED;EACE,6BhB8S+F;EgB7S/F,qBhBoNgC;EgBnNhC,mBhByGoD;EgBxGpD,iBhBqE+B;EOzN7B,sBPgO+B;CgB1ElC;;AAGD;EAGI,aAAY;CACb;;AAGH;EACE,aAAY;CACb;;AAQD;EACE,oBhBiS0C;CgBhS3C;;AAED;EACE,eAAc;EACd,oBhBmR4C;CgBlR7C;;AAOD;EACE,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,mBAAkB;EAClB,kBAAiB;CAOlB;;AAXD;;EAQI,mBAAkB;EAClB,kBAAiB;CAClB;;AAQH;EACE,mBAAkB;EAClB,eAAc;EACd,sBhBwP6C;CgBvP9C;;AAED;EACE,mBAAkB;EAClB,mBhBoP2C;EgBnP3C,sBhBkP6C;CgB7O9C;;AARD;EAMI,ehB1Mc;CgB2Mf;;AAGH;EACE,iBAAgB;CACjB;;AAED;EACE,4BAAoB;EAApB,qBAAoB;EACpB,uBAAmB;EAAnB,oBAAmB;EACnB,gBAAe;EACf,sBhBuO4C;CgB9N7C;;AAbD;EAQI,iBAAgB;EAChB,cAAa;EACb,wBhBkO4C;EgBjO5C,eAAc;CACf;;AEjND;EACE,cAAa;EACb,YAAW;EACX,oBlBua0C;EkBta1C,elBoQ6B;EkBnQ7B,elBaa;CkBZd;;AAED;EACE,mBAAkB;EAClB,UAAS;EACT,WAAU;EACV,cAAa;EACb,gBAAe;EACf,wBlByrBqC;EkBxrBrC,kBAAiB;EACjB,oBlBoNkD;EkBnNlD,iBlB0N6B;EkBzN7B,YlBrCW;EkBsCX,yClBDa;EO3Cb,uBP+NgC;CkBjLjC;;AAIC;;;EAEE,sBlBTW;CkBoBZ;;AAbD;;;EAKI,sBlBZS;EkBaT,iDlBbS;CkBcV;;AAPH;;;;;;;;EAWI,eAAc;CACf;;AAKH;;;EAII,eAAc;CACf;;AAKH;EAGI,elBrCS;CkBsCV;;AAJH;;;EAQI,eAAc;CACf;;AAKH;EAGI,elBnDS;CkBwDV;;AARH;EAMM,0BAAsC;CACvC;;AAPL;;;EAYI,eAAc;CACf;;AAbH;ECzFA,0BD0G+C;CAC1C;;AAlBL;EAuBM,iElBvEO;CkBwER;;AAOL;EAGI,sBlBlFS;CkBqFV;;AANH;EAKe,sBAAqB;CAAI;;AALxC;;;EAUI,eAAc;CACf;;AAXH;EAeM,iDlB9FO;CkB+FR;;AAjHP;EACE,cAAa;EACb,YAAW;EACX,oBlBua0C;EkBta1C,elBoQ6B;EkBnQ7B,elBUa;CkBTd;;AAED;EACE,mBAAkB;EAClB,UAAS;EACT,WAAU;EACV,cAAa;EACb,gBAAe;EACf,wBlByrBqC;EkBxrBrC,kBAAiB;EACjB,oBlBoNkD;EkBnNlD,iBlB0N6B;EkBzN7B,YlBrCW;EkBsCX,yClBJa;EOxCb,uBP+NgC;CkBjLjC;;AAIC;;;EAEE,sBlBZW;CkBuBZ;;AAbD;;;EAKI,sBlBfS;EkBgBT,iDlBhBS;CkBiBV;;AAPH;;;;;;;;EAWI,eAAc;CACf;;AAKH;;;EAII,eAAc;CACf;;AAKH;EAGI,elBxCS;CkByCV;;AAJH;;;EAQI,eAAc;CACf;;AAKH;EAGI,elBtDS;CkB2DV;;AARH;EAMM,0BAAsC;CACvC;;AAPL;;;EAYI,eAAc;CACf;;AAbH;ECzFA,0BD0G+C;CAC1C;;AAlBL;EAuBM,iElB1EO;CkB2ER;;AAOL;EAGI,sBlBrFS;CkBwFV;;AANH;EAKe,sBAAqB;CAAI;;AALxC;;;EAUI,eAAc;CACf;;AAXH;EAeM,iDlBjGO;CkBkGR;;AFuHT;EACE,qBAAa;EAAb,cAAa;EACb,wBAAmB;EAAnB,oBAAmB;EACnB,uBAAmB;EAAnB,oBAAmB;CAoEpB;;AAvED;EASI,YAAW;CACZ;;ALnNC;EKyMJ;IAeM,qBAAa;IAAb,cAAa;IACb,uBAAmB;IAAnB,oBAAmB;IACnB,sBAAuB;IAAvB,wBAAuB;IACvB,iBAAgB;GACjB;EAnBL;IAuBM,qBAAa;IAAb,cAAa;IACb,mBAAc;IAAd,eAAc;IACd,wBAAmB;IAAnB,oBAAmB;IACnB,uBAAmB;IAAnB,oBAAmB;IACnB,iBAAgB;GACjB;EA5BL;IAgCM,sBAAqB;IACrB,YAAW;IACX,uBAAsB;GACvB;EAnCL;IAuCM,sBAAqB;GACtB;EAxCL;;IA4CM,YAAW;GACZ;EA7CL;IAkDM,qBAAa;IAAb,cAAa;IACb,uBAAmB;IAAnB,oBAAmB;IACnB,sBAAuB;IAAvB,wBAAuB;IACvB,YAAW;IACX,gBAAe;GAChB;EAvDL;IAyDM,mBAAkB;IAClB,cAAa;IACb,sBhB2IwC;IgB1IxC,eAAc;GACf;EA7DL;IAgEM,uBAAmB;IAAnB,oBAAmB;IACnB,sBAAuB;IAAvB,wBAAuB;GACxB;EAlEL;IAoEM,iBAAgB;GACjB;CfouDJ;;AmBxiED;EACE,sBAAqB;EACrB,iBpB4P+B;EoB3P/B,mBAAkB;EAClB,oBAAmB;EACnB,uBAAsB;EACtB,0BAAiB;EAAjB,uBAAiB;EAAjB,sBAAiB;EAAjB,kBAAiB;EACjB,8BAA2C;ECsF3C,0BrB2PkC;EqB1PlC,gBrB2JgC;EqB1JhC,iBrBmK+B;EqBhK7B,uBrB2HgC;EiB9N9B,sIjB6Y6I;CoBlWlJ;;AHvCC;EGHF;IHII,iBAAgB;GGsCnB;CnBmhEA;;ACnjEC;EkBGE,sBAAqB;ClBAtB;;AkBbH;EAkBI,WAAU;EACV,iDpBea;CoBdd;;AApBH;EAyBI,cpBuW6B;CoBrW9B;;AA3BH;EA+BI,gBAAe;CAChB;;AAaH;;EAEE,qBAAoB;CACrB;;AAQC;ECxDA,YrBIa;EmBJX,0BnBkCa;EqBhCf,sBrBgCe;CoBwBd;;AlBpDD;EmBAE,YrBFW;EmBJX,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,gDrBiBW;CqBfd;;AAGD;EAEE,YrBpBW;EqBqBX,0BrBSa;EqBRb,sBrBQa;CqBPd;;AAED;;EAGE,YrB5BW;EqB6BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDrBVS;CqBYZ;;ADUH;ECxDA,YrBIa;EmBJX,0BnBUc;EqBRhB,sBrBQgB;CoBgDf;;AlBpDD;EmBAE,YrBFW;EmBJX,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,kDrBPY;CqBSf;;AAGD;EAEE,YrBpBW;EqBqBX,0BrBfc;EqBgBd,sBrBhBc;CqBiBf;;AAED;;EAGE,YrB5BW;EqB6BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,kDrBlCU;CqBoCb;;ADUH;ECxDA,YrBIa;EmBJX,0BnByCa;EqBvCf,sBrBuCe;CoBiBd;;AlBpDD;EmBAE,YrBFW;EmBJX,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,gDrBwBW;CqBtBd;;AAGD;EAEE,YrBpBW;EqBqBX,0BrBgBa;EqBfb,sBrBea;CqBdd;;AAED;;EAGE,YrB5BW;EqB6BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDrBHS;CqBKZ;;ADUH;ECxDA,YrBIa;EmBJX,0BnB2Ca;EqBzCf,sBrByCe;CoBed;;AlBpDD;EmBAE,YrBFW;EmBJX,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,iDrB0BW;CqBxBd;;AAGD;EAEE,YrBpBW;EqBqBX,0BrBkBa;EqBjBb,sBrBiBa;CqBhBd;;AAED;;EAGE,YrB5BW;EqB6BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,iDrBDS;CqBGZ;;ADUH;ECxDA,erBagB;EmBbd,0BnBwCa;EqBtCf,sBrBsCe;CoBkBd;;AlBpDD;EmBAE,erBOc;EmBbd,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,gDrBuBW;CqBrBd;;AAGD;EAEE,erBXc;EqBYd,0BrBea;EqBdb,sBrBca;CqBbd;;AAED;;EAGE,erBnBc;EqBoBd,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDrBJS;CqBMZ;;ADUH;ECxDA,YrBIa;EmBJX,0BnBsCa;EqBpCf,sBrBoCe;CoBoBd;;AlBpDD;EmBAE,YrBFW;EmBJX,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,gDrBqBW;CqBnBd;;AAGD;EAEE,YrBpBW;EqBqBX,0BrBaa;EqBZb,sBrBYa;CqBXd;;AAED;;EAGE,YrB5BW;EqB6BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,gDrBNS;CqBQZ;;ADUH;ECxDA,erBagB;EmBbd,0BnBKc;EqBHhB,sBrBGgB;CoBqDf;;AlBpDD;EmBAE,erBOc;EmBbd,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,kDrBZY;CqBcf;;AAGD;EAEE,erBXc;EqBYd,0BrBpBc;EqBqBd,sBrBrBc;CqBsBf;;AAED;;EAGE,erBnBc;EqBoBd,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,kDrBvCU;CqByCb;;ADUH;ECxDA,YrBIa;EmBJX,0BnBYc;EqBVhB,sBrBUgB;CoB8Cf;;AlBpDD;EmBAE,YrBFW;EmBJX,0BEDoF;EASpF,sBATyH;CnBOrG;;AmBKtB;EAMI,+CrBLY;CqBOf;;AAGD;EAEE,YrBpBW;EqBqBX,0BrBbc;EqBcd,sBrBdc;CqBef;;AAED;;EAGE,YrB5BW;EqB6BX,0BAlCuK;EAsCvK,sBAtC+M;CAgDhN;;AARC;;EAKI,+CrBhCU;CqBkCb;;ADgBH;ECXA,erBjBe;EqBkBf,8BAA6B;EAC7B,uBAAsB;EACtB,sBrBpBe;CoB8Bd;;ACRD;EACE,YrBrDW;EqBsDX,0BrBxBa;EqByBb,sBrBzBa;CqB0Bd;;AAED;EAEE,gDrB9Ba;CqB+Bd;;AAED;EAEE,erBnCa;EqBoCb,8BAA6B;CAC9B;;AAED;;EAGE,YrBxEW;EqByEX,0BrB3Ca;EqB4Cb,sBrB5Ca;CqBsDd;;AARC;;EAKI,gDrBnDS;CqBqDZ;;ADzBH;ECXA,erBzCgB;EqB0ChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBrB5CgB;CoBsDf;;ACRD;EACE,YrBrDW;EqBsDX,0BrBhDc;EqBiDd,sBrBjDc;CqBkDf;;AAED;EAEE,kDrBtDc;CqBuDf;;AAED;EAEE,erB3Dc;EqB4Dd,8BAA6B;CAC9B;;AAED;;EAGE,YrBxEW;EqByEX,0BrBnEc;EqBoEd,sBrBpEc;CqB8Ef;;AARC;;EAKI,kDrB3EU;CqB6Eb;;ADzBH;ECXA,erBVe;EqBWf,8BAA6B;EAC7B,uBAAsB;EACtB,sBrBbe;CoBuBd;;ACRD;EACE,YrBrDW;EqBsDX,0BrBjBa;EqBkBb,sBrBlBa;CqBmBd;;AAED;EAEE,gDrBvBa;CqBwBd;;AAED;EAEE,erB5Ba;EqB6Bb,8BAA6B;CAC9B;;AAED;;EAGE,YrBxEW;EqByEX,0BrBpCa;EqBqCb,sBrBrCa;CqB+Cd;;AARC;;EAKI,gDrB5CS;CqB8CZ;;ADzBH;ECXA,erBRe;EqBSf,8BAA6B;EAC7B,uBAAsB;EACtB,sBrBXe;CoBqBd;;ACRD;EACE,YrBrDW;EqBsDX,0BrBfa;EqBgBb,sBrBhBa;CqBiBd;;AAED;EAEE,iDrBrBa;CqBsBd;;AAED;EAEE,erB1Ba;EqB2Bb,8BAA6B;CAC9B;;AAED;;EAGE,YrBxEW;EqByEX,0BrBlCa;EqBmCb,sBrBnCa;CqB6Cd;;AARC;;EAKI,iDrB1CS;CqB4CZ;;ADzBH;ECXA,erBXe;EqBYf,8BAA6B;EAC7B,uBAAsB;EACtB,sBrBde;CoBwBd;;ACRD;EACE,erB5Cc;EqB6Cd,0BrBlBa;EqBmBb,sBrBnBa;CqBoBd;;AAED;EAEE,gDrBxBa;CqByBd;;AAED;EAEE,erB7Ba;EqB8Bb,8BAA6B;CAC9B;;AAED;;EAGE,erB/Dc;EqBgEd,0BrBrCa;EqBsCb,sBrBtCa;CqBgDd;;AARC;;EAKI,gDrB7CS;CqB+CZ;;ADzBH;ECXA,erBbe;EqBcf,8BAA6B;EAC7B,uBAAsB;EACtB,sBrBhBe;CoB0Bd;;ACRD;EACE,YrBrDW;EqBsDX,0BrBpBa;EqBqBb,sBrBrBa;CqBsBd;;AAED;EAEE,gDrB1Ba;CqB2Bd;;AAED;EAEE,erB/Ba;EqBgCb,8BAA6B;CAC9B;;AAED;;EAGE,YrBxEW;EqByEX,0BrBvCa;EqBwCb,sBrBxCa;CqBkDd;;AARC;;EAKI,gDrB/CS;CqBiDZ;;ADzBH;ECXA,erB9CgB;EqB+ChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBrBjDgB;CoB2Df;;ACRD;EACE,erB5Cc;EqB6Cd,0BrBrDc;EqBsDd,sBrBtDc;CqBuDf;;AAED;EAEE,kDrB3Dc;CqB4Df;;AAED;EAEE,erBhEc;EqBiEd,8BAA6B;CAC9B;;AAED;;EAGE,erB/Dc;EqBgEd,0BrBxEc;EqByEd,sBrBzEc;CqBmFf;;AARC;;EAKI,kDrBhFU;CqBkFb;;ADzBH;ECXA,erBvCgB;EqBwChB,8BAA6B;EAC7B,uBAAsB;EACtB,sBrB1CgB;CoBoDf;;ACRD;EACE,YrBrDW;EqBsDX,0BrB9Cc;EqB+Cd,sBrB/Cc;CqBgDf;;AAED;EAEE,+CrBpDc;CqBqDf;;AAED;EAEE,erBzDc;EqB0Dd,8BAA6B;CAC9B;;AAED;;EAGE,YrBxEW;EqByEX,0BrBjEc;EqBkEd,sBrBlEc;CqB4Ef;;AARC;;EAKI,+CrBzEU;CqB2Eb;;ADdL;EACE,iBpBoL+B;EoBnL/B,epBzCe;EoB0Cf,8BAA6B;CAuB9B;;AlB7FC;EkByEE,epBoFgD;EoBnFhD,2BpBoFiC;EoBnFjC,8BAA6B;EAC7B,0BAAyB;ClB5EL;;AkBmExB;EAcI,2BpB6EiC;EoB5EjC,0BAAyB;EACzB,iBAAgB;CACjB;;AAjBH;EAqBI,epBpFc;EoBqFd,qBAAoB;CACrB;;AAUH;ECbE,qBrBuQgC;EqBtQhC,mBrB4JoD;EqB3JpD,iBrBwH+B;EqBrH7B,sBrB4H+B;CoBlHlC;;AAED;ECjBE,wBrBmQiC;EqBlQjC,oBrB6JoD;EqB5JpD,iBrByH+B;EqBtH7B,sBrB6H+B;CoB/GlC;;AAOD;EACE,eAAc;EACd,YAAW;CAMZ;;AARD;EAMI,mBpBwQ+B;CoBvQhC;;AAIH;;;EAII,YAAW;CACZ;;AE3IH;ELGM,iCjB4O2C;CsBzOhD;;ALCC;EKPF;ILQI,iBAAgB;GKFnB;CrBgrFA;;AqBtrFD;EAII,WAAU;CACX;;AAGH;EAEI,cAAa;CACd;;AAGH;EACE,mBAAkB;EAClB,UAAS;EACT,iBAAgB;ELdZ,8BjB6OwC;CsB7N7C;;ALZC;EKOF;ILNI,iBAAgB;GKWnB;CrBwrFA;;AsB5sFD;;;;EAIE,mBAAkB;CACnB;;ACuBG;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EAlCf,wBAA8B;EAC9B,sCAA4C;EAC5C,iBAAgB;EAChB,qCAA2C;CAuCxC;;AAkBD;EACE,eAAc;CACf;;ADjDL;EACE,mBAAkB;EAClB,UAAS;EACT,QAAO;EACP,cvBklBsC;EuBjlBtC,cAAa;EACb,YAAW;EACX,iBvBijBuC;EuBhjBvC,kBAA8B;EAC9B,qBAA4B;EAC5B,gBvBuOgC;EuBtOhC,evBNgB;EuBOhB,iBAAgB;EAChB,iBAAgB;EAChB,uBvBlBa;EuBmBb,6BAA4B;EAC5B,sCvBVa;EOhBX,uBP+NgC;CuBlMnC;;AAED;EACE,SAAQ;EACR,WAAU;CACX;;AAID;EAEI,UAAS;EACT,aAAY;EACZ,cAAa;EACb,wBvByhBuC;CuBxhBxC;;ACnBC;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EA3Bf,cAAa;EACb,sCAA4C;EAC5C,2BAAiC;EACjC,qCAA2C;CAgCxC;;AAkBD;EACE,eAAc;CACf;;ADRL;EAEI,OAAM;EACN,YAAW;EACX,WAAU;EACV,cAAa;EACb,sBvB2gBuC;CuB1gBxC;;ACjCC;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;EApBf,oCAA0C;EAC1C,gBAAe;EACf,uCAA6C;EAC7C,yBAA+B;CAyB5B;;AAkBD;EACE,eAAc;CACf;;AAlCD;EDsCE,kBAAiB;CAClB;;AAIL;EAEI,OAAM;EACN,YAAW;EACX,WAAU;EACV,cAAa;EACb,uBvB0fuC;CuBzfxC;;AClDC;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,qBAA+B;EAC/B,wBAAkC;EAClC,YAAW;CAQZ;;AAdD;EAkBI,cAAa;CACd;;AAED;EACE,sBAAqB;EACrB,SAAQ;EACR,UAAS;EACT,sBAAgC;EAChC,wBAAkC;EAClC,YAAW;EAlCjB,oCAA0C;EAC1C,0BAAgC;EAChC,uCAA6C;CAkCxC;;AAGH;EACE,eAAc;CACf;;AAbC;EDkCA,kBAAiB;CAClB;;AAML;EAKI,YAAW;EACX,aAAY;CACb;;AAKH;EElGE,UAAS;EACT,iBAAmB;EACnB,iBAAgB;EAChB,8BzBIgB;CuB6FjB;;AAKD;EACE,eAAc;EACd,YAAW;EACX,wBvByewC;EuBxexC,YAAW;EACX,iBvBiJ+B;EuBhJ/B,evBjGgB;EuBkGhB,oBAAmB;EACnB,oBAAmB;EACnB,8BAA6B;EAC7B,UAAS;CAwBV;;ArBhIC;EqB2GE,evBsdqD;EuBrdrD,sBAAqB;EJtHrB,0BnBKc;CEQf;;AqB2FH;EAoBI,YvBxHW;EuByHX,sBAAqB;EJ7HrB,0BnBkCa;CuB6Fd;;AAvBH;EA2BI,evBzHc;EuB0Hd,8BAA6B;CAK9B;;AAGH;EACE,eAAc;CACf;;AAGD;EACE,eAAc;EACd,uBvBicwC;EuBhcxC,iBAAgB;EAChB,oBvBsGoD;EuBrGpD,evB5IgB;EuB6IhB,oBAAmB;CACpB;;AAGD;EACE,eAAc;EACd,wBvBubwC;EuBtbxC,evBjJgB;CuBkJjB;;AGlKD;;EAEE,mBAAkB;EAClB,4BAAoB;EAApB,qBAAoB;EACpB,uBAAsB;CAyBvB;;AA7BD;;EAOI,mBAAkB;EAClB,mBAAc;EAAd,eAAc;CAYf;;AxBXD;;EwBII,WAAU;CxBJQ;;AwBTxB;;;;EAkBM,WAAU;CACX;;AAnBL;;;;;;;;EA2BI,kB1BkM6B;C0BjM9B;;AAIH;EACE,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,qBAA2B;EAA3B,4BAA2B;CAK5B;;AARD;EAMI,YAAW;CACZ;;AAGH;EAEI,eAAc;CACf;;AAHH;;EnB5BI,2BmBoC8B;EnBnC9B,8BmBmC8B;CAC/B;;AATH;;EnBdI,0BmB2B6B;EnB1B7B,6BmB0B6B;CAC9B;;AAeH;EACE,yBAAmC;EACnC,wBAAkC;CAWnC;;AAbD;;;EAOI,eAAc;CACf;;AAED;EACE,gBAAe;CAChB;;AAGH;EACE,wBAAsC;EACtC,uBAAqC;CACtC;;AAED;EACE,uBAAsC;EACtC,sBAAqC;CACtC;;AAmBD;EACE,2BAAsB;EAAtB,uBAAsB;EACtB,sBAAuB;EAAvB,wBAAuB;EACvB,sBAAuB;EAAvB,wBAAuB;CAyBxB;;AA5BD;;EAOI,YAAW;CACZ;;AARH;;;;EAcI,iB1B8F6B;E0B7F7B,eAAc;CACf;;AAhBH;;EnB5FI,8BmBiH+B;EnBhH/B,6BmBgH+B;CAChC;;AAtBH;;EnB1GI,0BmBoI4B;EnBnI5B,2BmBmI4B;CAC7B;;AAgBH;;EAGI,iBAAgB;CAQjB;;AAXH;;;;EAOM,mBAAkB;EAClB,uBAAsB;EACtB,qBAAoB;CACrB;;ACnKL;EACE,mBAAkB;EAClB,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,wBAAoB;EAApB,qBAAoB;EACpB,YAAW;CA+CZ;;AApDD;;;EAUI,mBAAkB;EAClB,mBAAc;EAAd,eAAc;EAGd,UAAS;EACT,iBAAgB;CAOjB;;AAtBH;;;;;;;;;EAoBM,kB3BsM2B;C2BrM5B;;AArBL;;;EA4BI,WAAU;CACX;;AA7BH;EAiCI,WAAU;CACX;;AAlCH;;EpBWI,2BoB2BmD;EpB1BnD,8BoB0BmD;CAAK;;AAtC5D;;EpByBI,0BoBcmD;EpBbnD,6BoBamD;CAAK;;AAvC5D;EA6CI,qBAAa;EAAb,cAAa;EACb,uBAAmB;EAAnB,oBAAmB;CAKpB;;AAnDH;;EpBWI,2BoBsC6E;EpBrC7E,8BoBqC6E;CAAK;;AAjDtF;EpByBI,0BoByBsE;EpBxBtE,6BoBwBsE;CAAK;;AAW/E;;EAEE,qBAAa;EAAb,cAAa;CAgBd;;AAlBD;;EAQI,mBAAkB;EAClB,WAAU;CACX;;AAVH;;;;;;;;EAgBI,kB3B6I6B;C2B5I9B;;AAGH;EAAuB,mB3ByIU;C2BzI4B;;AAC7D;EAAsB,kB3BwIW;C2BxI0B;;AAQ3D;EACE,qBAAa;EAAb,cAAa;EACb,uBAAmB;EAAnB,oBAAmB;EACnB,0B3B2PkC;E2B1PlC,iBAAgB;EAChB,gB3B0JgC;E2BzJhC,iB3B8J+B;E2B7J/B,iB3BiK+B;E2BhK/B,e3BvFgB;E2BwFhB,mBAAkB;EAClB,oBAAmB;EACnB,0B3B/FgB;E2BgGhB,0B3B9FgB;EOVd,uBP+NgC;C2B/GnC;;AApBD;;EAkBI,cAAa;CACd;;AASH;;;;;EAKE,6B3BkU+F;E2BjU/F,qB3BwOgC;E2BvOhC,mB3B6HoD;E2B5HpD,iB3ByF+B;EOzN7B,sBPgO+B;C2B9FlC;;AAED;;;;;EAKE,8B3BmT+F;E2BlT/F,wB3BwNiC;E2BvNjC,oB3BkHoD;E2BjHpD,iB3B8E+B;EO1N7B,sBPiO+B;C2BnFlC;;AAUD;;;;;;EpB3II,2BoBiJ4B;EpBhJ5B,8BoBgJ4B;CAC/B;;AAED;;;;;;EpBtII,0BoB4I2B;EpB3I3B,6BoB2I2B;CAC9B;;ACnKD;EACE,mBAAkB;EAClB,eAAc;EACd,mBAAiD;EACjD,qB5B2c4C;C4B1c7C;;AAED;EACE,4BAAoB;EAApB,qBAAoB;EACpB,mB5Buc0C;C4Btc3C;;AAED;EACE,mBAAkB;EAClB,YAAW;EACX,WAAU;CA4BX;;AA/BD;EAMI,Y5BjBW;EmBJX,0BnBkCa;C4BVd;;AATH;EAaI,iE5BMa;C4BLd;;AAdH;EAiBI,Y5B5BW;E4B6BX,0B5Boc8E;C4Blc/E;;AApBH;EAwBM,e5B7BY;C4BkCb;;AA7BL;EA2BQ,0B5BpCU;C4BqCX;;AASP;EACE,mBAAkB;EAClB,iBAAgB;CA8BjB;;AAhCD;EAMI,mBAAkB;EAClB,aAAiF;EACjF,c5BsZ0C;E4BrZ1C,eAAc;EACd,Y5BuZwC;E4BtZxC,a5BsZwC;E4BrZxC,qBAAoB;EACpB,YAAW;EACX,0BAAiB;EAAjB,uBAAiB;EAAjB,sBAAiB;EAAjB,kBAAiB;EACjB,0B5B5Dc;C4B8Df;;AAjBH;EAqBI,mBAAkB;EAClB,aAAiF;EACjF,c5BuY0C;E4BtY1C,eAAc;EACd,Y5BwYwC;E4BvYxC,a5BuYwC;E4BtYxC,YAAW;EACX,6BAA4B;EAC5B,mCAAkC;EAClC,yB5BqY2C;C4BpY5C;;AAQH;ErB7FI,uBP+NgC;C4B/HjC;;AAHH;ET3FI,0BnBkCa;C4BiEZ;;AARL;EAUM,2Nb/DqI;CagEtI;;AAXL;ET3FI,0BnBkCa;C4B2EZ;;AAlBL;EAoBM,wKbzEqI;Ca0EtI;;AArBL;EA0BM,yC5BnFW;C4BoFZ;;AA3BL;EA6BM,yC5BtFW;C4BuFZ;;AAQL;EAEI,mB5B6W+C;C4B5WhD;;AAHH;ETjII,0BnBkCa;C4BuGZ;;AARL;EAUM,qKbrGqI;CasGtI;;AAXL;EAgBM,yC5B/GW;C4BgHZ;;AAWL;EACE,sBAAqB;EACrB,YAAW;EACX,4B5BuR4F;E4BtR5F,2C5BmVwC;E4BlVxC,iB5BgG+B;E4B/F/B,e5BxJgB;E4ByJhB,uBAAsB;EACtB,uNAAsG;EACtG,0B5BsV0C;E4BrV1C,0B5B/JgB;E4BiKd,uB5BoDgC;E4B/ClC,yBAAgB;EAAhB,sBAAgB;EAAhB,iBAAgB;CAsCjB;;AAvDD;EAoBI,sB5B2PsE;E4B1PtE,WAAU;EAIR,kD5BsPoE;C4B1OvE;;AArCH;EAkCM,e5BpLY;E4BqLZ,uB5B5LS;C4B6LV;;AApCL;EAyCI,aAAY;EACZ,uB5B6SsC;E4B5StC,uBAAsB;CACvB;;AA5CH;EA+CI,e5BlMc;E4BmMd,0B5BvMc;C4BwMf;;AAjDH;EAqDI,WAAU;CACX;;AAGH;EACE,8B5BmO+F;E4BlO/F,sB5B2RyC;E4B1RzC,yB5B0RyC;E4BzRzC,e5B8SqC;C4B7StC;;AAED;EACE,6B5B+N+F;E4B9N/F,sB5BoRyC;E4BnRzC,yB5BmRyC;E4BlRzC,gB5B0SsC;C4BzSvC;;AAOD;EACE,mBAAkB;EAClB,sBAAqB;EACrB,YAAW;EACX,4B5B0M4F;E4BzM5F,iBAAgB;CACjB;;AAED;EACE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,4B5BkM4F;E4BjM5F,UAAS;EACT,WAAU;CAoBX;;AA1BD;EASI,sB5BkLsE;E4BjLtE,iD5BzNa;C4B8Nd;;AAfH;EAaM,sB5B8KoE;C4B7KrE;;AAdL;EAkBI,0B5B7Pc;C4B8Pf;;AAnBH;EAuBM,kB5BySQ;C4BxST;;AAIL;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,QAAO;EACP,WAAU;EACV,4B5BoK4F;E4BnK5F,0B5BoEkC;E4BnElC,iB5BnB+B;E4BoB/B,e5B3QgB;E4B4QhB,uB5BnRa;E4BoRb,0B5BhRgB;EOVd,uBP+NgC;C4B+EnC;;AA/BD;EAgBI,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,WAAU;EACV,eAAc;EACd,gB5BmJ2G;E4BlJ3G,0B5BoDgC;E4BnDhC,iB5BnC6B;E4BoC7B,e5B3Rc;E4B4Rd,kBAAiB;ETvSjB,0BnBMc;E4BmSd,+B5BjSc;EOVd,mCqB4SgF;CACjF;;AASH;EACE,YAAW;EACX,gBAAe;EACf,8BAA6B;EAC7B,yBAAgB;EAAhB,sBAAgB;EAAhB,iBAAgB;CA4GjB;;AAhHD;EAOI,cAAa;CAOd;;AAdH;EAW8B,iE5B7Rb;C4B6RiE;;AAXlF;EAY8B,iE5B9Rb;C4B8RiE;;AAZlF;EAa8B,iE5B/Rb;C4B+RiE;;AAblF;EAiBI,UAAS;CACV;;AAlBH;EAqBI,Y5B4M6C;E4B3M7C,a5B2M6C;E4B1M7C,qBAA2E;ET3U3E,0BnBkCa;E4B2Sb,U5B2M0C;EO1hB1C,oBP2hB6C;EiB1hB3C,6GjBid+H;E4B/HjI,yBAAgB;EAAhB,iBAAgB;CAKjB;;AXnVD;EWiTF;IXhTI,iBAAgB;GWkVjB;C3B2nGF;;A2B7pGD;ETpTI,0BnB6hB2E;C4BxM1E;;AAjCL;EAqCI,Y5BqLoC;E4BpLpC,e5BqLqC;E4BpLrC,mBAAkB;EAClB,gB5BoLuC;E4BnLvC,0B5BtVc;E4BuVd,0BAAyB;ErBhWzB,oBPohBoC;C4BjLrC;;AA7CH;EAgDI,Y5BiL6C;E4BhL7C,a5BgL6C;EmBrhB7C,0BnBkCa;E4BqUb,U5BiL0C;EO1hB1C,oBP2hB6C;EiB1hB3C,6GjBid+H;E4BrGjI,sBAAgB;EAAhB,iBAAgB;CAKjB;;AX7WD;EWiTF;IXhTI,iBAAgB;GW4WjB;C3B+nGF;;A2B3rGD;ETpTI,0BnB6hB2E;C4B9K1E;;AA3DL;EA+DI,Y5B2JoC;E4B1JpC,e5B2JqC;E4B1JrC,mBAAkB;EAClB,gB5B0JuC;E4BzJvC,0B5BhXc;E4BiXd,0BAAyB;ErB1XzB,oBPohBoC;C4BvJrC;;AAvEH;EA0EI,Y5BuJ6C;E4BtJ7C,a5BsJ6C;E4BrJ7C,cAAa;EACb,qB5BtC+B;E4BuC/B,oB5BvC+B;EmB3V/B,0BnBkCa;E4BkWb,U5BoJ0C;EO1hB1C,oBP2hB6C;EiB1hB3C,6GjBid+H;E4BxEjI,iBAAgB;CAKjB;;AX1YD;EWiTF;IXhTI,iBAAgB;GWyYjB;C3BmoGF;;A2B5tGD;ETpTI,0BnB6hB2E;C4BjJ1E;;AAxFL;EA4FI,Y5B8HoC;E4B7HpC,e5B8HqC;E4B7HrC,mBAAkB;EAClB,gB5B6HuC;E4B5HvC,8BAA6B;EAC7B,0BAAyB;EACzB,qBAA+C;CAEhD;;AApGH;EAuGI,0B5BpZc;EOTd,oBPohBoC;C4BrHrC;;AAzGH;EA4GI,mBAAkB;EAClB,0B5B1Zc;EOTd,oBPohBoC;C4B/GrC;;AAGH;;;EXvaM,6GjBid+H;C4BtCpI;;AXvaC;EWmaF;;;IXlaI,iBAAgB;GWsanB;C3B6oGA;;A4BxjHD;EACE,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,gBAAe;EACf,iBAAgB;EAChB,iBAAgB;CACjB;;AAED;EACE,eAAc;EACd,qB7BgmBsC;C6BtlBvC;;A3BTC;E2BEE,sBAAqB;C3BCtB;;A2BNH;EAUI,e7BPc;C6BQf;;AAOH;EACE,iC7BnBgB;C6BqDjB;;AAnCD;EAII,oB7B6L6B;C6B5L9B;;AALH;EAQI,8BAAgD;EtB7BhD,gCPyNgC;EOxNhC,iCPwNgC;C6BhLjC;;A3BnCD;E2B2BI,sC7B9BY;CEMf;;A2BYH;EAgBM,e7B/BY;E6BgCZ,8BAA6B;EAC7B,0BAAyB;CAC1B;;AAnBL;;EAwBI,e7BtCc;E6BuCd,uB7B9CW;E6B+CX,mC7B/CW;C6BgDZ;;AA3BH;EA+BI,iB7BkK6B;EOtN7B,0BsBsD4B;EtBrD5B,2BsBqD4B;CAC7B;;AAQH;EtBrEI,uBP+NgC;C6BvJjC;;AAHH;;EAOI,Y7BtEW;E6BuEX,0B7BzCa;C6B0Cd;;AAQH;EAEI,mBAAc;EAAd,eAAc;EACd,mBAAkB;CACnB;;AAGH;EAEI,2BAAa;EAAb,cAAa;EACb,qBAAY;EAAZ,aAAY;EACZ,mBAAkB;CACnB;;AAQH;EAEI,cAAa;CACd;;AAHH;EAKI,eAAc;CACf;;ACnGH;EACE,mBAAkB;EAClB,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,uBAAmB;EAAnB,oBAAmB;EACnB,uBAA8B;EAA9B,+BAA8B;EAC9B,qB9BwGW;C8B7FZ;;AAjBD;;EAYI,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,uBAAmB;EAAnB,oBAAmB;EACnB,uBAA8B;EAA9B,+BAA8B;CAC/B;;AAQH;EACE,sBAAqB;EACrB,uB9BimB+E;E8BhmB/E,0B9BgmB+E;E8B/lB/E,mB9BkFW;E8BjFX,mB9BkNoD;E8BjNpD,qBAAoB;EACpB,oBAAmB;CAKpB;;A5BrCC;E4BmCE,sBAAqB;C5BhCtB;;A4ByCH;EACE,qBAAa;EAAb,cAAa;EACb,2BAAsB;EAAtB,uBAAsB;EACtB,gBAAe;EACf,iBAAgB;EAChB,iBAAgB;CAWjB;;AAhBD;EAQI,iBAAgB;EAChB,gBAAe;CAChB;;AAVH;EAaI,iBAAgB;EAChB,YAAW;CACZ;;AAQH;EACE,sBAAqB;EACrB,oB9ByhBuC;E8BxhBvC,uB9BwhBuC;C8BvhBxC;;AAWD;EACE,8BAAgB;EAAhB,iBAAgB;EAChB,qBAAY;EAAZ,aAAY;EAGZ,uBAAmB;EAAnB,oBAAmB;CACpB;;AAGD;EACE,yB9BmiBwC;E8BliBxC,mB9BmJoD;E8BlJpD,eAAc;EACd,8BAA6B;EAC7B,8BAAuC;EvB5GrC,uBP+NgC;C8BxGnC;;A5B3GC;E4BoGE,sBAAqB;C5BjGtB;;A4BwFH;EAcI,gBAAe;CAChB;;AAKH;EACE,sBAAqB;EACrB,aAAY;EACZ,cAAa;EACb,uBAAsB;EACtB,YAAW;EACX,oCAAmC;EACnC,2BAA0B;CAC3B;;AnB9DG;EmBuEC;;IAIK,iBAAgB;IAChB,gBAAe;GAChB;C7B8lHR;;AUxrHG;EmBoFA;IAUI,0BAAqB;IAArB,sBAAqB;IACrB,qBAA2B;IAA3B,4BAA2B;GAgC9B;EA3CA;IAcK,wBAAmB;IAAnB,oBAAmB;GAUpB;EAxBJ;IAiBO,mBAAkB;GACnB;EAlBN;IAqBO,sB9Bie6B;I8Bhe7B,qB9Bge6B;G8B/d9B;EAvBN;;IA6BK,sBAAiB;IAAjB,kBAAiB;GAClB;EA9BJ;IAiCK,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EArCJ;IAwCK,cAAa;GACd;C7BulHR;;AUvsHG;EmBuEC;;IAIK,iBAAgB;IAChB,gBAAe;GAChB;C7BkoHR;;AU5tHG;EmBoFA;IAUI,0BAAqB;IAArB,sBAAqB;IACrB,qBAA2B;IAA3B,4BAA2B;GAgC9B;EA3CA;IAcK,wBAAmB;IAAnB,oBAAmB;GAUpB;EAxBJ;IAiBO,mBAAkB;GACnB;EAlBN;IAqBO,sB9Bie6B;I8Bhe7B,qB9Bge6B;G8B/d9B;EAvBN;;IA6BK,sBAAiB;IAAjB,kBAAiB;GAClB;EA9BJ;IAiCK,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EArCJ;IAwCK,cAAa;GACd;C7B2nHR;;AU3uHG;EmBuEC;;IAIK,iBAAgB;IAChB,gBAAe;GAChB;C7BsqHR;;AUhwHG;EmBoFA;IAUI,0BAAqB;IAArB,sBAAqB;IACrB,qBAA2B;IAA3B,4BAA2B;GAgC9B;EA3CA;IAcK,wBAAmB;IAAnB,oBAAmB;GAUpB;EAxBJ;IAiBO,mBAAkB;GACnB;EAlBN;IAqBO,sB9Bie6B;I8Bhe7B,qB9Bge6B;G8B/d9B;EAvBN;;IA6BK,sBAAiB;IAAjB,kBAAiB;GAClB;EA9BJ;IAiCK,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EArCJ;IAwCK,cAAa;GACd;C7B+pHR;;AU/wHG;EmBuEC;;IAIK,iBAAgB;IAChB,gBAAe;GAChB;C7B0sHR;;AUpyHG;EmBoFA;IAUI,0BAAqB;IAArB,sBAAqB;IACrB,qBAA2B;IAA3B,4BAA2B;GAgC9B;EA3CA;IAcK,wBAAmB;IAAnB,oBAAmB;GAUpB;EAxBJ;IAiBO,mBAAkB;GACnB;EAlBN;IAqBO,sB9Bie6B;I8Bhe7B,qB9Bge6B;G8B/d9B;EAvBN;;IA6BK,sBAAiB;IAAjB,kBAAiB;GAClB;EA9BJ;IAiCK,gCAAwB;IAAxB,yBAAwB;IAGxB,8BAAgB;IAAhB,iBAAgB;GACjB;EArCJ;IAwCK,cAAa;GACd;C7BmsHR;;A6BjvHD;EAeQ,0BAAqB;EAArB,sBAAqB;EACrB,qBAA2B;EAA3B,4BAA2B;CAgC9B;;AAhDL;;EASU,iBAAgB;EAChB,gBAAe;CAChB;;AAXT;EAmBU,wBAAmB;EAAnB,oBAAmB;CAUpB;;AA7BT;EAsBY,mBAAkB;CACnB;;AAvBX;EA0BY,sB9Bie6B;E8Bhe7B,qB9Bge6B;C8B/d9B;;AA5BX;;EAkCU,sBAAiB;EAAjB,kBAAiB;CAClB;;AAnCT;EAsCU,gCAAwB;EAAxB,yBAAwB;EAGxB,8BAAgB;EAAhB,iBAAgB;CACjB;;AA1CT;EA6CU,cAAa;CACd;;AAYT;EAEI,0B9BnLW;C8BwLZ;;A5B5LD;E4B0LI,0B9BtLS;CEDZ;;A4BkLH;EAWM,0B9B5LS;C8BqMV;;A5BzMH;E4BmMM,0B9B/LO;CEDZ;;A4BkLH;EAkBQ,0B9BnMO;C8BoMR;;AAnBP;;;;EA0BM,0B9B3MS;C8B4MV;;AA3BL;EA+BI,0B9BhNW;E8BiNX,iC9BjNW;C8BkNZ;;AAjCH;EAoCI,sQ9BqbmS;C8BpbpS;;AArCH;EAwCI,0B9BzNW;C8BiOZ;;AAhDH;EA0CM,0B9B3NS;C8BgOV;;A5BpOH;E4BkOM,0B9B9NO;CEDZ;;A4BsOH;EAEI,Y9BjPW;C8BsPZ;;A5BhPD;E4B8OI,Y9BpPS;CESZ;;A4BsOH;EAWM,gC9B1PS;C8BmQV;;A5B7PH;E4BuPM,iC9B7PO;CESZ;;A4BsOH;EAkBQ,iC9BjQO;C8BkQR;;AAnBP;;;;EA0BM,Y9BzQS;C8B0QV;;AA3BL;EA+BI,gC9B9QW;E8B+QX,uC9B/QW;C8BgRZ;;AAjCH;EAoCI,4Q9B0XkS;C8BzXnS;;AArCH;EAwCI,gC9BvRW;C8B+RZ;;AAhDH;EA0CM,Y9BzRS;C8B8RV;;A5BxRH;E4BsRM,Y9B5RO;CESZ;;A6BfH;EACE,mBAAkB;EAClB,qBAAa;EAAb,cAAa;EACb,2BAAsB;EAAtB,uBAAsB;EACtB,aAAY;EACZ,sBAAqB;EACrB,uB/BAa;E+BCb,4BAA2B;EAC3B,uC/BQa;EOhBX,uBP+NgC;C+BpMnC;;AA3BD;EAYI,gBAAe;EACf,eAAc;CACf;;AAdH;ExBMI,gCPyNgC;EOxNhC,iCPwNgC;C+B5M/B;;AAnBL;ExBoBI,oCP2MgC;EO1MhC,mCP0MgC;C+BtM/B;;AAIL;EAGE,mBAAc;EAAd,eAAc;EACd,iB/BoqByC;C+BnqB1C;;AAED;EACE,uB/B+pBwC;C+B9pBzC;;AAED;EACE,sBAAgC;EAChC,iBAAgB;CACjB;;AAED;EACE,iBAAgB;CACjB;;A7BvCC;E6B2CE,sBAAqB;C7B3CD;;A6ByCxB;EAMI,qB/B8oBuC;C+B7oBxC;;AAOH;EACE,yB/BqoByC;E+BpoBzC,iBAAgB;EAChB,sC/BlDa;E+BmDb,8C/BnDa;C+B8Dd;;AAfD;ExB/DI,2DwBsE8E;CAC/E;;AARH;EAYM,cAAa;CACd;;AAIL;EACE,yB/BonByC;E+BnnBzC,sC/BlEa;E+BmEb,2C/BnEa;C+BwEd;;AARD;ExBhFI,2DPysBoF;C+BlnBrF;;AAQH;EACE,wBAAkC;EAClC,wB/BmmBwC;E+BlmBxC,uBAAiC;EACjC,iBAAgB;CACjB;;AAED;EACE,wBAAkC;EAClC,uBAAiC;CAClC;;AAGD;EACE,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,iB/B2lByC;C+B1lB1C;;AAED;EACE,YAAW;ExBtHT,mCPysBoF;C+BjlBvF;;AAGD;EACE,YAAW;ExBtHT,4CPmsBoF;EOlsBpF,6CPksBoF;C+B3kBvF;;AAED;EACE,YAAW;ExB7GT,gDPqrBoF;EOprBpF,+CPorBoF;C+BtkBvF;;AAKD;EACE,qBAAa;EAAb,cAAa;EACb,2BAAsB;EAAtB,uBAAsB;CAqBvB;;AAvBD;EAKI,oB/BkkBwD;C+BjkBzD;;ApBtFC;EoBgFJ;IASI,wBAAmB;IAAnB,oBAAmB;IACnB,oB/B6jBwD;I+B5jBxD,mB/B4jBwD;G+BhjB3D;EAvBD;IAcM,qBAAa;IAAb,cAAa;IAEb,iBAAY;IAAZ,aAAY;IACZ,2BAAsB;IAAtB,uBAAsB;IACtB,mB/BqjBsD;I+BpjBtD,iBAAgB;IAChB,kB/BmjBsD;G+BljBvD;C9B8+HJ;;A8Br+HD;EACE,qBAAa;EAAb,cAAa;EACb,2BAAsB;EAAtB,uBAAsB;CA4EvB;;AA9ED;EAOI,oB/BkiBwD;C+BjiBzD;;ApBtHC;EoB8GJ;IAWI,wBAAmB;IAAnB,oBAAmB;GAmEtB;EA9ED;IAgBM,iBAAY;IAAZ,aAAY;IACZ,iBAAgB;GA2DjB;EA5EL;IAoBQ,eAAc;IACd,eAAc;GACf;EAtBP;IxBzJI,2BwBoLoC;IxBnLpC,8BwBmLoC;GAU/B;EArCT;;IA+BY,2BAA0B;GAC3B;EAhCX;;IAmCY,8BAA6B;GAC9B;EApCX;IxB3II,0BwBmLmC;IxBlLnC,6BwBkLmC;GAU9B;EAlDT;;IA4CY,0BAAyB;GAC1B;EA7CX;;IAgDY,6BAA4B;GAC7B;EAjDX;IxBtKI,uBP+NgC;G+BM3B;EA/DT;;IxBhKI,gCPyNgC;IOxNhC,iCPwNgC;G+BCzB;EA1DX;;IxBlJI,oCP2MgC;IO1MhC,mCP0MgC;G+BKzB;EA9DX;IxBtKI,iBwBwO8B;GAQzB;EA1ET;;;;IxBtKI,iBwB8OgC;GACzB;C9Bi+HV;;A8Br9HD;EAEI,uB/BucsC;C+BtcvC;;ApBtMC;EoBmMJ;IAMI,wB/BidiC;I+BjdjC,qB/BidiC;I+BjdjC,gB/BidiC;I+BhdjC,4B/BiduC;I+BjdvC,yB/BiduC;I+BjdvC,oB/BiduC;I+BhdvC,WAAU;IACV,UAAS;GAOZ;EAhBD;IAYM,sBAAqB;IACrB,YAAW;GACZ;C9Bw9HJ;;A8B/8HD;EAEI,iBAAgB;EAChB,iBAAgB;CACjB;;AAJH;EAQM,iBAAgB;CACjB;;AATL;EAaI,iBAAgB;EAChB,8BAA6B;EAC7B,6BAA4B;CAC7B;;AAhBH;EAmBI,0BAAyB;EACzB,2BAA0B;CAC3B;;AC3SH;EACE,qBAAa;EAAb,cAAa;EACb,oBAAe;EAAf,gBAAe;EACf,sBhCy3BsC;EgCx3BtC,oBhC23BsC;EgC13BtC,iBAAgB;EAChB,0BhCMgB;EORd,uBP+NgC;CgC3NnC;;AAED;EAGI,qBhCg3BqC;CgCx2BtC;;AAXH;EAMM,sBAAqB;EACrB,sBhC42BmC;EgC32BnC,ehCFY;EgCGZ,ahCi3BuC;CgCh3BxC;;AAVL;EAoBI,2BAA0B;CAC3B;;AArBH;EAwBI,sBAAqB;CACtB;;AAzBH;EA4BI,ehCtBc;CgCuBf;;ACvCH;EACE,qBAAa;EAAb,cAAa;E7BGb,gBAAe;EACf,iBAAgB;EGDd,uBP+NgC;CiC/NnC;;AAED;EACE,mBAAkB;EAClB,eAAc;EACd,wBjC2pBwC;EiC1pBxC,kBjCsN+B;EiCrN/B,kBjC8pBsC;EiC7pBtC,ejC4Be;EiC3Bf,uBjCHa;EiCIb,0BjCDgB;CiCqBjB;;AA5BD;EAWI,WAAU;EACV,ejCuJgD;EiCtJhD,sBAAqB;EACrB,0BjCRc;EiCSd,sBjCRc;CiCSf;;AAhBH;EAmBI,WAAU;EACV,WjCupBiC;EiCtpBjC,iDjCaa;CiCZd;;AAtBH;EA0BI,gBAAe;CAChB;;AAGH;EAGM,eAAc;E1BRhB,gCPoMgC;EOnMhC,mCPmMgC;CiC1L/B;;AALL;E1BnBI,iCPkNgC;EOjNhC,oCPiNgC;CiCrL/B;;AAVL;EAcI,WAAU;EACV,YjCzCW;EiC0CX,0BjCZa;EiCab,sBjCba;CiCcd;;AAlBH;EAqBI,ejCzCc;EiC0Cd,qBAAoB;EAEpB,aAAY;EACZ,uBjCnDW;EiCoDX,sBjCjDc;CiCkDf;;AC5DD;EACE,wBlCoqBsC;EkCnqBtC,mBlC2PkD;EkC1PlD,iBlCuN6B;CkCtN9B;;AAIG;E3BoBF,+BPqM+B;EOpM/B,kCPoM+B;CkCvN5B;;AAGD;E3BCF,gCPmN+B;EOlN/B,mCPkN+B;CkClN5B;;AAfL;EACE,wBlCkqBqC;EkCjqBrC,oBlC4PkD;EkC3PlD,iBlCwN6B;CkCvN9B;;AAIG;E3BoBF,+BPsM+B;EOrM/B,kCPqM+B;CkCxN5B;;AAGD;E3BCF,gCPoN+B;EOnN/B,mCPmN+B;CkCnN5B;;ACbP;EACE,sBAAqB;EACrB,sBnCowBsC;EmCnwBtC,enCgwBqC;EmC/vBrC,iBnC4P+B;EmC3P/B,eAAc;EACd,mBAAkB;EAClB,oBAAmB;EACnB,yBAAwB;E5BTtB,uBP+NgC;CmC/MnC;;AAfD;EAaI,cAAa;CACd;;AAIH;EACE,mBAAkB;EAClB,UAAS;CACV;;AAMD;EACE,qBnC6uBsC;EmC5uBtC,oBnC4uBsC;EO1wBpC,qBP6wBqC;CmC7uBxC;;AAOC;EC1CA,YpCSa;EoCRb,0BpCsCe;CmCKd;;AjC7BD;EkCVI,YpCIS;EoCHT,sBAAqB;EACrB,0BAAkC;ClCWrC;;AiCwBD;EC1CA,YpCSa;EoCRb,0BpCcgB;CmC6Bf;;AjC7BD;EkCVI,YpCIS;EoCHT,sBAAqB;EACrB,0BAAkC;ClCWrC;;AiCwBD;EC1CA,YpCSa;EoCRb,0BpC6Ce;CmCFd;;AjC7BD;EkCVI,YpCIS;EoCHT,sBAAqB;EACrB,0BAAkC;ClCWrC;;AiCwBD;EC1CA,YpCSa;EoCRb,0BpC+Ce;CmCJd;;AjC7BD;EkCVI,YpCIS;EoCHT,sBAAqB;EACrB,0BAAkC;ClCWrC;;AiCwBD;EC1CA,epCkBgB;EoCjBhB,0BpC4Ce;CmCDd;;AjC7BD;EkCVI,epCaY;EoCZZ,sBAAqB;EACrB,0BAAkC;ClCWrC;;AiCwBD;EC1CA,YpCSa;EoCRb,0BpC0Ce;CmCCd;;AjC7BD;EkCVI,YpCIS;EoCHT,sBAAqB;EACrB,0BAAkC;ClCWrC;;AiCwBD;EC1CA,epCkBgB;EoCjBhB,0BpCSgB;CmCkCf;;AjC7BD;EkCVI,epCaY;EoCZZ,sBAAqB;EACrB,0BAAkC;ClCWrC;;AiCwBD;EC1CA,YpCSa;EoCRb,0BpCgBgB;CmC2Bf;;AjC7BD;EkCVI,YpCIS;EoCHT,sBAAqB;EACrB,0BAAkC;ClCWrC;;AmCnBH;EACE,mBAAoD;EACpD,oBrCgsBsC;EqC/rBtC,0BrCSgB;EORd,sBPgO+B;CqC3NlC;;A1BmDG;E0B5DJ;IAOI,mBrC2rBoC;GqCzrBvC;CpC++IA;;AoC7+ID;EACE,iBAAgB;EAChB,gBAAe;E9BTb,iB8BUsB;CACzB;;ACXD;EACE,mBAAkB;EAClB,yBtCmzByC;EsClzBzC,oBtCmzBsC;EsClzBtC,8BAA6C;E/BJ3C,uBP+NgC;CsCzNnC;;AAGD;EAEE,eAAc;CACf;;AAGD;EACE,iBtCiP+B;CsChPhC;;AAOD;EACE,oBAAwD;CAUzD;;AAXD;EAKI,mBAAkB;EAClB,OAAM;EACN,SAAQ;EACR,yBtCqxBuC;EsCpxBvC,eAAc;CACf;;AASD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ADoCD;EC9CA,exBmFgE;EI9E9D,0BJ8E8D;EwBjFhE,sBxBiFgE;CuBnC/D;;AC5CD;EACE,0BAAqC;CACtC;;AAED;EACE,eAA0B;CAC3B;;ACXH;EACE;IAAO,4BAAuC;GvC8oJ7C;EuC7oJD;IAAK,yBAAwB;GvCgpJ5B;CACF;;AuCnpJD;EACE;IAAO,4BAAuC;GvC8oJ7C;EuC7oJD;IAAK,yBAAwB;GvCgpJ5B;CACF;;AuC9oJD;EACE,qBAAa;EAAb,cAAa;EACb,axC+zBsC;EwC9zBtC,iBAAgB;EAChB,mBxC8zByD;EwC7zBzD,0BxCEgB;EORd,uBP+NgC;CwCtNnC;;AAED;EACE,qBAAa;EAAb,cAAa;EACb,2BAAsB;EAAtB,uBAAsB;EACtB,sBAAuB;EAAvB,wBAAuB;EACvB,YxCTa;EwCUb,mBAAkB;EAClB,oBAAmB;EACnB,0BxCkBe;EiBnCX,4BjBy0B4C;CwCtzBjD;;AvBfC;EuBMF;IvBLI,iBAAgB;GuBcnB;CvCqpJA;;AuCnpJD;ErBiBE,sMAA6I;EqBf7I,2BxC0yBsC;CwCzyBvC;;AAED;EACE,2DxC6yBoD;EwC7yBpD,mDxC6yBoD;CwC5yBrD;;ACjCD;EACE,qBAAa;EAAb,cAAa;EACb,sBAAuB;EAAvB,wBAAuB;CACxB;;AAED;EACE,YAAO;EAAP,QAAO;CACR;;ACHD;EACE,qBAAa;EAAb,cAAa;EACb,2BAAsB;EAAtB,uBAAsB;EAGtB,gBAAe;EACf,iBAAgB;CACjB;;AAQD;EACE,YAAW;EACX,e1CJgB;E0CKhB,oBAAmB;CAapB;;AxCnBC;EwCUE,e1CTc;E0CUd,sBAAqB;EACrB,0B1CjBc;CEQf;;AwCAH;EAaI,e1Cbc;E0Ccd,0B1CrBc;C0CsBf;;AAQH;EACE,mBAAkB;EAClB,eAAc;EACd,yB1C2yByC;E0CzyBzC,oB1CiL+B;E0ChL/B,uB1CtCa;E0CuCb,uC1C7Ba;C0C0Dd;;AApCD;EnChCI,gCPyNgC;EOxNhC,iCPwNgC;C0C9KjC;;AAXH;EAcI,iBAAgB;EnChChB,oCP2MgC;EO1MhC,mCP0MgC;C0CzKjC;;AxC1CD;EwC6CE,WAAU;EACV,sBAAqB;CxC3CtB;;AwCuBH;EAyBI,e1CnDc;E0CoDd,uB1C1DW;C0C2DZ;;AA3BH;EA+BI,WAAU;EACV,Y1ChEW;E0CiEX,0B1CnCa;E0CoCb,sB1CpCa;C0CqCd;;AASH;EAEI,gBAAe;EACf,eAAc;EnCrFd,iBmCsFwB;CACzB;;AALH;EASM,cAAa;CACd;;AAVL;EAeM,iBAAgB;CACjB;;ACnGH;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;AAdL;EACE,e5BgF8D;E4B/E9D,0B5B+E8D;C4BjE/D;;AzCHD;EyCPM,e5B2E0D;E4B1E1D,0BAAyC;CzCS9C;;AyChBD;EAWM,Y3CJO;E2CKP,0B5BqE0D;E4BpE1D,sB5BoE0D;C4BnE3D;;ACjBP;EACE,aAAY;EACZ,kB5C+5BuD;E4C95BvD,iB5CkQ+B;E4CjQ/B,eAAc;EACd,Y5Cea;E4Cdb,0B5CIa;E4CHb,YAAW;CAaZ;;AApBD;EAkBI,gBAAe;CAChB;;A1CHD;E0CJI,Y5CQS;E4CPT,sBAAqB;EACrB,aAAY;C1CKf;;A0CSH;EACE,WAAU;EACV,8BAA6B;EAC7B,UAAS;EACT,yBAAwB;CACzB;;AC3BD;EAEE,iBAAgB;CAMjB;;AARD;EAKI,mBAAkB;EAClB,iBAAgB;CACjB;;AAIH;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c7CilBsC;E6ChlBtC,cAAa;EACb,iBAAgB;EAGhB,WAAU;CAIX;;AAGD;EACE,mBAAkB;EAClB,YAAW;EACX,e7CmvBuC;E6CjvBvC,qBAAoB;CAUrB;;AAPC;E5BtCI,4CjB4yBoD;EiB5yBpD,oCjB4yBoD;EiB5yBpD,qEjB4yBoD;E6CpwBtD,sCAA6B;EAA7B,8BAA6B;CAC9B;;A5BrCD;E4BkCA;I5BjCE,iBAAgB;G4BoCjB;C5C85JF;;A4C75JC;EACE,mCAA0B;EAA1B,2BAA0B;CAC3B;;AAGH;EACE,qBAAa;EAAb,cAAa;EACb,uBAAmB;EAAnB,oBAAmB;EACnB,sCAAsD;CAQvD;;AAXD;EAOI,eAAc;EACd,mCAAmD;EACnD,YAAW;CACZ;;AAIH;EACE,mBAAkB;EAClB,qBAAa;EAAb,cAAa;EACb,2BAAsB;EAAtB,uBAAsB;EACtB,YAAW;EAEX,qBAAoB;EACpB,uB7C/Da;E6CgEb,6BAA4B;EAC5B,qC7CvDa;EOhBX,sBPgO+B;E6CrJjC,WAAU;CACX;;AAGD;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c7C8gBsC;E6C7gBtC,uB7CtEa;C6C2Ed;;AAZD;EAUW,WAAU;CAAI;;AAVzB;EAWW,a7CwsB2B;C6CxsBS;;AAK/C;EACE,qBAAa;EAAb,cAAa;EACb,sBAAuB;EAAvB,wBAAuB;EACvB,uBAA8B;EAA9B,+BAA8B;EAC9B,c7CosBsC;E6CnsBtC,iC7C5FgB;EOFd,+BP0N+B;EOzN/B,gCPyN+B;C6CpHlC;;AAbD;EASI,c7C+rBoC;E6C7rBpC,+BAAuF;CACxF;;AAIH;EACE,iBAAgB;EAChB,iB7CmJ+B;C6ClJhC;;AAID;EACE,mBAAkB;EAGlB,mBAAc;EAAd,eAAc;EACd,c7CwpBsC;C6CvpBvC;;AAGD;EACE,qBAAa;EAAb,cAAa;EACb,uBAAmB;EAAnB,oBAAmB;EACnB,mBAAyB;EAAzB,0BAAyB;EACzB,c7CgpBsC;E6C/oBtC,8B7C5HgB;C6CiIjB;;AAVD;EAQyB,oBAAmB;CAAI;;AARhD;EASwB,qBAAoB;CAAI;;AAIhD;EACE,mBAAkB;EAClB,aAAY;EACZ,YAAW;EACX,aAAY;EACZ,iBAAgB;CACjB;;AlC1FG;EkCzBJ;IAyHI,iB7CkpBqC;I6CjpBrC,qBAAyC;GAC1C;EA1GH;IA6GI,uCAA8D;GAM/D;EAnHH;IAgHM,oCAA2D;GAC5D;EAQH;IAAY,iB7CkoB2B;G6CloBH;C5Cg5JrC;;AUjgKG;EkCsHF;IAAY,iB7C2nB2B;G6C3nBH;C5Ci5JrC;;A6ClkKD;EACE,mBAAkB;EAClB,c9CumBsC;E8CtmBtC,eAAc;EACd,U9CguBmC;E+CpuBnC,sL/CyPoM;E+CvPpM,mBAAkB;EAClB,iB/CgQ+B;E+C/P/B,iB/CmQ+B;E+ClQ/B,iBAAgB;EAChB,kBAAiB;EACjB,sBAAqB;EACrB,kBAAiB;EACjB,qBAAoB;EACpB,uBAAsB;EACtB,mBAAkB;EAClB,qBAAoB;EACpB,oBAAmB;EACnB,iBAAgB;EDNhB,oB9CwPoD;E8CtPpD,sBAAqB;EACrB,WAAU;CAiBX;;AA5BD;EAaW,a9CotB2B;C8CptBE;;AAbxC;EAgBI,mBAAkB;EAClB,eAAc;EACd,c9CotBqC;E8CntBrC,e9CotBqC;C8C5sBtC;;AA3BH;EAsBM,mBAAkB;EAClB,YAAW;EACX,0BAAyB;EACzB,oBAAmB;CACpB;;AAIL;EACE,kBAAgC;CAWjC;;AAZD;EAII,UAAS;CAOV;;AAXH;EAOM,OAAM;EACN,8BAAgE;EAChE,uB9CpBS;C8CqBV;;AAIL;EACE,kB9C0rBuC;C8C7qBxC;;AAdD;EAII,QAAO;EACP,c9CsrBqC;E8CrrBrC,e9CorBqC;C8C7qBtC;;AAbH;EASM,SAAQ;EACR,qCAA2F;EAC3F,yB9CpCS;C8CqCV;;AAIL;EACE,kBAAgC;CAWjC;;AAZD;EAII,OAAM;CAOP;;AAXH;EAOM,UAAS;EACT,8B9CmqBmC;E8ClqBnC,0B9ClDS;C8CmDV;;AAIL;EACE,kB9C4pBuC;C8C/oBxC;;AAdD;EAII,SAAQ;EACR,c9CwpBqC;E8CvpBrC,e9CspBqC;C8C/oBtC;;AAbH;EASM,QAAO;EACP,qC9CmpBmC;E8ClpBnC,wB9ClES;C8CmEV;;AAoBL;EACE,iB9CknBuC;E8CjnBvC,wB9CunBuC;E8CtnBvC,Y9CpGa;E8CqGb,mBAAkB;EAClB,uB9C5Fa;EOhBX,uBP+NgC;C8CjHnC;;AElHD;EACE,mBAAkB;EAClB,OAAM;EACN,QAAO;EACP,chDqmBsC;EgDpmBtC,eAAc;EACd,iBhD0uBuC;E+C/uBvC,sL/CyPoM;E+CvPpM,mBAAkB;EAClB,iB/CgQ+B;E+C/P/B,iB/CmQ+B;E+ClQ/B,iBAAgB;EAChB,kBAAiB;EACjB,sBAAqB;EACrB,kBAAiB;EACjB,qBAAoB;EACpB,uBAAsB;EACtB,mBAAkB;EAClB,qBAAoB;EACpB,oBAAmB;EACnB,iBAAgB;ECLhB,oBhDuPoD;EgDrPpD,sBAAqB;EACrB,uBhDHa;EgDIb,6BAA4B;EAC5B,qChDKa;EOhBX,sBPgO+B;CgDjMlC;;AAnCD;EAoBI,mBAAkB;EAClB,eAAc;EACd,YhDyuBoC;EgDxuBpC,ehDyuBqC;EgDxuBrC,iBhD4M+B;CgDlMhC;;AAlCH;EA4BM,mBAAkB;EAClB,eAAc;EACd,YAAW;EACX,0BAAyB;EACzB,oBAAmB;CACpB;;AAIL;EACE,sBhD0tBuC;CgDtsBxC;;AArBD;EAII,kCAAwE;CACzE;;AALH;;;EASI,8BAAgE;CACjE;;AAVH;EAaI,UAAS;EACT,sChDgtBmE;CgD/sBpE;;;AAfH;;EAkBI,YhDyK6B;EgDxK7B,uBhD9CW;CgD+CZ;;AAGH;EACE,oBhDmsBuC;CgD5qBxC;;AAxBD;EAII,gCAAsE;EACtE,chD+rBqC;EgD9rBrC,ahD6rBoC;EgD5rBpC,iBAA2B;CAC5B;;AARH;;;EAYI,qCAA2F;CAC5F;;AAbH;EAgBI,QAAO;EACP,wChDsrBmE;CgDrrBpE;;;AAlBH;;EAqBI,UhD+I6B;EgD9I7B,yBhDxEW;CgDyEZ;;AAGH;EACE,mBhDyqBuC;CgDzoBxC;;AAjCD;EAII,+BAAqE;CACtE;;AALH;;;EASI,qCAA2F;CAC5F;;AAVH;EAaI,OAAM;EACN,yChD+pBmE;CgD9pBpE;;;AAfH;;EAkBI,ShDwH6B;EgDvH7B,0BhD/FW;CgDgGZ;;AApBH;EAwBI,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,eAAc;EACd,YhD6oBoC;EgD5oBpC,qBAAwC;EACxC,YAAW;EACX,iChDioBuD;CgDhoBxD;;AAGH;EACE,qBhDsoBuC;CgD/mBxC;;AAxBD;EAII,iCAAuE;EACvE,chDkoBqC;EgDjoBrC,ahDgoBoC;EgD/nBpC,iBAA2B;CAC5B;;AARH;;;EAYI,qChD2nBqC;CgD1nBtC;;AAbH;EAgBI,SAAQ;EACR,uChDynBmE;CgDxnBpE;;;AAlBH;;EAqBI,WhDkF6B;EgDjF7B,wBhDrIW;CgDsIZ;;AAoBH;EACE,wBhDolBwC;EgDnlBxC,iBAAgB;EAChB,gBhDwFgC;EgDvFhC,ehD6GmC;EgD5GnC,0BhD6kByD;EgD5kBzD,iCAAyE;EzChKvE,2CyCiKyE;EzChKzE,4CyCgKyE;CAM5E;;AAbD;EAWI,cAAa;CACd;;AAGH;EACE,wBhDqkBwC;EgDpkBxC,ehDlKgB;CgDmKjB;;AC5KD;EACE,mBAAkB;CACnB;;AAED;EACE,mBAAkB;EAClB,YAAW;EACX,iBAAgB;CACjB;;AAED;EACE,mBAAkB;EAClB,cAAa;EACb,uBAAmB;EAAnB,oBAAmB;EACnB,YAAW;EACX,oCAA2B;EAA3B,4BAA2B;EAC3B,4BAAmB;EAAnB,oBAAmB;CACpB;;AAED;;;EAGE,eAAc;EhC3BV,wCjBu5BgD;EiBv5BhD,gCjBu5BgD;EiBv5BhD,6DjBu5BgD;CiD13BrD;;AhCzBC;EgCoBF;;;IhCnBI,iBAAgB;GgCwBnB;ChD42KA;;AgD12KD;;EAEE,mBAAkB;EAClB,OAAM;CACP;;AAED;;EAEE,iCAAwB;EAAxB,yBAAwB;CAKzB;;AAHyC;EAJ1C;;IAKI,wCAA+B;IAA/B,gCAA+B;GAElC;ChD+2KA;;AgD72KD;;EAEE,oCAA2B;EAA3B,4BAA2B;CAK5B;;AAHyC;EAJ1C;;IAKI,2CAAkC;IAAlC,mCAAkC;GAErC;ChDk3KA;;AgDh3KD;;EAEE,qCAA4B;EAA5B,6BAA4B;CAK7B;;AAHyC;EAJ1C;;IAKI,4CAAmC;IAAnC,oCAAmC;GAEtC;ChDq3KA;;AgD92KD;EAEI,WAAU;EACV,yBAAwB;EACxB,6BAA4B;CAC7B;;AALH;;;EAUI,WAAU;CACX;;AAXH;;EAeI,WAAU;CACX;;AAhBH;;;;;EAuBI,iCAAwB;EAAxB,yBAAwB;CAKzB;;AAHyC;EAzB5C;;;;;IA0BM,wCAA+B;IAA/B,gCAA+B;GAElC;ChDq3KF;;AgD72KD;;EAEE,mBAAkB;EAClB,OAAM;EACN,UAAS;EAET,qBAAa;EAAb,cAAa;EACb,uBAAmB;EAAnB,oBAAmB;EACnB,sBAAuB;EAAvB,wBAAuB;EACvB,WjDqxBqC;EiDpxBrC,YjD9Ga;EiD+Gb,mBAAkB;EAClB,ajDmxBoC;CiDxwBrC;;A/CrHC;;;E+CgHE,YjDtHW;EiDuHX,sBAAqB;EACrB,WAAU;EACV,YAAW;C/ChHZ;;A+CmHH;EACE,QAAO;CAIR;;AACD;EACE,SAAQ;CAIT;;AAGD;;EAEE,sBAAqB;EACrB,YjDgwBsC;EiD/vBtC,ajD+vBsC;EiD9vBtC,gDAA+C;EAC/C,2BAA0B;CAC3B;;AACD;EACE,iNlCjHyI;CkCkH1I;;AACD;EACE,iNlCpHyI;CkCqH1I;;AAQD;EACE,mBAAkB;EAClB,SAAQ;EACR,aAAY;EACZ,QAAO;EACP,YAAW;EACX,qBAAa;EAAb,cAAa;EACb,sBAAuB;EAAvB,wBAAuB;EACvB,gBAAe;EAEf,kBjDytBqC;EiDxtBrC,iBjDwtBqC;EiDvtBrC,iBAAgB;CAqCjB;;AAjDD;EAeI,mBAAkB;EAClB,mBAAc;EAAd,eAAc;EACd,YjDqtBoC;EiDptBpC,YjDqtBmC;EiDptBnC,kBjDqtBmC;EiDptBnC,iBjDotBmC;EiDntBnC,oBAAmB;EACnB,gBAAe;EACf,2CjDtLW;CiD2MZ;;AA5CH;EA2BM,mBAAkB;EAClB,WAAU;EACV,QAAO;EACP,sBAAqB;EACrB,YAAW;EACX,aAAY;EACZ,YAAW;CACZ;;AAlCL;EAoCM,mBAAkB;EAClB,cAAa;EACb,QAAO;EACP,sBAAqB;EACrB,YAAW;EACX,aAAY;EACZ,YAAW;CACZ;;AA3CL;EA+CI,uBjD9MW;CiD+MZ;;AAQH;EACE,mBAAkB;EAClB,WAA6C;EAC7C,aAAY;EACZ,UAA4C;EAC5C,YAAW;EACX,kBAAiB;EACjB,qBAAoB;EACpB,YjD/Na;EiDgOb,mBAAkB;CACnB;;ACzOD;EAAqB,oCAAmC;CAAI;;AAC5D;EAAqB,+BAA8B;CAAI;;AACvD;EAAqB,kCAAiC;CAAI;;AAC1D;EAAqB,kCAAiC;CAAI;;AAC1D;EAAqB,uCAAsC;CAAI;;AAC/D;EAAqB,oCAAmC;CAAI;;ACF1D;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AiDdD;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AiDdD;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AiDdD;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AiDdD;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AiDdD;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AiDdD;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AiDdD;EACE,qCAAmC;CACpC;;AjDSD;;;EiDLI,qCAAgD;CjDQnD;;AkDPH;EACE,kCAAmC;CACpC;;AAED;EACE,yCAAwC;CACzC;;ACZD;EAAkB,qCAAoD;CAAI;;AAC1E;EAAkB,yCAAwD;CAAI;;AAC9E;EAAkB,2CAA0D;CAAI;;AAChF;EAAkB,4CAA2D;CAAI;;AACjF;EAAkB,0CAAyD;CAAI;;AAE/E;EAAmB,qBAAoB;CAAI;;AAC3C;EAAmB,yBAAwB;CAAI;;AAC/C;EAAmB,2BAA0B;CAAI;;AACjD;EAAmB,4BAA2B;CAAI;;AAClD;EAAmB,0BAAyB;CAAI;;AAG9C;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAFD;EACE,iCAA+B;CAChC;;AAGH;EACE,8BAA+B;CAChC;;AAMD;EACE,kCAAwC;CACzC;;AACD;EACE,2CAAiD;EACjD,4CAAkD;CACnD;;AACD;EACE,4CAAkD;EAClD,+CAAqD;CACtD;;AACD;EACE,+CAAqD;EACrD,8CAAoD;CACrD;;AACD;EACE,2CAAiD;EACjD,8CAAoD;CACrD;;AAED;EACE,8BAA6B;CAC9B;;AAED;EACE,4BAA2B;CAC5B;;ACzDC;EACE,eAAc;EACd,YAAW;EACX,YAAW;CACZ;;ACKC;EAA2B,yBAAwB;CAAI;;AACvD;EAA2B,2BAA0B;CAAI;;AACzD;EAA2B,iCAAgC;CAAI;;AAC/D;EAA2B,0BAAyB;CAAI;;AACxD;EAA2B,0BAAyB;CAAI;;AACxD;EAA2B,8BAA6B;CAAI;;AAC5D;EAA2B,+BAA8B;CAAI;;AAC7D;EAA2B,gCAAwB;EAAxB,yBAAwB;CAAI;;AACvD;EAA2B,uCAA+B;EAA/B,gCAA+B;CAAI;;A5C0C9D;E4ClDA;IAA2B,yBAAwB;GAAI;EACvD;IAA2B,2BAA0B;GAAI;EACzD;IAA2B,iCAAgC;GAAI;EAC/D;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,8BAA6B;GAAI;EAC5D;IAA2B,+BAA8B;GAAI;EAC7D;IAA2B,gCAAwB;IAAxB,yBAAwB;GAAI;EACvD;IAA2B,uCAA+B;IAA/B,gCAA+B;GAAI;CtD21LjE;;AUjzLG;E4ClDA;IAA2B,yBAAwB;GAAI;EACvD;IAA2B,2BAA0B;GAAI;EACzD;IAA2B,iCAAgC;GAAI;EAC/D;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,8BAA6B;GAAI;EAC5D;IAA2B,+BAA8B;GAAI;EAC7D;IAA2B,gCAAwB;IAAxB,yBAAwB;GAAI;EACvD;IAA2B,uCAA+B;IAA/B,gCAA+B;GAAI;CtDy3LjE;;AU/0LG;E4ClDA;IAA2B,yBAAwB;GAAI;EACvD;IAA2B,2BAA0B;GAAI;EACzD;IAA2B,iCAAgC;GAAI;EAC/D;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,8BAA6B;GAAI;EAC5D;IAA2B,+BAA8B;GAAI;EAC7D;IAA2B,gCAAwB;IAAxB,yBAAwB;GAAI;EACvD;IAA2B,uCAA+B;IAA/B,gCAA+B;GAAI;CtDu5LjE;;AU72LG;E4ClDA;IAA2B,yBAAwB;GAAI;EACvD;IAA2B,2BAA0B;GAAI;EACzD;IAA2B,iCAAgC;GAAI;EAC/D;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,0BAAyB;GAAI;EACxD;IAA2B,8BAA6B;GAAI;EAC5D;IAA2B,+BAA8B;GAAI;EAC7D;IAA2B,gCAAwB;IAAxB,yBAAwB;GAAI;EACvD;IAA2B,uCAA+B;IAA/B,gCAA+B;GAAI;CtDq7LjE;;AsD56LD;EACE;IAAwB,yBAAwB;GAAI;EACpD;IAAwB,2BAA0B;GAAI;EACtD;IAAwB,iCAAgC;GAAI;EAC5D;IAAwB,0BAAyB;GAAI;EACrD;IAAwB,0BAAyB;GAAI;EACrD;IAAwB,8BAA6B;GAAI;EACzD;IAAwB,+BAA8B;GAAI;EAC1D;IAAwB,gCAAwB;IAAxB,yBAAwB;GAAI;EACpD;IAAwB,uCAA+B;IAA/B,gCAA+B;GAAI;CtDi8L5D;;AuDn+LD;EACE,mBAAkB;EAClB,eAAc;EACd,YAAW;EACX,WAAU;EACV,iBAAgB;CAoBjB;;AAzBD;EAQI,eAAc;EACd,YAAW;CACZ;;AAVH;;;;;EAiBI,mBAAkB;EAClB,OAAM;EACN,UAAS;EACT,QAAO;EACP,YAAW;EACX,aAAY;EACZ,UAAS;CACV;;AAGH;EAEI,wBAA+B;CAChC;;AAGH;EAEI,oBAA+B;CAChC;;AAGH;EAEI,iBAA8B;CAC/B;;AAGH;EAEI,kBAA8B;CAC/B;;ACxCC;EAAgC,mCAA8B;EAA9B,+BAA8B;CAAI;;AAClE;EAAgC,sCAAiC;EAAjC,kCAAiC;CAAI;;AACrE;EAAgC,2CAAsC;EAAtC,uCAAsC;CAAI;;AAC1E;EAAgC,8CAAyC;EAAzC,0CAAyC;CAAI;;AAE7E;EAA8B,+BAA0B;EAA1B,2BAA0B;CAAI;;AAC5D;EAA8B,iCAA4B;EAA5B,6BAA4B;CAAI;;AAC9D;EAA8B,uCAAkC;EAAlC,mCAAkC;CAAI;;AACpE;EAA8B,8BAAyB;EAAzB,0BAAyB;CAAI;;AAC3D;EAA8B,gCAAuB;EAAvB,wBAAuB;CAAI;;AACzD;EAA8B,gCAAuB;EAAvB,wBAAuB;CAAI;;AACzD;EAA8B,gCAAyB;EAAzB,0BAAyB;CAAI;;AAC3D;EAA8B,gCAAyB;EAAzB,0BAAyB;CAAI;;AAE3D;EAAoC,gCAAsC;EAAtC,uCAAsC;CAAI;;AAC9E;EAAoC,8BAAoC;EAApC,qCAAoC;CAAI;;AAC5E;EAAoC,iCAAkC;EAAlC,mCAAkC;CAAI;;AAC1E;EAAoC,kCAAyC;EAAzC,0CAAyC;CAAI;;AACjF;EAAoC,qCAAwC;EAAxC,yCAAwC;CAAI;;AAEhF;EAAiC,iCAAkC;EAAlC,mCAAkC;CAAI;;AACvE;EAAiC,+BAAgC;EAAhC,iCAAgC;CAAI;;AACrE;EAAiC,kCAA8B;EAA9B,+BAA8B;CAAI;;AACnE;EAAiC,oCAAgC;EAAhC,iCAAgC;CAAI;;AACrE;EAAiC,mCAA+B;EAA/B,gCAA+B;CAAI;;AAEpE;EAAkC,qCAAoC;EAApC,qCAAoC;CAAI;;AAC1E;EAAkC,mCAAkC;EAAlC,mCAAkC;CAAI;;AACxE;EAAkC,sCAAgC;EAAhC,iCAAgC;CAAI;;AACtE;EAAkC,uCAAuC;EAAvC,wCAAuC;CAAI;;AAC7E;EAAkC,0CAAsC;EAAtC,uCAAsC;CAAI;;AAC5E;EAAkC,uCAAiC;EAAjC,kCAAiC;CAAI;;AAEvE;EAAgC,qCAA2B;EAA3B,4BAA2B;CAAI;;AAC/D;EAAgC,sCAAiC;EAAjC,kCAAiC;CAAI;;AACrE;EAAgC,oCAA+B;EAA/B,gCAA+B;CAAI;;AACnE;EAAgC,uCAA6B;EAA7B,8BAA6B;CAAI;;AACjE;EAAgC,yCAA+B;EAA/B,gCAA+B;CAAI;;AACnE;EAAgC,wCAA8B;EAA9B,+BAA8B;CAAI;;A9CYlE;E8ClDA;IAAgC,mCAA8B;IAA9B,+BAA8B;GAAI;EAClE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,2CAAsC;IAAtC,uCAAsC;GAAI;EAC1E;IAAgC,8CAAyC;IAAzC,0CAAyC;GAAI;EAE7E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAI;EAC5D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAI;EAC9D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAI;EACpE;IAA8B,8BAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAE3D;IAAoC,gCAAsC;IAAtC,uCAAsC;GAAI;EAC9E;IAAoC,8BAAoC;IAApC,qCAAoC;GAAI;EAC5E;IAAoC,iCAAkC;IAAlC,mCAAkC;GAAI;EAC1E;IAAoC,kCAAyC;IAAzC,0CAAyC;GAAI;EACjF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAI;EAEhF;IAAiC,iCAAkC;IAAlC,mCAAkC;GAAI;EACvE;IAAiC,+BAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,kCAA8B;IAA9B,+BAA8B;GAAI;EACnE;IAAiC,oCAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,mCAA+B;IAA/B,gCAA+B;GAAI;EAEpE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAI;EAC1E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAI;EACxE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAI;EACtE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAI;EAC7E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAI;EAC5E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAI;EAEvE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAI;EAC/D;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAI;EACjE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAI;CxDitMrE;;AUrsMG;E8ClDA;IAAgC,mCAA8B;IAA9B,+BAA8B;GAAI;EAClE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,2CAAsC;IAAtC,uCAAsC;GAAI;EAC1E;IAAgC,8CAAyC;IAAzC,0CAAyC;GAAI;EAE7E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAI;EAC5D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAI;EAC9D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAI;EACpE;IAA8B,8BAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAE3D;IAAoC,gCAAsC;IAAtC,uCAAsC;GAAI;EAC9E;IAAoC,8BAAoC;IAApC,qCAAoC;GAAI;EAC5E;IAAoC,iCAAkC;IAAlC,mCAAkC;GAAI;EAC1E;IAAoC,kCAAyC;IAAzC,0CAAyC;GAAI;EACjF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAI;EAEhF;IAAiC,iCAAkC;IAAlC,mCAAkC;GAAI;EACvE;IAAiC,+BAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,kCAA8B;IAA9B,+BAA8B;GAAI;EACnE;IAAiC,oCAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,mCAA+B;IAA/B,gCAA+B;GAAI;EAEpE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAI;EAC1E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAI;EACxE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAI;EACtE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAI;EAC7E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAI;EAC5E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAI;EAEvE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAI;EAC/D;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAI;EACjE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAI;CxD0zMrE;;AU9yMG;E8ClDA;IAAgC,mCAA8B;IAA9B,+BAA8B;GAAI;EAClE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,2CAAsC;IAAtC,uCAAsC;GAAI;EAC1E;IAAgC,8CAAyC;IAAzC,0CAAyC;GAAI;EAE7E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAI;EAC5D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAI;EAC9D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAI;EACpE;IAA8B,8BAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAE3D;IAAoC,gCAAsC;IAAtC,uCAAsC;GAAI;EAC9E;IAAoC,8BAAoC;IAApC,qCAAoC;GAAI;EAC5E;IAAoC,iCAAkC;IAAlC,mCAAkC;GAAI;EAC1E;IAAoC,kCAAyC;IAAzC,0CAAyC;GAAI;EACjF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAI;EAEhF;IAAiC,iCAAkC;IAAlC,mCAAkC;GAAI;EACvE;IAAiC,+BAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,kCAA8B;IAA9B,+BAA8B;GAAI;EACnE;IAAiC,oCAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,mCAA+B;IAA/B,gCAA+B;GAAI;EAEpE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAI;EAC1E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAI;EACxE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAI;EACtE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAI;EAC7E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAI;EAC5E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAI;EAEvE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAI;EAC/D;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAI;EACjE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAI;CxDm6MrE;;AUv5MG;E8ClDA;IAAgC,mCAA8B;IAA9B,+BAA8B;GAAI;EAClE;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,2CAAsC;IAAtC,uCAAsC;GAAI;EAC1E;IAAgC,8CAAyC;IAAzC,0CAAyC;GAAI;EAE7E;IAA8B,+BAA0B;IAA1B,2BAA0B;GAAI;EAC5D;IAA8B,iCAA4B;IAA5B,6BAA4B;GAAI;EAC9D;IAA8B,uCAAkC;IAAlC,mCAAkC;GAAI;EACpE;IAA8B,8BAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAuB;IAAvB,wBAAuB;GAAI;EACzD;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAC3D;IAA8B,gCAAyB;IAAzB,0BAAyB;GAAI;EAE3D;IAAoC,gCAAsC;IAAtC,uCAAsC;GAAI;EAC9E;IAAoC,8BAAoC;IAApC,qCAAoC;GAAI;EAC5E;IAAoC,iCAAkC;IAAlC,mCAAkC;GAAI;EAC1E;IAAoC,kCAAyC;IAAzC,0CAAyC;GAAI;EACjF;IAAoC,qCAAwC;IAAxC,yCAAwC;GAAI;EAEhF;IAAiC,iCAAkC;IAAlC,mCAAkC;GAAI;EACvE;IAAiC,+BAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,kCAA8B;IAA9B,+BAA8B;GAAI;EACnE;IAAiC,oCAAgC;IAAhC,iCAAgC;GAAI;EACrE;IAAiC,mCAA+B;IAA/B,gCAA+B;GAAI;EAEpE;IAAkC,qCAAoC;IAApC,qCAAoC;GAAI;EAC1E;IAAkC,mCAAkC;IAAlC,mCAAkC;GAAI;EACxE;IAAkC,sCAAgC;IAAhC,iCAAgC;GAAI;EACtE;IAAkC,uCAAuC;IAAvC,wCAAuC;GAAI;EAC7E;IAAkC,0CAAsC;IAAtC,uCAAsC;GAAI;EAC5E;IAAkC,uCAAiC;IAAjC,kCAAiC;GAAI;EAEvE;IAAgC,qCAA2B;IAA3B,4BAA2B;GAAI;EAC/D;IAAgC,sCAAiC;IAAjC,kCAAiC;GAAI;EACrE;IAAgC,oCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,uCAA6B;IAA7B,8BAA6B;GAAI;EACjE;IAAgC,yCAA+B;IAA/B,gCAA+B;GAAI;EACnE;IAAgC,wCAA8B;IAA9B,+BAA8B;GAAI;CxD4gNrE;;AyDxjNG;ECDF,uBAAsB;CDC2B;;AAC/C;ECCF,wBAAuB;CDD2B;;AAChD;ECGF,uBAAsB;CDH2B;;A/CsD/C;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;CzD8kNlD;;AUxhNG;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;CzD0lNlD;;AUpiNG;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;CzDsmNlD;;AUhjNG;E+CxDA;ICDF,uBAAsB;GDC2B;EAC/C;ICCF,wBAAuB;GDD2B;EAChD;ICGF,uBAAsB;GDH2B;CzDknNlD;;A2D/mNC;EAAyB,4BAA8B;CAAI;;AAA3D;EAAyB,8BAA8B;CAAI;;AAA3D;EAAyB,8BAA8B;CAAI;;AAA3D;EAAyB,2BAA8B;CAAI;;AAA3D;EAAyB,oCAA8B;EAA9B,4BAA8B;CAAI;;AAK7D;EACE,gBAAe;EACf,OAAM;EACN,SAAQ;EACR,QAAO;EACP,c5DmlBsC;C4DllBvC;;AAED;EACE,gBAAe;EACf,SAAQ;EACR,UAAS;EACT,QAAO;EACP,c5D2kBsC;C4D1kBvC;;AAG6B;EAD9B;IAEI,yBAAgB;IAAhB,iBAAgB;IAChB,OAAM;IACN,c5DmkBoC;G4DjkBvC;C3DgoNA;;A4DhqND;ECEE,mBAAkB;EAClB,WAAU;EACV,YAAW;EACX,WAAU;EACV,iBAAgB;EAChB,uBAAsB;EACtB,oBAAmB;EACnB,UAAS;CDPV;;ACiBC;EAEE,iBAAgB;EAChB,YAAW;EACX,aAAY;EACZ,kBAAiB;EACjB,WAAU;EACV,oBAAmB;CACpB;;AC7BH;EAAa,+DAAqC;CAAI;;AACtD;EAAU,yDAAkC;CAAI;;AAChD;EAAa,wDAAqC;CAAI;;AACtD;EAAe,4BAA2B;CAAI;;ACC1C;EAAuB,sBAA4B;CAAI;;AAAvD;EAAuB,sBAA4B;CAAI;;AAAvD;EAAuB,sBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,uBAA4B;CAAI;;AAAvD;EAAuB,wBAA4B;CAAI;;AAAvD;EAAuB,wBAA4B;CAAI;;AAI3D;EAAU,2BAA0B;CAAI;;AACxC;EAAU,4BAA2B;CAAI;;ACAjC;EAAgC,qBAA4B;CAAI;;AAChE;;EAEE,yBAAoC;CACrC;;AACD;;EAEE,2BAAwC;CACzC;;AACD;;EAEE,4BAA0C;CAC3C;;AACD;;EAEE,0BAAsC;CACvC;;AAhBD;EAAgC,2BAA4B;CAAI;;AAChE;;EAEE,+BAAoC;CACrC;;AACD;;EAEE,iCAAwC;CACzC;;AACD;;EAEE,kCAA0C;CAC3C;;AACD;;EAEE,gCAAsC;CACvC;;AAhBD;EAAgC,0BAA4B;CAAI;;AAChE;;EAEE,8BAAoC;CACrC;;AACD;;EAEE,gCAAwC;CACzC;;AACD;;EAEE,iCAA0C;CAC3C;;AACD;;EAEE,+BAAsC;CACvC;;AAhBD;EAAgC,wBAA4B;CAAI;;AAChE;;EAEE,4BAAoC;CACrC;;AACD;;EAEE,8BAAwC;CACzC;;AACD;;EAEE,+BAA0C;CAC3C;;AACD;;EAEE,6BAAsC;CACvC;;AAhBD;EAAgC,0BAA4B;CAAI;;AAChE;;EAEE,8BAAoC;CACrC;;AACD;;EAEE,gCAAwC;CACzC;;AACD;;EAEE,iCAA0C;CAC3C;;AACD;;EAEE,+BAAsC;CACvC;;AAhBD;EAAgC,wBAA4B;CAAI;;AAChE;;EAEE,4BAAoC;CACrC;;AACD;;EAEE,8BAAwC;CACzC;;AACD;;EAEE,+BAA0C;CAC3C;;AACD;;EAEE,6BAAsC;CACvC;;AAhBD;EAAgC,sBAA4B;CAAI;;AAChE;;EAEE,0BAAoC;CACrC;;AACD;;EAEE,4BAAwC;CACzC;;AACD;;EAEE,6BAA0C;CAC3C;;AACD;;EAEE,2BAAsC;CACvC;;AAhBD;EAAgC,4BAA4B;CAAI;;AAChE;;EAEE,gCAAoC;CACrC;;AACD;;EAEE,kCAAwC;CACzC;;AACD;;EAEE,mCAA0C;CAC3C;;AACD;;EAEE,iCAAsC;CACvC;;AAhBD;EAAgC,2BAA4B;CAAI;;AAChE;;EAEE,+BAAoC;CACrC;;AACD;;EAEE,iCAAwC;CACzC;;AACD;;EAEE,kCAA0C;CAC3C;;AACD;;EAEE,gCAAsC;CACvC;;AAhBD;EAAgC,yBAA4B;CAAI;;AAChE;;EAEE,6BAAoC;CACrC;;AACD;;EAEE,+BAAwC;CACzC;;AACD;;EAEE,gCAA0C;CAC3C;;AACD;;EAEE,8BAAsC;CACvC;;AAhBD;EAAgC,2BAA4B;CAAI;;AAChE;;EAEE,+BAAoC;CACrC;;AACD;;EAEE,iCAAwC;CACzC;;AACD;;EAEE,kCAA0C;CAC3C;;AACD;;EAEE,gCAAsC;CACvC;;AAhBD;EAAgC,yBAA4B;CAAI;;AAChE;;EAEE,6BAAoC;CACrC;;AACD;;EAEE,+BAAwC;CACzC;;AACD;;EAEE,gCAA0C;CAC3C;;AACD;;EAEE,8BAAsC;CACvC;;AAKL;EAAmB,wBAAuB;CAAI;;AAC9C;;EAEE,4BAA2B;CAC5B;;AACD;;EAEE,8BAA6B;CAC9B;;AACD;;EAEE,+BAA8B;CAC/B;;AACD;;EAEE,6BAA4B;CAC7B;;AtDYD;EsDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAI;EAC9C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChE0vOJ;;AU9uOG;EsDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAI;EAC9C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChEo/OJ;;AUx+OG;EsDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAI;EAC9C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChE8uPJ;;AUluPG;EsDjDI;IAAgC,qBAA4B;GAAI;EAChE;;IAEE,yBAAoC;GACrC;EACD;;IAEE,2BAAwC;GACzC;EACD;;IAEE,4BAA0C;GAC3C;EACD;;IAEE,0BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,0BAA4B;GAAI;EAChE;;IAEE,8BAAoC;GACrC;EACD;;IAEE,gCAAwC;GACzC;EACD;;IAEE,iCAA0C;GAC3C;EACD;;IAEE,+BAAsC;GACvC;EAhBD;IAAgC,wBAA4B;GAAI;EAChE;;IAEE,4BAAoC;GACrC;EACD;;IAEE,8BAAwC;GACzC;EACD;;IAEE,+BAA0C;GAC3C;EACD;;IAEE,6BAAsC;GACvC;EAhBD;IAAgC,sBAA4B;GAAI;EAChE;;IAEE,0BAAoC;GACrC;EACD;;IAEE,4BAAwC;GACzC;EACD;;IAEE,6BAA0C;GAC3C;EACD;;IAEE,2BAAsC;GACvC;EAhBD;IAAgC,4BAA4B;GAAI;EAChE;;IAEE,gCAAoC;GACrC;EACD;;IAEE,kCAAwC;GACzC;EACD;;IAEE,mCAA0C;GAC3C;EACD;;IAEE,iCAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAhBD;IAAgC,2BAA4B;GAAI;EAChE;;IAEE,+BAAoC;GACrC;EACD;;IAEE,iCAAwC;GACzC;EACD;;IAEE,kCAA0C;GAC3C;EACD;;IAEE,gCAAsC;GACvC;EAhBD;IAAgC,yBAA4B;GAAI;EAChE;;IAEE,6BAAoC;GACrC;EACD;;IAEE,+BAAwC;GACzC;EACD;;IAEE,gCAA0C;GAC3C;EACD;;IAEE,8BAAsC;GACvC;EAKL;IAAmB,wBAAuB;GAAI;EAC9C;;IAEE,4BAA2B;GAC5B;EACD;;IAEE,8BAA6B;GAC9B;EACD;;IAEE,+BAA8B;GAC/B;EACD;;IAEE,6BAA4B;GAC7B;ChEw+PJ;;AiElhQD;EAAkB,kGlEqPgG;CkErPzD;;AAIzD;EAAiB,+BAA8B;CAAI;;AACnD;EAAiB,+BAA8B;CAAI;;AACnD;ECRE,iBAAgB;EAChB,wBAAuB;EACvB,oBAAmB;CDMsB;;AAQvC;EAAwB,4BAA2B;CAAI;;AACvD;EAAwB,6BAA4B;CAAI;;AACxD;EAAwB,8BAA6B;CAAI;;AvDsCzD;EuDxCA;IAAwB,4BAA2B;GAAI;EACvD;IAAwB,6BAA4B;GAAI;EACxD;IAAwB,8BAA6B;GAAI;CjE4iQ5D;;AUtgQG;EuDxCA;IAAwB,4BAA2B;GAAI;EACvD;IAAwB,6BAA4B;GAAI;EACxD;IAAwB,8BAA6B;GAAI;CjEwjQ5D;;AUlhQG;EuDxCA;IAAwB,4BAA2B;GAAI;EACvD;IAAwB,6BAA4B;GAAI;EACxD;IAAwB,8BAA6B;GAAI;CjEokQ5D;;AU9hQG;EuDxCA;IAAwB,4BAA2B;GAAI;EACvD;IAAwB,6BAA4B;GAAI;EACxD;IAAwB,8BAA6B;GAAI;CjEglQ5D;;AiE1kQD;EAAmB,qCAAoC;CAAI;;AAC3D;EAAmB,qCAAoC;CAAI;;AAC3D;EAAmB,sCAAqC;CAAI;;AAI5D;EAAsB,4BAA0C;CAAI;;AACpE;EAAsB,4BAA2C;CAAI;;AACrE;EAAsB,4BAAyC;CAAI;;AACnE;EAAsB,8BAA6B;CAAI;;AAIvD;EAAc,uBAAwB;CAAI;;AEpCxC;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AkEdD;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AkEdD;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AkEdD;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AkEdD;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AkEdD;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AkEdD;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AkEdD;EACE,0BAAwB;CACzB;;AlESD;EkENI,0BAAqC;ClESxC;;AgE4BH;EAAa,0BAA6B;CAAI;;AAC9C;EAAc,0BAA6B;CAAI;;AAE/C;EAAiB,qCAAkC;CAAI;;AACvD;EAAiB,2CAAkC;CAAI;;AAIvD;EGpDE,YAAW;EACX,mBAAkB;EAClB,kBAAiB;EACjB,8BAA6B;EAC7B,UAAS;CHkDV;;AIrDD;ECCE,+BAAkC;CDCnC;;AAED;ECHE,8BAAkC;CDKnC;;AECC;EzESF;;;IyEHM,6BAA4B;IAE5B,4BAA2B;GAC5B;EAED;IAEI,2BAA0B;GAC3B;EAQH;IACE,8BAA6B;GAC9B;EzE+ML;IyEjMM,iCAAgC;GACjC;EACD;;IAEE,0BxEtCY;IwEuCZ,yBAAwB;GACzB;EAOD;IACE,4BAA2B;GAC5B;EAED;;IAEE,yBAAwB;GACzB;EAED;;;IAGE,WAAU;IACV,UAAS;GACV;EAED;;IAEE,wBAAuB;GACxB;EAOD;IACE,SxE61BgC;GC01OnC;EFxtQH;IyEoCM,4BAA2C;GAC5C;E/DxFH;I+D0FI,4BAA2C;GAC5C;E1C/EL;I0CmFM,cAAa;GACd;ErChGL;IqCkGM,uBxEnFS;GwEoFV;E3DpGL;I2DuGM,qCAAoC;GAMrC;EAPD;;IAKI,kCAAmC;GACpC;E3DjEP;;I2DuEQ,qCAAsC;GACvC;E3DYP;I2DRM,eAAc;GAQf;EATD;;;;IAOI,sBxEpHU;GwEqHX;E3DjBP;I2DqBM,eAAc;IACd,sBxE1HY;GwE2Hb;CvE6qQJ","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"utilities\";\n@import \"print\";\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n// we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -ms-text-size-adjust: 100%; // 4\n -ms-overflow-style: scrollbar; // 5\n -webkit-tap-highlight-color: rgba($black, 0); // 6\n}\n\n// IE10+ doesn't honor `` in some cases.\n@at-root {\n @-ms-viewport {\n width: device-width;\n }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n font-size: $font-size-base;\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 1\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n @include hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n\n @include hover-focus {\n color: inherit;\n text-decoration: none;\n }\n\n &:focus {\n outline: 0;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n // bug where setting a custom line-height prevents text from being vertically\n // centered within the input.\n // See https://bugs.webkit.org/show_bug.cgi?id=139848\n // and https://github.com/twbs/bootstrap/issues/11266\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto; // Remove the default vertical scrollbar in IE.\n // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n resize: vertical;\n}\n\nfieldset {\n // Browsers set a default `min-width: min-content;` on fieldsets,\n // unlike e.g. `

`s, which have `min-width: 0;` by default.\n // So we reset that to ensure fieldsets behave more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359\n // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n min-width: 0;\n // Reset the default outline behavior of fieldsets so they don't affect page layout.\n padding: 0;\n margin: 0;\n border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n display: block;\n width: 100%;\n max-width: 100%; // 1\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit; // 2\n white-space: normal; // 1\n}\n\nprogress {\n vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n // This overrides the extra rounded corners on search inputs in iOS so that our\n // `.form-control` class can properly style them. Note that this cannot simply\n // be added to `.form-control` as it's not specific enough. For details, see\n // https://github.com/twbs/bootstrap/issues/11586.\n outline-offset: -2px; // 2. Correct the outline style in Safari.\n -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n font: inherit; // 2\n -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item; // Add the correct display in all browsers\n cursor: pointer;\n}\n\ntemplate {\n display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n display: none !important;\n}\n","// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n$white: #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black: #000 !default;\n\n$grays: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$grays: map-merge(\n (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n ),\n $grays\n);\n\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$colors: map-merge(\n (\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n ),\n $colors\n);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$theme-colors: map-merge(\n (\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n ),\n $theme-colors\n);\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: false !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS\n$enable-grid-classes: true !default;\n$enable-print-styles: true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n$spacer: 1rem !default;\n$spacers: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$spacers: map-merge(\n (\n 0: 0,\n 1: ($spacer * .25),\n 2: ($spacer * .5),\n 3: $spacer,\n 4: ($spacer * 1.5),\n 5: ($spacer * 3)\n ),\n $spacers\n);\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$sizes: map-merge(\n (\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%,\n auto: auto\n ),\n $sizes\n);\n\n// Body\n//\n// Settings for the `` element.\n\n$body-bg: $white !default;\n$body-color: $gray-900 !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color: theme-color(\"primary\") !default;\n$link-decoration: none !default;\n$link-hover-color: darken($link-color, 15%) !default;\n$link-hover-decoration: underline !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom: 1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n xs: 0,\n sm: 576px,\n md: 768px,\n lg: 992px,\n xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints);\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n sm: 540px,\n md: 720px,\n lg: 960px,\n xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns: 12 !default;\n$grid-gutter-width: 30px !default;\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg: 1.5 !default;\n$line-height-sm: 1.5 !default;\n\n$border-width: 1px !default;\n$border-color: $gray-300 !default;\n\n$border-radius: .25rem !default;\n$border-radius-lg: .3rem !default;\n$border-radius-sm: .2rem !default;\n\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n\n$component-active-color: $white !default;\n$component-active-bg: theme-color(\"primary\") !default;\n\n$caret-width: .3em !default;\n\n$transition-base: all .2s ease-in-out !default;\n$transition-fade: opacity .15s linear !default;\n$transition-collapse: height .35s ease !default;\n\n\n// Fonts\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base: $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base: 1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg: ($font-size-base * 1.25) !default;\n$font-size-sm: ($font-size-base * .875) !default;\n\n$font-weight-light: 300 !default;\n$font-weight-normal: 400 !default;\n$font-weight-bold: 700 !default;\n\n$font-weight-base: $font-weight-normal !default;\n$line-height-base: 1.5 !default;\n\n$h1-font-size: $font-size-base * 2.5 !default;\n$h2-font-size: $font-size-base * 2 !default;\n$h3-font-size: $font-size-base * 1.75 !default;\n$h4-font-size: $font-size-base * 1.5 !default;\n$h5-font-size: $font-size-base * 1.25 !default;\n$h6-font-size: $font-size-base !default;\n\n$headings-margin-bottom: ($spacer / 2) !default;\n$headings-font-family: inherit !default;\n$headings-font-weight: 500 !default;\n$headings-line-height: 1.2 !default;\n$headings-color: inherit !default;\n\n$display1-size: 6rem !default;\n$display2-size: 5.5rem !default;\n$display3-size: 4.5rem !default;\n$display4-size: 3.5rem !default;\n\n$display1-weight: 300 !default;\n$display2-weight: 300 !default;\n$display3-weight: 300 !default;\n$display4-weight: 300 !default;\n$display-line-height: $headings-line-height !default;\n\n$lead-font-size: ($font-size-base * 1.25) !default;\n$lead-font-weight: 300 !default;\n\n$small-font-size: 80% !default;\n\n$text-muted: $gray-600 !default;\n\n$blockquote-small-color: $gray-600 !default;\n$blockquote-font-size: ($font-size-base * 1.25) !default;\n\n$hr-border-color: rgba($black, .1) !default;\n$hr-border-width: $border-width !default;\n\n$mark-padding: .2em !default;\n\n$dt-font-weight: $font-weight-bold !default;\n\n$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight: $font-weight-bold !default;\n\n$list-inline-padding: .5rem !default;\n\n$mark-bg: #fcf8e3 !default;\n\n$hr-margin-y: $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding: .75rem !default;\n$table-cell-padding-sm: .3rem !default;\n\n$table-bg: transparent !default;\n$table-accent-bg: rgba($black, .05) !default;\n$table-hover-bg: rgba($black, .075) !default;\n$table-active-bg: $table-hover-bg !default;\n\n$table-border-width: $border-width !default;\n$table-border-color: $gray-300 !default;\n\n$table-head-bg: $gray-200 !default;\n$table-head-color: $gray-700 !default;\n\n$table-dark-bg: $gray-900 !default;\n$table-dark-accent-bg: rgba($white, .05) !default;\n$table-dark-hover-bg: rgba($white, .075) !default;\n$table-dark-border-color: lighten($gray-900, 7.5%) !default;\n$table-dark-color: $body-bg !default;\n\n$table-striped-order: odd !default;\n\n$table-caption-color: $text-muted !default;\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y: .375rem !default;\n$input-btn-padding-x: .75rem !default;\n$input-btn-line-height: $line-height-base !default;\n\n$input-btn-focus-width: .2rem !default;\n$input-btn-focus-color: rgba($component-active-bg, .25) !default;\n$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm: .25rem !default;\n$input-btn-padding-x-sm: .5rem !default;\n$input-btn-line-height-sm: $line-height-sm !default;\n\n$input-btn-padding-y-lg: .5rem !default;\n$input-btn-padding-x-lg: 1rem !default;\n$input-btn-line-height-lg: $line-height-lg !default;\n\n$input-btn-border-width: $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y: $input-btn-padding-y !default;\n$btn-padding-x: $input-btn-padding-x !default;\n$btn-line-height: $input-btn-line-height !default;\n\n$btn-padding-y-sm: $input-btn-padding-y-sm !default;\n$btn-padding-x-sm: $input-btn-padding-x-sm !default;\n$btn-line-height-sm: $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg: $input-btn-padding-y-lg !default;\n$btn-padding-x-lg: $input-btn-padding-x-lg !default;\n$btn-line-height-lg: $input-btn-line-height-lg !default;\n\n$btn-border-width: $input-btn-border-width !default;\n\n$btn-font-weight: $font-weight-normal !default;\n$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width: $input-btn-focus-width !default;\n$btn-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity: .65 !default;\n$btn-active-box-shadow: inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color: $gray-600 !default;\n\n$btn-block-spacing-y: .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius: $border-radius !default;\n$btn-border-radius-lg: $border-radius-lg !default;\n$btn-border-radius-sm: $border-radius-sm !default;\n\n$btn-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$label-margin-bottom: .5rem !default;\n\n$input-padding-y: $input-btn-padding-y !default;\n$input-padding-x: $input-btn-padding-x !default;\n$input-line-height: $input-btn-line-height !default;\n\n$input-padding-y-sm: $input-btn-padding-y-sm !default;\n$input-padding-x-sm: $input-btn-padding-x-sm !default;\n$input-line-height-sm: $input-btn-line-height-sm !default;\n\n$input-padding-y-lg: $input-btn-padding-y-lg !default;\n$input-padding-x-lg: $input-btn-padding-x-lg !default;\n$input-line-height-lg: $input-btn-line-height-lg !default;\n\n$input-bg: $white !default;\n$input-disabled-bg: $gray-200 !default;\n\n$input-color: $gray-700 !default;\n$input-border-color: $gray-400 !default;\n$input-border-width: $input-btn-border-width !default;\n$input-box-shadow: inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius: $border-radius !default;\n$input-border-radius-lg: $border-radius-lg !default;\n$input-border-radius-sm: $border-radius-sm !default;\n\n$input-focus-bg: $input-bg !default;\n$input-focus-border-color: lighten($component-active-bg, 25%) !default;\n$input-focus-color: $input-color !default;\n$input-focus-width: $input-btn-focus-width !default;\n$input-focus-box-shadow: $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color: $gray-600 !default;\n$input-plaintext-color: $body-color !default;\n\n$input-height-border: $input-border-width * 2 !default;\n\n$input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;\n$input-height: calc(#{$input-height-inner} + #{$input-height-border}) !default;\n\n$input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;\n$input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;\n\n$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;\n$input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;\n\n$input-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top: .25rem !default;\n\n$form-check-input-gutter: 1.25rem !default;\n$form-check-input-margin-y: .3rem !default;\n$form-check-input-margin-x: .25rem !default;\n\n$form-check-inline-margin-x: .75rem !default;\n$form-check-inline-input-margin-x: .3125rem !default;\n\n$form-group-margin-bottom: 1rem !default;\n\n$input-group-addon-color: $input-color !default;\n$input-group-addon-bg: $gray-200 !default;\n$input-group-addon-border-color: $input-border-color !default;\n\n$custom-forms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$custom-control-gutter: 1.5rem !default;\n$custom-control-spacer-x: 1rem !default;\n\n$custom-control-indicator-size: 1rem !default;\n$custom-control-indicator-bg: $gray-300 !default;\n$custom-control-indicator-bg-size: 50% 50% !default;\n$custom-control-indicator-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-control-indicator-disabled-bg: $gray-200 !default;\n$custom-control-label-disabled-color: $gray-600 !default;\n\n$custom-control-indicator-checked-color: $component-active-color !default;\n$custom-control-indicator-checked-bg: $component-active-bg !default;\n$custom-control-indicator-checked-disabled-bg: rgba(theme-color(\"primary\"), .5) !default;\n$custom-control-indicator-checked-box-shadow: none !default;\n\n$custom-control-indicator-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n\n$custom-control-indicator-active-color: $component-active-color !default;\n$custom-control-indicator-active-bg: lighten($component-active-bg, 35%) !default;\n$custom-control-indicator-active-box-shadow: none !default;\n\n$custom-checkbox-indicator-border-radius: $border-radius !default;\n$custom-checkbox-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg: $component-active-bg !default;\n$custom-checkbox-indicator-indeterminate-color: $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow: none !default;\n\n$custom-radio-indicator-border-radius: 50% !default;\n$custom-radio-indicator-icon-checked: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-select-padding-y: .375rem !default;\n$custom-select-padding-x: .75rem !default;\n$custom-select-height: $input-height !default;\n$custom-select-indicator-padding: 1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-line-height: $input-btn-line-height !default;\n$custom-select-color: $input-color !default;\n$custom-select-disabled-color: $gray-600 !default;\n$custom-select-bg: $input-bg !default;\n$custom-select-disabled-bg: $gray-200 !default;\n$custom-select-bg-size: 8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color: $gray-800 !default;\n$custom-select-indicator: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-select-border-width: $input-btn-border-width !default;\n$custom-select-border-color: $input-border-color !default;\n$custom-select-border-radius: $border-radius !default;\n$custom-select-box-shadow: inset 0 1px 2px rgba($black, .075) !default;\n\n$custom-select-focus-border-color: $input-focus-border-color !default;\n$custom-select-focus-width: $input-btn-focus-width !default;\n$custom-select-focus-box-shadow: 0 0 0 $custom-select-focus-width rgba($custom-select-focus-border-color, .5) !default;\n\n$custom-select-font-size-sm: 75% !default;\n$custom-select-height-sm: $input-height-sm !default;\n\n$custom-select-font-size-lg: 125% !default;\n$custom-select-height-lg: $input-height-lg !default;\n\n$custom-range-track-width: 100% !default;\n$custom-range-track-height: .5rem !default;\n$custom-range-track-cursor: pointer !default;\n$custom-range-track-bg: $gray-300 !default;\n$custom-range-track-border-radius: 1rem !default;\n$custom-range-track-box-shadow: inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-range-thumb-width: 1rem !default;\n$custom-range-thumb-height: $custom-range-thumb-width !default;\n$custom-range-thumb-bg: $component-active-bg !default;\n$custom-range-thumb-border: 0 !default;\n$custom-range-thumb-border-radius: 1rem !default;\n$custom-range-thumb-box-shadow: 0 .1rem .25rem rgba($black, .1) !default;\n$custom-range-thumb-focus-box-shadow: 0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n$custom-range-thumb-focus-box-shadow-width: $input-btn-focus-width !default; // For focus box shadow issue in IE/Edge\n$custom-range-thumb-active-bg: lighten($component-active-bg, 35%) !default;\n\n$custom-file-height: $input-height !default;\n$custom-file-height-inner: $input-height-inner !default;\n$custom-file-focus-border-color: $input-focus-border-color !default;\n$custom-file-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$custom-file-disabled-bg: $input-disabled-bg !default;\n\n$custom-file-padding-y: $input-btn-padding-y !default;\n$custom-file-padding-x: $input-btn-padding-x !default;\n$custom-file-line-height: $input-btn-line-height !default;\n$custom-file-color: $input-color !default;\n$custom-file-bg: $input-bg !default;\n$custom-file-border-width: $input-btn-border-width !default;\n$custom-file-border-color: $input-border-color !default;\n$custom-file-border-radius: $input-border-radius !default;\n$custom-file-box-shadow: $input-box-shadow !default;\n$custom-file-button-color: $custom-file-color !default;\n$custom-file-button-bg: $input-group-addon-bg !default;\n$custom-file-text: (\n en: \"Browse\"\n) !default;\n\n\n// Form validation\n$form-feedback-margin-top: $form-text-margin-top !default;\n$form-feedback-font-size: $small-font-size !default;\n$form-feedback-valid-color: theme-color(\"success\") !default;\n$form-feedback-invalid-color: theme-color(\"danger\") !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width: 10rem !default;\n$dropdown-padding-y: .5rem !default;\n$dropdown-spacer: .125rem !default;\n$dropdown-bg: $white !default;\n$dropdown-border-color: rgba($black, .15) !default;\n$dropdown-border-radius: $border-radius !default;\n$dropdown-border-width: $border-width !default;\n$dropdown-divider-bg: $gray-200 !default;\n$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color: $gray-900 !default;\n$dropdown-link-hover-color: darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg: $gray-100 !default;\n\n$dropdown-link-active-color: $component-active-color !default;\n$dropdown-link-active-bg: $component-active-bg !default;\n\n$dropdown-link-disabled-color: $gray-600 !default;\n\n$dropdown-item-padding-y: .25rem !default;\n$dropdown-item-padding-x: 1.5rem !default;\n\n$dropdown-header-color: $gray-600 !default;\n\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown: 1000 !default;\n$zindex-sticky: 1020 !default;\n$zindex-fixed: 1030 !default;\n$zindex-modal-backdrop: 1040 !default;\n$zindex-modal: 1050 !default;\n$zindex-popover: 1060 !default;\n$zindex-tooltip: 1070 !default;\n\n// Navs\n\n$nav-link-padding-y: .5rem !default;\n$nav-link-padding-x: 1rem !default;\n$nav-link-disabled-color: $gray-600 !default;\n\n$nav-tabs-border-color: $gray-300 !default;\n$nav-tabs-border-width: $border-width !default;\n$nav-tabs-border-radius: $border-radius !default;\n$nav-tabs-link-hover-border-color: $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color: $gray-700 !default;\n$nav-tabs-link-active-bg: $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius: $border-radius !default;\n$nav-pills-link-active-color: $component-active-color !default;\n$nav-pills-link-active-bg: $component-active-bg !default;\n\n$nav-divider-color: $gray-200 !default;\n$nav-divider-margin-y: ($spacer / 2) !default;\n\n// Navbar\n\n$navbar-padding-y: ($spacer / 2) !default;\n$navbar-padding-x: $spacer !default;\n\n$navbar-nav-link-padding-x: .5rem !default;\n\n$navbar-brand-font-size: $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height: ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;\n$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y: ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y: .25rem !default;\n$navbar-toggler-padding-x: .75rem !default;\n$navbar-toggler-font-size: $font-size-lg !default;\n$navbar-toggler-border-radius: $btn-border-radius !default;\n\n$navbar-dark-color: rgba($white, .5) !default;\n$navbar-dark-hover-color: rgba($white, .75) !default;\n$navbar-dark-active-color: $white !default;\n$navbar-dark-disabled-color: rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-dark-toggler-border-color: rgba($white, .1) !default;\n\n$navbar-light-color: rgba($black, .5) !default;\n$navbar-light-hover-color: rgba($black, .7) !default;\n$navbar-light-active-color: rgba($black, .9) !default;\n$navbar-light-disabled-color: rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n// Pagination\n\n$pagination-padding-y: .5rem !default;\n$pagination-padding-x: .75rem !default;\n$pagination-padding-y-sm: .25rem !default;\n$pagination-padding-x-sm: .5rem !default;\n$pagination-padding-y-lg: .75rem !default;\n$pagination-padding-x-lg: 1.5rem !default;\n$pagination-line-height: 1.25 !default;\n\n$pagination-color: $link-color !default;\n$pagination-bg: $white !default;\n$pagination-border-width: $border-width !default;\n$pagination-border-color: $gray-300 !default;\n\n$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default;\n$pagination-focus-outline: 0 !default;\n\n$pagination-hover-color: $link-hover-color !default;\n$pagination-hover-bg: $gray-200 !default;\n$pagination-hover-border-color: $gray-300 !default;\n\n$pagination-active-color: $component-active-color !default;\n$pagination-active-bg: $component-active-bg !default;\n$pagination-active-border-color: $pagination-active-bg !default;\n\n$pagination-disabled-color: $gray-600 !default;\n$pagination-disabled-bg: $white !default;\n$pagination-disabled-border-color: $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding: 2rem !default;\n$jumbotron-bg: $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y: .75rem !default;\n$card-spacer-x: 1.25rem !default;\n$card-border-width: $border-width !default;\n$card-border-radius: $border-radius !default;\n$card-border-color: rgba($black, .125) !default;\n$card-inner-border-radius: calc(#{$card-border-radius} - #{$card-border-width}) !default;\n$card-cap-bg: rgba($black, .03) !default;\n$card-bg: $white !default;\n\n$card-img-overlay-padding: 1.25rem !default;\n\n$card-group-margin: ($grid-gutter-width / 2) !default;\n$card-deck-margin: $card-group-margin !default;\n\n$card-columns-count: 3 !default;\n$card-columns-gap: 1.25rem !default;\n$card-columns-margin: $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-font-size: $font-size-sm !default;\n$tooltip-max-width: 200px !default;\n$tooltip-color: $white !default;\n$tooltip-bg: $black !default;\n$tooltip-border-radius: $border-radius !default;\n$tooltip-opacity: .9 !default;\n$tooltip-padding-y: .25rem !default;\n$tooltip-padding-x: .5rem !default;\n$tooltip-margin: 0 !default;\n\n$tooltip-arrow-width: .8rem !default;\n$tooltip-arrow-height: .4rem !default;\n$tooltip-arrow-color: $tooltip-bg !default;\n\n\n// Popovers\n\n$popover-font-size: $font-size-sm !default;\n$popover-bg: $white !default;\n$popover-max-width: 276px !default;\n$popover-border-width: $border-width !default;\n$popover-border-color: rgba($black, .2) !default;\n$popover-border-radius: $border-radius-lg !default;\n$popover-box-shadow: 0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg: darken($popover-bg, 3%) !default;\n$popover-header-color: $headings-color !default;\n$popover-header-padding-y: .5rem !default;\n$popover-header-padding-x: .75rem !default;\n\n$popover-body-color: $body-color !default;\n$popover-body-padding-y: $popover-header-padding-y !default;\n$popover-body-padding-x: $popover-header-padding-x !default;\n\n$popover-arrow-width: 1rem !default;\n$popover-arrow-height: .5rem !default;\n$popover-arrow-color: $popover-bg !default;\n\n$popover-arrow-outer-color: fade-in($popover-border-color, .05) !default;\n\n\n// Badges\n\n$badge-font-size: 75% !default;\n$badge-font-weight: $font-weight-bold !default;\n$badge-padding-y: .25em !default;\n$badge-padding-x: .4em !default;\n$badge-border-radius: $border-radius !default;\n\n$badge-pill-padding-x: .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius: 10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding: 1rem !default;\n\n$modal-dialog-margin: .5rem !default;\n$modal-dialog-margin-y-sm-up: 1.75rem !default;\n\n$modal-title-line-height: $line-height-base !default;\n\n$modal-content-bg: $white !default;\n$modal-content-border-color: rgba($black, .2) !default;\n$modal-content-border-width: $border-width !default;\n$modal-content-border-radius: $border-radius-lg !default;\n$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg: $black !default;\n$modal-backdrop-opacity: .5 !default;\n$modal-header-border-color: $gray-200 !default;\n$modal-footer-border-color: $modal-header-border-color !default;\n$modal-header-border-width: $modal-content-border-width !default;\n$modal-footer-border-width: $modal-header-border-width !default;\n$modal-header-padding: 1rem !default;\n\n$modal-lg: 800px !default;\n$modal-md: 500px !default;\n$modal-sm: 300px !default;\n\n$modal-transition: transform .3s ease-out !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y: .75rem !default;\n$alert-padding-x: 1.25rem !default;\n$alert-margin-bottom: 1rem !default;\n$alert-border-radius: $border-radius !default;\n$alert-link-font-weight: $font-weight-bold !default;\n$alert-border-width: $border-width !default;\n\n$alert-bg-level: -10 !default;\n$alert-border-level: -9 !default;\n$alert-color-level: 6 !default;\n\n\n// Progress bars\n\n$progress-height: 1rem !default;\n$progress-font-size: ($font-size-base * .75) !default;\n$progress-bg: $gray-200 !default;\n$progress-border-radius: $border-radius !default;\n$progress-box-shadow: inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color: $white !default;\n$progress-bar-bg: theme-color(\"primary\") !default;\n$progress-bar-animation-timing: 1s linear infinite !default;\n$progress-bar-transition: width .6s ease !default;\n\n// List group\n\n$list-group-bg: $white !default;\n$list-group-border-color: rgba($black, .125) !default;\n$list-group-border-width: $border-width !default;\n$list-group-border-radius: $border-radius !default;\n\n$list-group-item-padding-y: .75rem !default;\n$list-group-item-padding-x: 1.25rem !default;\n\n$list-group-hover-bg: $gray-100 !default;\n$list-group-active-color: $component-active-color !default;\n$list-group-active-bg: $component-active-bg !default;\n$list-group-active-border-color: $list-group-active-bg !default;\n\n$list-group-disabled-color: $gray-600 !default;\n$list-group-disabled-bg: $list-group-bg !default;\n\n$list-group-action-color: $gray-700 !default;\n$list-group-action-hover-color: $list-group-action-color !default;\n\n$list-group-action-active-color: $body-color !default;\n$list-group-action-active-bg: $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding: .25rem !default;\n$thumbnail-bg: $body-bg !default;\n$thumbnail-border-width: $border-width !default;\n$thumbnail-border-color: $gray-300 !default;\n$thumbnail-border-radius: $border-radius !default;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size: 90% !default;\n$figure-caption-color: $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-padding-y: .75rem !default;\n$breadcrumb-padding-x: 1rem !default;\n$breadcrumb-item-padding: .5rem !default;\n\n$breadcrumb-margin-bottom: 1rem !default;\n\n$breadcrumb-bg: $gray-200 !default;\n$breadcrumb-divider-color: $gray-600 !default;\n$breadcrumb-active-color: $gray-600 !default;\n$breadcrumb-divider: quote(\"/\") !default;\n\n$breadcrumb-border-radius: $border-radius !default;\n\n\n// Carousel\n\n$carousel-control-color: $white !default;\n$carousel-control-width: 15% !default;\n$carousel-control-opacity: .5 !default;\n\n$carousel-indicator-width: 30px !default;\n$carousel-indicator-height: 3px !default;\n$carousel-indicator-spacer: 3px !default;\n$carousel-indicator-active-bg: $white !default;\n\n$carousel-caption-width: 70% !default;\n$carousel-caption-color: $white !default;\n\n$carousel-control-icon-width: 20px !default;\n\n$carousel-control-prev-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$carousel-control-next-icon-bg: str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$carousel-transition: transform .6s ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n\n\n// Close\n\n$close-font-size: $font-size-base * 1.5 !default;\n$close-font-weight: $font-weight-bold !default;\n$close-color: $black !default;\n$close-text-shadow: 0 1px 0 $white !default;\n\n// Code\n\n$code-font-size: 87.5% !default;\n$code-color: $pink !default;\n\n$kbd-padding-y: .2rem !default;\n$kbd-padding-x: .4rem !default;\n$kbd-font-size: $code-font-size !default;\n$kbd-color: $white !default;\n$kbd-bg: $gray-900 !default;\n\n$pre-color: $gray-900 !default;\n$pre-scrollable-max-height: 340px !default;\n\n\n// Printing\n$print-page-size: a3 !default;\n$print-body-min-width: map-get($grid-breakpoints, \"lg\") !default;\n","/*!\n * Bootstrap v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n --blue: #007bff;\n --indigo: #6610f2;\n --purple: #6f42c1;\n --pink: #e83e8c;\n --red: #dc3545;\n --orange: #fd7e14;\n --yellow: #ffc107;\n --green: #28a745;\n --teal: #20c997;\n --cyan: #17a2b8;\n --white: #fff;\n --gray: #6c757d;\n --gray-dark: #343a40;\n --primary: #007bff;\n --secondary: #6c757d;\n --success: #28a745;\n --info: #17a2b8;\n --warning: #ffc107;\n --danger: #dc3545;\n --light: #f8f9fa;\n --dark: #343a40;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n -ms-overflow-style: scrollbar;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\n@-ms-viewport {\n width: device-width;\n}\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: left;\n background-color: #fff;\n}\n\n[tabindex=\"-1\"]:focus {\n outline: 0 !important;\n}\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\ndfn {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall {\n font-size: 80%;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -.25em;\n}\n\nsup {\n top: -.5em;\n}\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent;\n -webkit-text-decoration-skip: objects;\n}\n\na:hover {\n color: #0056b3;\n text-decoration: underline;\n}\n\na:not([href]):not([tabindex]) {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n color: inherit;\n text-decoration: none;\n}\n\na:not([href]):not([tabindex]):focus {\n outline: 0;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em;\n}\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg {\n vertical-align: middle;\n border-style: none;\n}\n\nsvg {\n overflow: hidden;\n vertical-align: middle;\n}\n\ntable {\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.75rem;\n padding-bottom: 0.75rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n text-align: inherit;\n}\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button;\n}\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0;\n}\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n -webkit-appearance: listbox;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none;\n}\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\ntemplate {\n display: none;\n}\n\n[hidden] {\n display: none !important;\n}\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-family: inherit;\n font-weight: 500;\n line-height: 1.2;\n color: inherit;\n}\n\nh1, .h1 {\n font-size: 2.5rem;\n}\n\nh2, .h2 {\n font-size: 2rem;\n}\n\nh3, .h3 {\n font-size: 1.75rem;\n}\n\nh4, .h4 {\n font-size: 1.5rem;\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2;\n}\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1);\n}\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400;\n}\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d;\n}\n\n.blockquote-footer::before {\n content: \"\\2014 \\00A0\";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d;\n}\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-break: break-word;\n}\n\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\n\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700;\n}\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529;\n}\n\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n\n.container {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container {\n max-width: 540px;\n }\n}\n\n@media (min-width: 768px) {\n .container {\n max-width: 720px;\n }\n}\n\n@media (min-width: 992px) {\n .container {\n max-width: 960px;\n }\n}\n\n@media (min-width: 1200px) {\n .container {\n max-width: 1140px;\n }\n}\n\n.container-fluid {\n width: 100%;\n padding-right: 15px;\n padding-left: 15px;\n margin-right: auto;\n margin-left: auto;\n}\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0;\n}\n\n.no-gutters > .col,\n.no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n}\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n min-height: 1px;\n padding-right: 15px;\n padding-left: 15px;\n}\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n}\n\n.col-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n}\n\n.col-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n}\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%;\n}\n\n.col-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n}\n\n.col-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n}\n\n.col-6 {\n flex: 0 0 50%;\n max-width: 50%;\n}\n\n.col-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n}\n\n.col-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n}\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%;\n}\n\n.col-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n}\n\n.col-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n}\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%;\n}\n\n.order-first {\n order: -1;\n}\n\n.order-last {\n order: 13;\n}\n\n.order-0 {\n order: 0;\n}\n\n.order-1 {\n order: 1;\n}\n\n.order-2 {\n order: 2;\n}\n\n.order-3 {\n order: 3;\n}\n\n.order-4 {\n order: 4;\n}\n\n.order-5 {\n order: 5;\n}\n\n.order-6 {\n order: 6;\n}\n\n.order-7 {\n order: 7;\n}\n\n.order-8 {\n order: 8;\n}\n\n.order-9 {\n order: 9;\n}\n\n.order-10 {\n order: 10;\n}\n\n.order-11 {\n order: 11;\n}\n\n.order-12 {\n order: 12;\n}\n\n.offset-1 {\n margin-left: 8.333333%;\n}\n\n.offset-2 {\n margin-left: 16.666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.333333%;\n}\n\n.offset-5 {\n margin-left: 41.666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.333333%;\n}\n\n.offset-8 {\n margin-left: 66.666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.333333%;\n}\n\n.offset-11 {\n margin-left: 91.666667%;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-sm-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-sm-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-sm-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-sm-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-sm-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-sm-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-sm-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-sm-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-sm-first {\n order: -1;\n }\n .order-sm-last {\n order: 13;\n }\n .order-sm-0 {\n order: 0;\n }\n .order-sm-1 {\n order: 1;\n }\n .order-sm-2 {\n order: 2;\n }\n .order-sm-3 {\n order: 3;\n }\n .order-sm-4 {\n order: 4;\n }\n .order-sm-5 {\n order: 5;\n }\n .order-sm-6 {\n order: 6;\n }\n .order-sm-7 {\n order: 7;\n }\n .order-sm-8 {\n order: 8;\n }\n .order-sm-9 {\n order: 9;\n }\n .order-sm-10 {\n order: 10;\n }\n .order-sm-11 {\n order: 11;\n }\n .order-sm-12 {\n order: 12;\n }\n .offset-sm-0 {\n margin-left: 0;\n }\n .offset-sm-1 {\n margin-left: 8.333333%;\n }\n .offset-sm-2 {\n margin-left: 16.666667%;\n }\n .offset-sm-3 {\n margin-left: 25%;\n }\n .offset-sm-4 {\n margin-left: 33.333333%;\n }\n .offset-sm-5 {\n margin-left: 41.666667%;\n }\n .offset-sm-6 {\n margin-left: 50%;\n }\n .offset-sm-7 {\n margin-left: 58.333333%;\n }\n .offset-sm-8 {\n margin-left: 66.666667%;\n }\n .offset-sm-9 {\n margin-left: 75%;\n }\n .offset-sm-10 {\n margin-left: 83.333333%;\n }\n .offset-sm-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-md-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-md-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-md-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-md-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-md-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-md-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-md-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-md-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-md-first {\n order: -1;\n }\n .order-md-last {\n order: 13;\n }\n .order-md-0 {\n order: 0;\n }\n .order-md-1 {\n order: 1;\n }\n .order-md-2 {\n order: 2;\n }\n .order-md-3 {\n order: 3;\n }\n .order-md-4 {\n order: 4;\n }\n .order-md-5 {\n order: 5;\n }\n .order-md-6 {\n order: 6;\n }\n .order-md-7 {\n order: 7;\n }\n .order-md-8 {\n order: 8;\n }\n .order-md-9 {\n order: 9;\n }\n .order-md-10 {\n order: 10;\n }\n .order-md-11 {\n order: 11;\n }\n .order-md-12 {\n order: 12;\n }\n .offset-md-0 {\n margin-left: 0;\n }\n .offset-md-1 {\n margin-left: 8.333333%;\n }\n .offset-md-2 {\n margin-left: 16.666667%;\n }\n .offset-md-3 {\n margin-left: 25%;\n }\n .offset-md-4 {\n margin-left: 33.333333%;\n }\n .offset-md-5 {\n margin-left: 41.666667%;\n }\n .offset-md-6 {\n margin-left: 50%;\n }\n .offset-md-7 {\n margin-left: 58.333333%;\n }\n .offset-md-8 {\n margin-left: 66.666667%;\n }\n .offset-md-9 {\n margin-left: 75%;\n }\n .offset-md-10 {\n margin-left: 83.333333%;\n }\n .offset-md-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-lg-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-lg-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-lg-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-lg-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-lg-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-lg-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-lg-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-lg-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-lg-first {\n order: -1;\n }\n .order-lg-last {\n order: 13;\n }\n .order-lg-0 {\n order: 0;\n }\n .order-lg-1 {\n order: 1;\n }\n .order-lg-2 {\n order: 2;\n }\n .order-lg-3 {\n order: 3;\n }\n .order-lg-4 {\n order: 4;\n }\n .order-lg-5 {\n order: 5;\n }\n .order-lg-6 {\n order: 6;\n }\n .order-lg-7 {\n order: 7;\n }\n .order-lg-8 {\n order: 8;\n }\n .order-lg-9 {\n order: 9;\n }\n .order-lg-10 {\n order: 10;\n }\n .order-lg-11 {\n order: 11;\n }\n .order-lg-12 {\n order: 12;\n }\n .offset-lg-0 {\n margin-left: 0;\n }\n .offset-lg-1 {\n margin-left: 8.333333%;\n }\n .offset-lg-2 {\n margin-left: 16.666667%;\n }\n .offset-lg-3 {\n margin-left: 25%;\n }\n .offset-lg-4 {\n margin-left: 33.333333%;\n }\n .offset-lg-5 {\n margin-left: 41.666667%;\n }\n .offset-lg-6 {\n margin-left: 50%;\n }\n .offset-lg-7 {\n margin-left: 58.333333%;\n }\n .offset-lg-8 {\n margin-left: 66.666667%;\n }\n .offset-lg-9 {\n margin-left: 75%;\n }\n .offset-lg-10 {\n margin-left: 83.333333%;\n }\n .offset-lg-11 {\n margin-left: 91.666667%;\n }\n}\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none;\n }\n .col-xl-1 {\n flex: 0 0 8.333333%;\n max-width: 8.333333%;\n }\n .col-xl-2 {\n flex: 0 0 16.666667%;\n max-width: 16.666667%;\n }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%;\n }\n .col-xl-4 {\n flex: 0 0 33.333333%;\n max-width: 33.333333%;\n }\n .col-xl-5 {\n flex: 0 0 41.666667%;\n max-width: 41.666667%;\n }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%;\n }\n .col-xl-7 {\n flex: 0 0 58.333333%;\n max-width: 58.333333%;\n }\n .col-xl-8 {\n flex: 0 0 66.666667%;\n max-width: 66.666667%;\n }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%;\n }\n .col-xl-10 {\n flex: 0 0 83.333333%;\n max-width: 83.333333%;\n }\n .col-xl-11 {\n flex: 0 0 91.666667%;\n max-width: 91.666667%;\n }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%;\n }\n .order-xl-first {\n order: -1;\n }\n .order-xl-last {\n order: 13;\n }\n .order-xl-0 {\n order: 0;\n }\n .order-xl-1 {\n order: 1;\n }\n .order-xl-2 {\n order: 2;\n }\n .order-xl-3 {\n order: 3;\n }\n .order-xl-4 {\n order: 4;\n }\n .order-xl-5 {\n order: 5;\n }\n .order-xl-6 {\n order: 6;\n }\n .order-xl-7 {\n order: 7;\n }\n .order-xl-8 {\n order: 8;\n }\n .order-xl-9 {\n order: 9;\n }\n .order-xl-10 {\n order: 10;\n }\n .order-xl-11 {\n order: 11;\n }\n .order-xl-12 {\n order: 12;\n }\n .offset-xl-0 {\n margin-left: 0;\n }\n .offset-xl-1 {\n margin-left: 8.333333%;\n }\n .offset-xl-2 {\n margin-left: 16.666667%;\n }\n .offset-xl-3 {\n margin-left: 25%;\n }\n .offset-xl-4 {\n margin-left: 33.333333%;\n }\n .offset-xl-5 {\n margin-left: 41.666667%;\n }\n .offset-xl-6 {\n margin-left: 50%;\n }\n .offset-xl-7 {\n margin-left: 58.333333%;\n }\n .offset-xl-8 {\n margin-left: 66.666667%;\n }\n .offset-xl-9 {\n margin-left: 75%;\n }\n .offset-xl-10 {\n margin-left: 83.333333%;\n }\n .offset-xl-11 {\n margin-left: 91.666667%;\n }\n}\n\n.table {\n width: 100%;\n margin-bottom: 1rem;\n background-color: transparent;\n}\n\n.table th,\n.table td {\n padding: 0.75rem;\n vertical-align: top;\n border-top: 1px solid #dee2e6;\n}\n\n.table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #dee2e6;\n}\n\n.table tbody + tbody {\n border-top: 2px solid #dee2e6;\n}\n\n.table .table {\n background-color: #fff;\n}\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem;\n}\n\n.table-bordered {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered th,\n.table-bordered td {\n border: 1px solid #dee2e6;\n}\n\n.table-bordered thead th,\n.table-bordered thead td {\n border-bottom-width: 2px;\n}\n\n.table-borderless th,\n.table-borderless td,\n.table-borderless thead th,\n.table-borderless tbody + tbody {\n border: 0;\n}\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(0, 0, 0, 0.05);\n}\n\n.table-hover tbody tr:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #b8daff;\n}\n\n.table-hover .table-primary:hover {\n background-color: #9fcdff;\n}\n\n.table-hover .table-primary:hover > td,\n.table-hover .table-primary:hover > th {\n background-color: #9fcdff;\n}\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #d6d8db;\n}\n\n.table-hover .table-secondary:hover {\n background-color: #c8cbcf;\n}\n\n.table-hover .table-secondary:hover > td,\n.table-hover .table-secondary:hover > th {\n background-color: #c8cbcf;\n}\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c3e6cb;\n}\n\n.table-hover .table-success:hover {\n background-color: #b1dfbb;\n}\n\n.table-hover .table-success:hover > td,\n.table-hover .table-success:hover > th {\n background-color: #b1dfbb;\n}\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #bee5eb;\n}\n\n.table-hover .table-info:hover {\n background-color: #abdde5;\n}\n\n.table-hover .table-info:hover > td,\n.table-hover .table-info:hover > th {\n background-color: #abdde5;\n}\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #ffeeba;\n}\n\n.table-hover .table-warning:hover {\n background-color: #ffe8a1;\n}\n\n.table-hover .table-warning:hover > td,\n.table-hover .table-warning:hover > th {\n background-color: #ffe8a1;\n}\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #f5c6cb;\n}\n\n.table-hover .table-danger:hover {\n background-color: #f1b0b7;\n}\n\n.table-hover .table-danger:hover > td,\n.table-hover .table-danger:hover > th {\n background-color: #f1b0b7;\n}\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe;\n}\n\n.table-hover .table-light:hover {\n background-color: #ececf6;\n}\n\n.table-hover .table-light:hover > td,\n.table-hover .table-light:hover > th {\n background-color: #ececf6;\n}\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c6c8ca;\n}\n\n.table-hover .table-dark:hover {\n background-color: #b9bbbe;\n}\n\n.table-hover .table-dark:hover > td,\n.table-hover .table-dark:hover > th {\n background-color: #b9bbbe;\n}\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table-hover .table-active:hover > td,\n.table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075);\n}\n\n.table .thead-dark th {\n color: #fff;\n background-color: #212529;\n border-color: #32383e;\n}\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.table-dark {\n color: #fff;\n background-color: #212529;\n}\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th {\n border-color: #32383e;\n}\n\n.table-dark.table-bordered {\n border: 0;\n}\n\n.table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05);\n}\n\n.table-dark.table-hover tbody tr:hover {\n background-color: rgba(255, 255, 255, 0.075);\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-sm > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-md > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-lg > .table-bordered {\n border: 0;\n }\n}\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n }\n .table-responsive-xl > .table-bordered {\n border: 0;\n }\n}\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n}\n\n.table-responsive > .table-bordered {\n border: 0;\n}\n\n.form-control {\n display: block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n\n.form-control::-ms-expand {\n background-color: transparent;\n border: 0;\n}\n\n.form-control:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n\nselect.form-control:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n margin-bottom: 0;\n line-height: 1.5;\n color: #212529;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n\n.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm {\n height: calc(1.8125rem + 2px);\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.form-control-lg {\n height: calc(2.875rem + 2px);\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\nselect.form-control[size], select.form-control[multiple] {\n height: auto;\n}\n\ntextarea.form-control {\n height: auto;\n}\n\n.form-group {\n margin-bottom: 1rem;\n}\n\n.form-text {\n display: block;\n margin-top: 0.25rem;\n}\n\n.form-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px;\n}\n\n.form-row > .col,\n.form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input:disabled ~ .form-check-label {\n color: #6c757d;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: inline-flex;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem;\n}\n\n.form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid, .was-validated\n.custom-select:valid,\n.custom-select.is-valid {\n border-color: #28a745;\n}\n\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated\n.custom-select:valid:focus,\n.custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .form-control:valid ~ .valid-feedback,\n.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n.form-control.is-valid ~ .valid-tooltip, .was-validated\n.custom-select:valid ~ .valid-feedback,\n.was-validated\n.custom-select:valid ~ .valid-tooltip,\n.custom-select.is-valid ~ .valid-feedback,\n.custom-select.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-control-file:valid ~ .valid-feedback,\n.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,\n.form-control-file.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745;\n}\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745;\n}\n\n.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n background-color: #71dd8a;\n}\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n background-color: #34ce57;\n}\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745;\n}\n\n.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated\n.custom-select:invalid,\n.custom-select.is-invalid {\n border-color: #dc3545;\n}\n\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated\n.custom-select:invalid:focus,\n.custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-control:invalid ~ .invalid-feedback,\n.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n.form-control.is-invalid ~ .invalid-tooltip, .was-validated\n.custom-select:invalid ~ .invalid-feedback,\n.was-validated\n.custom-select:invalid ~ .invalid-tooltip,\n.custom-select.is-invalid ~ .invalid-feedback,\n.custom-select.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-control-file:invalid ~ .invalid-feedback,\n.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,\n.form-control-file.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545;\n}\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n background-color: #efa2a9;\n}\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n background-color: #e4606d;\n}\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545;\n}\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {\n border-color: inherit;\n}\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);\n}\n\n.form-inline {\n display: flex;\n flex-flow: row wrap;\n align-items: center;\n}\n\n.form-inline .form-check {\n width: 100%;\n}\n\n@media (min-width: 576px) {\n .form-inline label {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 0;\n }\n .form-inline .form-group {\n display: flex;\n flex: 0 0 auto;\n flex-flow: row wrap;\n align-items: center;\n margin-bottom: 0;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-plaintext {\n display: inline-block;\n }\n .form-inline .input-group,\n .form-inline .custom-select {\n width: auto;\n }\n .form-inline .form-check {\n display: flex;\n align-items: center;\n justify-content: center;\n width: auto;\n padding-left: 0;\n }\n .form-inline .form-check-input {\n position: relative;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0;\n }\n .form-inline .custom-control {\n align-items: center;\n justify-content: center;\n }\n .form-inline .custom-control-label {\n margin-bottom: 0;\n }\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n text-align: center;\n white-space: nowrap;\n vertical-align: middle;\n user-select: none;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n line-height: 1.5;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .btn {\n transition: none;\n }\n}\n\n.btn:hover, .btn:focus {\n text-decoration: none;\n}\n\n.btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.btn.disabled, .btn:disabled {\n opacity: 0.65;\n}\n\n.btn:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:hover {\n color: #fff;\n background-color: #0069d9;\n border-color: #0062cc;\n}\n\n.btn-primary:focus, .btn-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-primary.disabled, .btn-primary:disabled {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n.show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0062cc;\n border-color: #005cbf;\n}\n\n.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:hover {\n color: #fff;\n background-color: #5a6268;\n border-color: #545b62;\n}\n\n.btn-secondary:focus, .btn-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-secondary.disabled, .btn-secondary:disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #545b62;\n border-color: #4e555b;\n}\n\n.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-success {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:hover {\n color: #fff;\n background-color: #218838;\n border-color: #1e7e34;\n}\n\n.btn-success:focus, .btn-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-success.disabled, .btn-success:disabled {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n.show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #1e7e34;\n border-color: #1c7430;\n}\n\n.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-info {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:hover {\n color: #fff;\n background-color: #138496;\n border-color: #117a8b;\n}\n\n.btn-info:focus, .btn-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-info.disabled, .btn-info:disabled {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n.show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #117a8b;\n border-color: #10707f;\n}\n\n.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-warning {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:hover {\n color: #212529;\n background-color: #e0a800;\n border-color: #d39e00;\n}\n\n.btn-warning:focus, .btn-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n.show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #d39e00;\n border-color: #c69500;\n}\n\n.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:hover {\n color: #fff;\n background-color: #c82333;\n border-color: #bd2130;\n}\n\n.btn-danger:focus, .btn-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n.show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #bd2130;\n border-color: #b21f2d;\n}\n\n.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n}\n\n.btn-light:focus, .btn-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n.show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df;\n}\n\n.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-dark {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:hover {\n color: #fff;\n background-color: #23272b;\n border-color: #1d2124;\n}\n\n.btn-dark:focus, .btn-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n.show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1d2124;\n border-color: #171a1d;\n}\n\n.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-primary {\n color: #007bff;\n background-color: transparent;\n background-image: none;\n border-color: #007bff;\n}\n\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-primary.dropdown-toggle {\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n background-color: transparent;\n background-image: none;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n.show > .btn-outline-secondary.dropdown-toggle {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n}\n\n.btn-outline-success {\n color: #28a745;\n background-color: transparent;\n background-image: none;\n border-color: #28a745;\n}\n\n.btn-outline-success:hover {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #28a745;\n background-color: transparent;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n.show > .btn-outline-success.dropdown-toggle {\n color: #fff;\n background-color: #28a745;\n border-color: #28a745;\n}\n\n.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);\n}\n\n.btn-outline-info {\n color: #17a2b8;\n background-color: transparent;\n background-image: none;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:hover {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #17a2b8;\n background-color: transparent;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n.show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #17a2b8;\n border-color: #17a2b8;\n}\n\n.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n}\n\n.btn-outline-warning {\n color: #ffc107;\n background-color: transparent;\n background-image: none;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:hover {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n.show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);\n}\n\n.btn-outline-danger {\n color: #dc3545;\n background-color: transparent;\n background-image: none;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n.show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n background-color: transparent;\n background-image: none;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n.show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n}\n\n.btn-outline-dark {\n color: #343a40;\n background-color: transparent;\n background-image: none;\n border-color: #343a40;\n}\n\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #343a40;\n background-color: transparent;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n.show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #343a40;\n border-color: #343a40;\n}\n\n.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n.show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n}\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n background-color: transparent;\n}\n\n.btn-link:hover {\n color: #0056b3;\n text-decoration: underline;\n background-color: transparent;\n border-color: transparent;\n}\n\n.btn-link:focus, .btn-link.focus {\n text-decoration: underline;\n border-color: transparent;\n box-shadow: none;\n}\n\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n pointer-events: none;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n.btn-block + .btn-block {\n margin-top: 0.5rem;\n}\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n\n.fade {\n transition: opacity 0.15s linear;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .fade {\n transition: none;\n }\n}\n\n.fade:not(.show) {\n opacity: 0;\n}\n\n.collapse:not(.show) {\n display: none;\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none;\n }\n}\n\n.dropup,\n.dropright,\n.dropdown,\n.dropleft {\n position: relative;\n}\n\n.dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n\n.dropdown-menu-right {\n right: 0;\n left: auto;\n}\n\n.dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-menu {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: 0.125rem;\n}\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropleft .dropdown-menu {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: 0.125rem;\n}\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n\n.dropleft .dropdown-toggle::after {\n display: none;\n}\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-menu[x-placement^=\"top\"], .dropdown-menu[x-placement^=\"right\"], .dropdown-menu[x-placement^=\"bottom\"], .dropdown-menu[x-placement^=\"left\"] {\n right: auto;\n bottom: auto;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e9ecef;\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n\n.dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff;\n}\n\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1.5rem;\n color: #212529;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 0 1 auto;\n}\n\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover {\n z-index: 1;\n}\n\n.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group,\n.btn-group-vertical .btn + .btn,\n.btn-group-vertical .btn + .btn-group,\n.btn-group-vertical .btn-group + .btn,\n.btn-group-vertical .btn-group + .btn-group {\n margin-left: -1px;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n\n.dropdown-toggle-split::after,\n.dropup .dropdown-toggle-split::after,\n.dropright .dropdown-toggle-split::after {\n margin-left: 0;\n}\n\n.dropleft .dropdown-toggle-split::before {\n margin-right: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n\n.btn-group-vertical .btn,\n.btn-group-vertical .btn-group {\n width: 100%;\n}\n\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0;\n}\n\n.btn-group-toggle > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn input[type=\"checkbox\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n.btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n\n.input-group > .form-control,\n.input-group > .custom-select,\n.input-group > .custom-file {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n margin-bottom: 0;\n}\n\n.input-group > .form-control + .form-control,\n.input-group > .form-control + .custom-select,\n.input-group > .form-control + .custom-file,\n.input-group > .custom-select + .form-control,\n.input-group > .custom-select + .custom-select,\n.input-group > .custom-select + .custom-file,\n.input-group > .custom-file + .form-control,\n.input-group > .custom-file + .custom-select,\n.input-group > .custom-file + .custom-file {\n margin-left: -1px;\n}\n\n.input-group > .form-control:focus,\n.input-group > .custom-select:focus,\n.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {\n z-index: 3;\n}\n\n.input-group > .custom-file .custom-file-input:focus {\n z-index: 4;\n}\n\n.input-group > .form-control:not(:last-child),\n.input-group > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .form-control:not(:first-child),\n.input-group > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group > .custom-file {\n display: flex;\n align-items: center;\n}\n\n.input-group > .custom-file:not(:last-child) .custom-file-label,\n.input-group > .custom-file:not(:last-child) .custom-file-label::after {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .custom-file:not(:first-child) .custom-file-label {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.input-group-prepend,\n.input-group-append {\n display: flex;\n}\n\n.input-group-prepend .btn,\n.input-group-append .btn {\n position: relative;\n z-index: 2;\n}\n\n.input-group-prepend .btn + .btn,\n.input-group-prepend .btn + .input-group-text,\n.input-group-prepend .input-group-text + .input-group-text,\n.input-group-prepend .input-group-text + .btn,\n.input-group-append .btn + .btn,\n.input-group-append .btn + .input-group-text,\n.input-group-append .input-group-text + .input-group-text,\n.input-group-append .input-group-text + .btn {\n margin-left: -1px;\n}\n\n.input-group-prepend {\n margin-right: -1px;\n}\n\n.input-group-append {\n margin-left: -1px;\n}\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.375rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-text input[type=\"radio\"],\n.input-group-text input[type=\"checkbox\"] {\n margin-top: 0;\n}\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n height: calc(2.875rem + 2px);\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem;\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n height: calc(1.8125rem + 2px);\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem;\n}\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.custom-control {\n position: relative;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n}\n\n.custom-control-inline {\n display: inline-flex;\n margin-right: 1rem;\n}\n\n.custom-control-input {\n position: absolute;\n z-index: -1;\n opacity: 0;\n}\n\n.custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n background-color: #007bff;\n}\n\n.custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-control-input:active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n}\n\n.custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d;\n}\n\n.custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n position: relative;\n margin-bottom: 0;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n user-select: none;\n background-color: #dee2e6;\n}\n\n.custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background-repeat: no-repeat;\n background-position: center center;\n background-size: 50% 50%;\n}\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E\");\n}\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::before {\n background-color: #007bff;\n}\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E\");\n}\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5);\n}\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: #fff url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right 0.75rem center;\n background-size: 8px 10px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n appearance: none;\n}\n\n.custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);\n}\n\n.custom-select:focus::-ms-value {\n color: #495057;\n background-color: #fff;\n}\n\n.custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none;\n}\n\n.custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef;\n}\n\n.custom-select::-ms-expand {\n opacity: 0;\n}\n\n.custom-select-sm {\n height: calc(1.8125rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 75%;\n}\n\n.custom-select-lg {\n height: calc(2.875rem + 2px);\n padding-top: 0.375rem;\n padding-bottom: 0.375rem;\n font-size: 125%;\n}\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin-bottom: 0;\n}\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(2.25rem + 2px);\n margin: 0;\n opacity: 0;\n}\n\n.custom-file-input:focus ~ .custom-file-label {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-file-input:focus ~ .custom-file-label::after {\n border-color: #80bdff;\n}\n\n.custom-file-input:disabled ~ .custom-file-label {\n background-color: #e9ecef;\n}\n\n.custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\";\n}\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(2.25rem + 2px);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: 2.25rem;\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: 1px solid #ced4da;\n border-radius: 0 0.25rem 0.25rem 0;\n}\n\n.custom-range {\n width: 100%;\n padding-left: 0;\n background-color: transparent;\n appearance: none;\n}\n\n.custom-range:focus {\n outline: none;\n}\n\n.custom-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-ms-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range::-moz-focus-outer {\n border: 0;\n}\n\n.custom-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .custom-range::-webkit-slider-thumb {\n transition: none;\n }\n}\n\n.custom-range::-webkit-slider-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.custom-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .custom-range::-moz-range-thumb {\n transition: none;\n }\n}\n\n.custom-range::-moz-range-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n\n.custom-range::-ms-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: 0;\n margin-right: 0.2rem;\n margin-left: 0.2rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .custom-range::-ms-thumb {\n transition: none;\n }\n}\n\n.custom-range::-ms-thumb:active {\n background-color: #b3d7ff;\n}\n\n.custom-range::-ms-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: transparent;\n border-color: transparent;\n border-width: 0.5rem;\n}\n\n.custom-range::-ms-fill-lower {\n background-color: #dee2e6;\n border-radius: 1rem;\n}\n\n.custom-range::-ms-fill-upper {\n margin-right: 15px;\n background-color: #dee2e6;\n border-radius: 1rem;\n}\n\n.custom-control-label::before,\n.custom-file-label,\n.custom-select {\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .custom-control-label::before,\n .custom-file-label,\n .custom-select {\n transition: none;\n }\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n}\n\n.nav-link:hover, .nav-link:focus {\n text-decoration: none;\n}\n\n.nav-link.disabled {\n color: #6c757d;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n\n.nav-tabs .nav-item {\n margin-bottom: -1px;\n}\n\n.nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n}\n\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n border-radius: 0.25rem;\n}\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff;\n}\n\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding: 0.5rem 1rem;\n}\n\n.navbar > .container,\n.navbar > .container-fluid {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n}\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap;\n}\n\n.navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none;\n}\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-nav .dropdown-menu {\n position: static;\n float: none;\n}\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none;\n}\n\n.navbar-toggler:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%;\n}\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm > .container,\n .navbar-expand-sm > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md > .container,\n .navbar-expand-md > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg > .container,\n .navbar-expand-lg > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n}\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-flow: row nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl > .container,\n .navbar-expand-xl > .container-fluid {\n flex-wrap: nowrap;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n}\n\n.navbar-expand {\n flex-flow: row nowrap;\n justify-content: flex-start;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n padding-right: 0;\n padding-left: 0;\n}\n\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n\n.navbar-expand > .container,\n.navbar-expand > .container-fluid {\n flex-wrap: nowrap;\n}\n\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n\n.navbar-expand .navbar-toggler {\n display: none;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1);\n}\n\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1);\n}\n\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\");\n}\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5);\n}\n\n.navbar-dark .navbar-text a {\n color: #fff;\n}\n\n.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n\n.card > .list-group:first-child .list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.card > .list-group:last-child .list-group-item:last-child {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1.25rem;\n}\n\n.card-title {\n margin-bottom: 0.75rem;\n}\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link:hover {\n text-decoration: none;\n}\n\n.card-link + .card-link {\n margin-left: 1.25rem;\n}\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-header + .list-group .list-group-item:first-child {\n border-top: 0;\n}\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n}\n\n.card-img {\n width: 100%;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img-top {\n width: 100%;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img-bottom {\n width: 100%;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-deck {\n display: flex;\n flex-direction: column;\n}\n\n.card-deck .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-deck {\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px;\n }\n .card-deck .card {\n display: flex;\n flex: 1 0 0%;\n flex-direction: column;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px;\n }\n}\n\n.card-group {\n display: flex;\n flex-direction: column;\n}\n\n.card-group > .card {\n margin-bottom: 15px;\n}\n\n@media (min-width: 576px) {\n .card-group {\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:first-child {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-top,\n .card-group > .card:first-child .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:first-child .card-img-bottom,\n .card-group > .card:first-child .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:last-child {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-top,\n .card-group > .card:last-child .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:last-child .card-img-bottom,\n .card-group > .card:last-child .card-footer {\n border-bottom-left-radius: 0;\n }\n .card-group > .card:only-child {\n border-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-top,\n .card-group > .card:only-child .card-header {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n }\n .card-group > .card:only-child .card-img-bottom,\n .card-group > .card:only-child .card-footer {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {\n border-radius: 0;\n }\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,\n .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {\n border-radius: 0;\n }\n}\n\n.card-columns .card {\n margin-bottom: 0.75rem;\n}\n\n@media (min-width: 576px) {\n .card-columns {\n column-count: 3;\n column-gap: 1.25rem;\n orphans: 1;\n widows: 1;\n }\n .card-columns .card {\n display: inline-block;\n width: 100%;\n }\n}\n\n.accordion .card:not(:first-of-type):not(:last-of-type) {\n border-bottom: 0;\n border-radius: 0;\n}\n\n.accordion .card:not(:first-of-type) .card-header:first-child {\n border-radius: 0;\n}\n\n.accordion .card:first-of-type {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.accordion .card:last-of-type {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0.75rem 1rem;\n margin-bottom: 1rem;\n list-style: none;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem;\n}\n\n.breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n color: #6c757d;\n content: \"/\";\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline;\n}\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none;\n}\n\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6;\n}\n\n.page-link:hover {\n z-index: 2;\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n\n.page-link:focus {\n z-index: 2;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.page-link:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.page-item.active .page-link {\n z-index: 1;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n}\n\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem;\n}\n\n.badge-primary {\n color: #fff;\n background-color: #007bff;\n}\n\n.badge-primary[href]:hover, .badge-primary[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #0062cc;\n}\n\n.badge-secondary {\n color: #fff;\n background-color: #6c757d;\n}\n\n.badge-secondary[href]:hover, .badge-secondary[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #545b62;\n}\n\n.badge-success {\n color: #fff;\n background-color: #28a745;\n}\n\n.badge-success[href]:hover, .badge-success[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #1e7e34;\n}\n\n.badge-info {\n color: #fff;\n background-color: #17a2b8;\n}\n\n.badge-info[href]:hover, .badge-info[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #117a8b;\n}\n\n.badge-warning {\n color: #212529;\n background-color: #ffc107;\n}\n\n.badge-warning[href]:hover, .badge-warning[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #d39e00;\n}\n\n.badge-danger {\n color: #fff;\n background-color: #dc3545;\n}\n\n.badge-danger[href]:hover, .badge-danger[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #bd2130;\n}\n\n.badge-light {\n color: #212529;\n background-color: #f8f9fa;\n}\n\n.badge-light[href]:hover, .badge-light[href]:focus {\n color: #212529;\n text-decoration: none;\n background-color: #dae0e5;\n}\n\n.badge-dark {\n color: #fff;\n background-color: #343a40;\n}\n\n.badge-dark[href]:hover, .badge-dark[href]:focus {\n color: #fff;\n text-decoration: none;\n background-color: #1d2124;\n}\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem;\n}\n\n@media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem;\n }\n}\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0;\n}\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 4rem;\n}\n\n.alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n padding: 0.75rem 1.25rem;\n color: inherit;\n}\n\n.alert-primary {\n color: #004085;\n background-color: #cce5ff;\n border-color: #b8daff;\n}\n\n.alert-primary hr {\n border-top-color: #9fcdff;\n}\n\n.alert-primary .alert-link {\n color: #002752;\n}\n\n.alert-secondary {\n color: #383d41;\n background-color: #e2e3e5;\n border-color: #d6d8db;\n}\n\n.alert-secondary hr {\n border-top-color: #c8cbcf;\n}\n\n.alert-secondary .alert-link {\n color: #202326;\n}\n\n.alert-success {\n color: #155724;\n background-color: #d4edda;\n border-color: #c3e6cb;\n}\n\n.alert-success hr {\n border-top-color: #b1dfbb;\n}\n\n.alert-success .alert-link {\n color: #0b2e13;\n}\n\n.alert-info {\n color: #0c5460;\n background-color: #d1ecf1;\n border-color: #bee5eb;\n}\n\n.alert-info hr {\n border-top-color: #abdde5;\n}\n\n.alert-info .alert-link {\n color: #062c33;\n}\n\n.alert-warning {\n color: #856404;\n background-color: #fff3cd;\n border-color: #ffeeba;\n}\n\n.alert-warning hr {\n border-top-color: #ffe8a1;\n}\n\n.alert-warning .alert-link {\n color: #533f03;\n}\n\n.alert-danger {\n color: #721c24;\n background-color: #f8d7da;\n border-color: #f5c6cb;\n}\n\n.alert-danger hr {\n border-top-color: #f1b0b7;\n}\n\n.alert-danger .alert-link {\n color: #491217;\n}\n\n.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n\n.alert-light hr {\n border-top-color: #ececf6;\n}\n\n.alert-light .alert-link {\n color: #686868;\n}\n\n.alert-dark {\n color: #1b1e21;\n background-color: #d6d8d9;\n border-color: #c6c8ca;\n}\n\n.alert-dark hr {\n border-top-color: #b9bbbe;\n}\n\n.alert-dark .alert-link {\n color: #040505;\n}\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0;\n }\n to {\n background-position: 0 0;\n }\n}\n\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #007bff;\n transition: width 0.6s ease;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none;\n }\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n animation: progress-bar-stripes 1s linear infinite;\n}\n\n.media {\n display: flex;\n align-items: flex-start;\n}\n\n.media-body {\n flex: 1;\n}\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n\n.list-group-item-action:hover, .list-group-item-action:focus {\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n\n.list-group-item:first-child {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.list-group-item:hover, .list-group-item:focus {\n z-index: 1;\n text-decoration: none;\n}\n\n.list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n background-color: #fff;\n}\n\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff;\n}\n\n.list-group-flush .list-group-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n\n.list-group-flush:first-child .list-group-item:first-child {\n border-top: 0;\n}\n\n.list-group-flush:last-child .list-group-item:last-child {\n border-bottom: 0;\n}\n\n.list-group-item-primary {\n color: #004085;\n background-color: #b8daff;\n}\n\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #004085;\n background-color: #9fcdff;\n}\n\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #004085;\n border-color: #004085;\n}\n\n.list-group-item-secondary {\n color: #383d41;\n background-color: #d6d8db;\n}\n\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #383d41;\n background-color: #c8cbcf;\n}\n\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #383d41;\n border-color: #383d41;\n}\n\n.list-group-item-success {\n color: #155724;\n background-color: #c3e6cb;\n}\n\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #155724;\n background-color: #b1dfbb;\n}\n\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #155724;\n border-color: #155724;\n}\n\n.list-group-item-info {\n color: #0c5460;\n background-color: #bee5eb;\n}\n\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #0c5460;\n background-color: #abdde5;\n}\n\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #0c5460;\n border-color: #0c5460;\n}\n\n.list-group-item-warning {\n color: #856404;\n background-color: #ffeeba;\n}\n\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #856404;\n background-color: #ffe8a1;\n}\n\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #856404;\n border-color: #856404;\n}\n\n.list-group-item-danger {\n color: #721c24;\n background-color: #f5c6cb;\n}\n\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #721c24;\n background-color: #f1b0b7;\n}\n\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #721c24;\n border-color: #721c24;\n}\n\n.list-group-item-light {\n color: #818182;\n background-color: #fdfdfe;\n}\n\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #818182;\n background-color: #ececf6;\n}\n\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #818182;\n border-color: #818182;\n}\n\n.list-group-item-dark {\n color: #1b1e21;\n background-color: #c6c8ca;\n}\n\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #1b1e21;\n background-color: #b9bbbe;\n}\n\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #1b1e21;\n border-color: #1b1e21;\n}\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5;\n}\n\n.close:not(:disabled):not(.disabled) {\n cursor: pointer;\n}\n\n.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {\n color: #000;\n text-decoration: none;\n opacity: .75;\n}\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n\n.modal-open {\n overflow: hidden;\n}\n\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n.modal {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n display: none;\n overflow: hidden;\n outline: 0;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n\n.modal.fade .modal-dialog {\n transition: transform 0.3s ease-out;\n transform: translate(0, -25%);\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none;\n }\n}\n\n.modal.show .modal-dialog {\n transform: translate(0, 0);\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - (0.5rem * 2));\n}\n\n.modal-dialog-centered::before {\n display: block;\n height: calc(100vh - (0.5rem * 2));\n content: \"\";\n}\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n\n.modal-backdrop.fade {\n opacity: 0;\n}\n\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 1rem;\n border-bottom: 1px solid #e9ecef;\n border-top-left-radius: 0.3rem;\n border-top-right-radius: 0.3rem;\n}\n\n.modal-header .close {\n padding: 1rem;\n margin: -1rem -1rem -1rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: flex;\n align-items: center;\n justify-content: flex-end;\n padding: 1rem;\n border-top: 1px solid #e9ecef;\n}\n\n.modal-footer > :not(:first-child) {\n margin-left: .25rem;\n}\n\n.modal-footer > :not(:last-child) {\n margin-right: .25rem;\n}\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n .modal-dialog-centered {\n min-height: calc(100% - (1.75rem * 2));\n }\n .modal-dialog-centered::before {\n height: calc(100vh - (1.75rem * 2));\n }\n .modal-sm {\n max-width: 300px;\n }\n}\n\n@media (min-width: 992px) {\n .modal-lg {\n max-width: 800px;\n }\n}\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n\n.tooltip.show {\n opacity: 0.9;\n}\n\n.tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n\n.tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0;\n}\n\n.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0;\n}\n\n.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0;\n}\n\n.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem;\n}\n\n.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n\n.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n\n.popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem;\n}\n\n.popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem;\n}\n\n.bs-popover-top .arrow, .bs-popover-auto[x-placement^=\"top\"] .arrow {\n bottom: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before,\n.bs-popover-top .arrow::after,\n.bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0;\n}\n\n.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before {\n bottom: 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n\n\n.bs-popover-top .arrow::after,\n.bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n bottom: 1px;\n border-top-color: #fff;\n}\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem;\n}\n\n.bs-popover-right .arrow, .bs-popover-auto[x-placement^=\"right\"] .arrow {\n left: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before,\n.bs-popover-right .arrow::after,\n.bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n border-width: 0.5rem 0.5rem 0.5rem 0;\n}\n\n.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before {\n left: 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n\n\n.bs-popover-right .arrow::after,\n.bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n left: 1px;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem;\n}\n\n.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=\"bottom\"] .arrow {\n top: calc((0.5rem + 1px) * -1);\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before,\n.bs-popover-bottom .arrow::after,\n.bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n border-width: 0 0.5rem 0.5rem 0.5rem;\n}\n\n.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before {\n top: 0;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n\n\n.bs-popover-bottom .arrow::after,\n.bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n top: 1px;\n border-bottom-color: #fff;\n}\n\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f7f7f7;\n}\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem;\n}\n\n.bs-popover-left .arrow, .bs-popover-auto[x-placement^=\"left\"] .arrow {\n right: calc((0.5rem + 1px) * -1);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before,\n.bs-popover-left .arrow::after,\n.bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n border-width: 0.5rem 0 0.5rem 0.5rem;\n}\n\n.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before {\n right: 0;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n\n\n.bs-popover-left .arrow::after,\n.bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n right: 1px;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n color: inherit;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n\n.carousel-item {\n position: relative;\n display: none;\n align-items: center;\n width: 100%;\n backface-visibility: hidden;\n perspective: 1000px;\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n transition: transform 0.6s ease;\n}\n\n@media screen and (prefers-reduced-motion: reduce) {\n .carousel-item.active,\n .carousel-item-next,\n .carousel-item-prev {\n transition: none;\n }\n}\n\n.carousel-item-next,\n.carousel-item-prev {\n position: absolute;\n top: 0;\n}\n\n.carousel-item-next.carousel-item-left,\n.carousel-item-prev.carousel-item-right {\n transform: translateX(0);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-next.carousel-item-left,\n .carousel-item-prev.carousel-item-right {\n transform: translate3d(0, 0, 0);\n }\n}\n\n.carousel-item-next,\n.active.carousel-item-right {\n transform: translateX(100%);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-next,\n .active.carousel-item-right {\n transform: translate3d(100%, 0, 0);\n }\n}\n\n.carousel-item-prev,\n.active.carousel-item-left {\n transform: translateX(-100%);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-item-prev,\n .active.carousel-item-left {\n transform: translate3d(-100%, 0, 0);\n }\n}\n\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-duration: .6s;\n transition-property: opacity;\n}\n\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-left,\n.carousel-fade .carousel-item-prev.carousel-item-right {\n opacity: 1;\n}\n\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-right {\n opacity: 0;\n}\n\n.carousel-fade .carousel-item-next,\n.carousel-fade .carousel-item-prev,\n.carousel-fade .carousel-item.active,\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-prev {\n transform: translateX(0);\n}\n\n@supports (transform-style: preserve-3d) {\n .carousel-fade .carousel-item-next,\n .carousel-fade .carousel-item-prev,\n .carousel-fade .carousel-item.active,\n .carousel-fade .active.carousel-item-left,\n .carousel-fade .active.carousel-item-prev {\n transform: translate3d(0, 0, 0);\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5;\n}\n\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: .9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: transparent no-repeat center center;\n background-size: 100% 100%;\n}\n\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 10px;\n left: 0;\n z-index: 15;\n display: flex;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none;\n}\n\n.carousel-indicators li {\n position: relative;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: rgba(255, 255, 255, 0.5);\n}\n\n.carousel-indicators li::before {\n position: absolute;\n top: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators li::after {\n position: absolute;\n bottom: -10px;\n left: 0;\n display: inline-block;\n width: 100%;\n height: 10px;\n content: \"\";\n}\n\n.carousel-indicators .active {\n background-color: #fff;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.bg-primary {\n background-color: #007bff !important;\n}\n\na.bg-primary:hover, a.bg-primary:focus,\nbutton.bg-primary:hover,\nbutton.bg-primary:focus {\n background-color: #0062cc !important;\n}\n\n.bg-secondary {\n background-color: #6c757d !important;\n}\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n background-color: #545b62 !important;\n}\n\n.bg-success {\n background-color: #28a745 !important;\n}\n\na.bg-success:hover, a.bg-success:focus,\nbutton.bg-success:hover,\nbutton.bg-success:focus {\n background-color: #1e7e34 !important;\n}\n\n.bg-info {\n background-color: #17a2b8 !important;\n}\n\na.bg-info:hover, a.bg-info:focus,\nbutton.bg-info:hover,\nbutton.bg-info:focus {\n background-color: #117a8b !important;\n}\n\n.bg-warning {\n background-color: #ffc107 !important;\n}\n\na.bg-warning:hover, a.bg-warning:focus,\nbutton.bg-warning:hover,\nbutton.bg-warning:focus {\n background-color: #d39e00 !important;\n}\n\n.bg-danger {\n background-color: #dc3545 !important;\n}\n\na.bg-danger:hover, a.bg-danger:focus,\nbutton.bg-danger:hover,\nbutton.bg-danger:focus {\n background-color: #bd2130 !important;\n}\n\n.bg-light {\n background-color: #f8f9fa !important;\n}\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n background-color: #dae0e5 !important;\n}\n\n.bg-dark {\n background-color: #343a40 !important;\n}\n\na.bg-dark:hover, a.bg-dark:focus,\nbutton.bg-dark:hover,\nbutton.bg-dark:focus {\n background-color: #1d2124 !important;\n}\n\n.bg-white {\n background-color: #fff !important;\n}\n\n.bg-transparent {\n background-color: transparent !important;\n}\n\n.border {\n border: 1px solid #dee2e6 !important;\n}\n\n.border-top {\n border-top: 1px solid #dee2e6 !important;\n}\n\n.border-right {\n border-right: 1px solid #dee2e6 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #dee2e6 !important;\n}\n\n.border-left {\n border-left: 1px solid #dee2e6 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-right-0 {\n border-right: 0 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-left-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #007bff !important;\n}\n\n.border-secondary {\n border-color: #6c757d !important;\n}\n\n.border-success {\n border-color: #28a745 !important;\n}\n\n.border-info {\n border-color: #17a2b8 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #343a40 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.d-none {\n display: none !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important;\n }\n .d-sm-inline {\n display: inline !important;\n }\n .d-sm-inline-block {\n display: inline-block !important;\n }\n .d-sm-block {\n display: block !important;\n }\n .d-sm-table {\n display: table !important;\n }\n .d-sm-table-row {\n display: table-row !important;\n }\n .d-sm-table-cell {\n display: table-cell !important;\n }\n .d-sm-flex {\n display: flex !important;\n }\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important;\n }\n .d-md-inline {\n display: inline !important;\n }\n .d-md-inline-block {\n display: inline-block !important;\n }\n .d-md-block {\n display: block !important;\n }\n .d-md-table {\n display: table !important;\n }\n .d-md-table-row {\n display: table-row !important;\n }\n .d-md-table-cell {\n display: table-cell !important;\n }\n .d-md-flex {\n display: flex !important;\n }\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important;\n }\n .d-lg-inline {\n display: inline !important;\n }\n .d-lg-inline-block {\n display: inline-block !important;\n }\n .d-lg-block {\n display: block !important;\n }\n .d-lg-table {\n display: table !important;\n }\n .d-lg-table-row {\n display: table-row !important;\n }\n .d-lg-table-cell {\n display: table-cell !important;\n }\n .d-lg-flex {\n display: flex !important;\n }\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important;\n }\n .d-xl-inline {\n display: inline !important;\n }\n .d-xl-inline-block {\n display: inline-block !important;\n }\n .d-xl-block {\n display: block !important;\n }\n .d-xl-table {\n display: table !important;\n }\n .d-xl-table-row {\n display: table-row !important;\n }\n .d-xl-table-cell {\n display: table-cell !important;\n }\n .d-xl-flex {\n display: flex !important;\n }\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n}\n\n@media print {\n .d-print-none {\n display: none !important;\n }\n .d-print-inline {\n display: inline !important;\n }\n .d-print-inline-block {\n display: inline-block !important;\n }\n .d-print-block {\n display: block !important;\n }\n .d-print-table {\n display: table !important;\n }\n .d-print-table-row {\n display: table-row !important;\n }\n .d-print-table-cell {\n display: table-cell !important;\n }\n .d-print-flex {\n display: flex !important;\n }\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n}\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden;\n}\n\n.embed-responsive::before {\n display: block;\n content: \"\";\n}\n\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0;\n}\n\n.embed-responsive-21by9::before {\n padding-top: 42.857143%;\n}\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%;\n}\n\n.embed-responsive-4by3::before {\n padding-top: 75%;\n}\n\n.embed-responsive-1by1::before {\n padding-top: 100%;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n@media (min-width: 576px) {\n .flex-sm-row {\n flex-direction: row !important;\n }\n .flex-sm-column {\n flex-direction: column !important;\n }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n .justify-content-sm-center {\n justify-content: center !important;\n }\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n .align-items-sm-center {\n align-items: center !important;\n }\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n .align-content-sm-center {\n align-content: center !important;\n }\n .align-content-sm-between {\n align-content: space-between !important;\n }\n .align-content-sm-around {\n align-content: space-around !important;\n }\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n .align-self-sm-auto {\n align-self: auto !important;\n }\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n .align-self-sm-center {\n align-self: center !important;\n }\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 768px) {\n .flex-md-row {\n flex-direction: row !important;\n }\n .flex-md-column {\n flex-direction: column !important;\n }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n .justify-content-md-center {\n justify-content: center !important;\n }\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n .align-items-md-start {\n align-items: flex-start !important;\n }\n .align-items-md-end {\n align-items: flex-end !important;\n }\n .align-items-md-center {\n align-items: center !important;\n }\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n .align-content-md-start {\n align-content: flex-start !important;\n }\n .align-content-md-end {\n align-content: flex-end !important;\n }\n .align-content-md-center {\n align-content: center !important;\n }\n .align-content-md-between {\n align-content: space-between !important;\n }\n .align-content-md-around {\n align-content: space-around !important;\n }\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n .align-self-md-auto {\n align-self: auto !important;\n }\n .align-self-md-start {\n align-self: flex-start !important;\n }\n .align-self-md-end {\n align-self: flex-end !important;\n }\n .align-self-md-center {\n align-self: center !important;\n }\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 992px) {\n .flex-lg-row {\n flex-direction: row !important;\n }\n .flex-lg-column {\n flex-direction: column !important;\n }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n .justify-content-lg-center {\n justify-content: center !important;\n }\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n .align-items-lg-center {\n align-items: center !important;\n }\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n .align-content-lg-center {\n align-content: center !important;\n }\n .align-content-lg-between {\n align-content: space-between !important;\n }\n .align-content-lg-around {\n align-content: space-around !important;\n }\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n .align-self-lg-auto {\n align-self: auto !important;\n }\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n .align-self-lg-center {\n align-self: center !important;\n }\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n}\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n flex-direction: row !important;\n }\n .flex-xl-column {\n flex-direction: column !important;\n }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n .justify-content-xl-center {\n justify-content: center !important;\n }\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n .align-items-xl-center {\n align-items: center !important;\n }\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n .align-content-xl-center {\n align-content: center !important;\n }\n .align-content-xl-between {\n align-content: space-between !important;\n }\n .align-content-xl-around {\n align-content: space-around !important;\n }\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n .align-self-xl-auto {\n align-self: auto !important;\n }\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n .align-self-xl-center {\n align-self: center !important;\n }\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n}\n\n.float-left {\n float: left !important;\n}\n\n.float-right {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important;\n }\n .float-sm-right {\n float: right !important;\n }\n .float-sm-none {\n float: none !important;\n }\n}\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important;\n }\n .float-md-right {\n float: right !important;\n }\n .float-md-none {\n float: none !important;\n }\n}\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important;\n }\n .float-lg-right {\n float: right !important;\n }\n .float-lg-none {\n float: none !important;\n }\n}\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important;\n }\n .float-xl-right {\n float: right !important;\n }\n .float-xl-none {\n float: none !important;\n }\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: sticky !important;\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n@supports (position: sticky) {\n .sticky-top {\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.mt-0,\n.my-0 {\n margin-top: 0 !important;\n}\n\n.mr-0,\n.mx-0 {\n margin-right: 0 !important;\n}\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important;\n}\n\n.ml-0,\n.mx-0 {\n margin-left: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.mt-1,\n.my-1 {\n margin-top: 0.25rem !important;\n}\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important;\n}\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.mt-2,\n.my-2 {\n margin-top: 0.5rem !important;\n}\n\n.mr-2,\n.mx-2 {\n margin-right: 0.5rem !important;\n}\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.ml-2,\n.mx-2 {\n margin-left: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.mt-3,\n.my-3 {\n margin-top: 1rem !important;\n}\n\n.mr-3,\n.mx-3 {\n margin-right: 1rem !important;\n}\n\n.mb-3,\n.my-3 {\n margin-bottom: 1rem !important;\n}\n\n.ml-3,\n.mx-3 {\n margin-left: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.mt-4,\n.my-4 {\n margin-top: 1.5rem !important;\n}\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important;\n}\n\n.mb-4,\n.my-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important;\n}\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important;\n}\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important;\n}\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.pt-0,\n.py-0 {\n padding-top: 0 !important;\n}\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important;\n}\n\n.pb-0,\n.py-0 {\n padding-bottom: 0 !important;\n}\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important;\n}\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important;\n}\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important;\n}\n\n.pr-2,\n.px-2 {\n padding-right: 0.5rem !important;\n}\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pl-2,\n.px-2 {\n padding-left: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.pt-3,\n.py-3 {\n padding-top: 1rem !important;\n}\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important;\n}\n\n.pb-3,\n.py-3 {\n padding-bottom: 1rem !important;\n}\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important;\n}\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important;\n}\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important;\n}\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important;\n}\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important;\n}\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important;\n}\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important;\n}\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important;\n}\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important;\n}\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important;\n }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important;\n }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important;\n }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important;\n }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important;\n }\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important;\n }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important;\n }\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important;\n }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important;\n }\n .m-sm-3 {\n margin: 1rem !important;\n }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important;\n }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important;\n }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important;\n }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important;\n }\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important;\n }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important;\n }\n .m-sm-5 {\n margin: 3rem !important;\n }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important;\n }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important;\n }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important;\n }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important;\n }\n .p-sm-0 {\n padding: 0 !important;\n }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important;\n }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important;\n }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important;\n }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important;\n }\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important;\n }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important;\n }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important;\n }\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important;\n }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important;\n }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important;\n }\n .p-sm-3 {\n padding: 1rem !important;\n }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important;\n }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important;\n }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important;\n }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important;\n }\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important;\n }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important;\n }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important;\n }\n .p-sm-5 {\n padding: 3rem !important;\n }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important;\n }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important;\n }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important;\n }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important;\n }\n .m-sm-auto {\n margin: auto !important;\n }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important;\n }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important;\n }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important;\n }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important;\n }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important;\n }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important;\n }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important;\n }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important;\n }\n .m-md-1 {\n margin: 0.25rem !important;\n }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important;\n }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important;\n }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important;\n }\n .m-md-2 {\n margin: 0.5rem !important;\n }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important;\n }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important;\n }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important;\n }\n .m-md-3 {\n margin: 1rem !important;\n }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important;\n }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important;\n }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important;\n }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important;\n }\n .m-md-4 {\n margin: 1.5rem !important;\n }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important;\n }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important;\n }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important;\n }\n .m-md-5 {\n margin: 3rem !important;\n }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important;\n }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important;\n }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important;\n }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important;\n }\n .p-md-0 {\n padding: 0 !important;\n }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important;\n }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important;\n }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important;\n }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important;\n }\n .p-md-1 {\n padding: 0.25rem !important;\n }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important;\n }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important;\n }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important;\n }\n .p-md-2 {\n padding: 0.5rem !important;\n }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important;\n }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important;\n }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important;\n }\n .p-md-3 {\n padding: 1rem !important;\n }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important;\n }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important;\n }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important;\n }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important;\n }\n .p-md-4 {\n padding: 1.5rem !important;\n }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important;\n }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important;\n }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important;\n }\n .p-md-5 {\n padding: 3rem !important;\n }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important;\n }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important;\n }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important;\n }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important;\n }\n .m-md-auto {\n margin: auto !important;\n }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important;\n }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important;\n }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important;\n }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important;\n }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important;\n }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important;\n }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important;\n }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important;\n }\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important;\n }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important;\n }\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important;\n }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important;\n }\n .m-lg-3 {\n margin: 1rem !important;\n }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important;\n }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important;\n }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important;\n }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important;\n }\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important;\n }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important;\n }\n .m-lg-5 {\n margin: 3rem !important;\n }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important;\n }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important;\n }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important;\n }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important;\n }\n .p-lg-0 {\n padding: 0 !important;\n }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important;\n }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important;\n }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important;\n }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important;\n }\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important;\n }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important;\n }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important;\n }\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important;\n }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important;\n }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important;\n }\n .p-lg-3 {\n padding: 1rem !important;\n }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important;\n }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important;\n }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important;\n }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important;\n }\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important;\n }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important;\n }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important;\n }\n .p-lg-5 {\n padding: 3rem !important;\n }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important;\n }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important;\n }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important;\n }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important;\n }\n .m-lg-auto {\n margin: auto !important;\n }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important;\n }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important;\n }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important;\n }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important;\n }\n}\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important;\n }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important;\n }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important;\n }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important;\n }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important;\n }\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important;\n }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important;\n }\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important;\n }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important;\n }\n .m-xl-3 {\n margin: 1rem !important;\n }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important;\n }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important;\n }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important;\n }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important;\n }\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important;\n }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important;\n }\n .m-xl-5 {\n margin: 3rem !important;\n }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important;\n }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important;\n }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important;\n }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important;\n }\n .p-xl-0 {\n padding: 0 !important;\n }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important;\n }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important;\n }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important;\n }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important;\n }\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important;\n }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important;\n }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important;\n }\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important;\n }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important;\n }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important;\n }\n .p-xl-3 {\n padding: 1rem !important;\n }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important;\n }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important;\n }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important;\n }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important;\n }\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important;\n }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important;\n }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important;\n }\n .p-xl-5 {\n padding: 3rem !important;\n }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important;\n }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important;\n }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important;\n }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important;\n }\n .m-xl-auto {\n margin: auto !important;\n }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important;\n }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important;\n }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important;\n }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important;\n }\n}\n\n.text-monospace {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n}\n\n.text-justify {\n text-align: justify !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.text-left {\n text-align: left !important;\n}\n\n.text-right {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important;\n }\n .text-sm-right {\n text-align: right !important;\n }\n .text-sm-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important;\n }\n .text-md-right {\n text-align: right !important;\n }\n .text-md-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important;\n }\n .text-lg-right {\n text-align: right !important;\n }\n .text-lg-center {\n text-align: center !important;\n }\n}\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important;\n }\n .text-xl-right {\n text-align: right !important;\n }\n .text-xl-center {\n text-align: center !important;\n }\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.font-weight-light {\n font-weight: 300 !important;\n}\n\n.font-weight-normal {\n font-weight: 400 !important;\n}\n\n.font-weight-bold {\n font-weight: 700 !important;\n}\n\n.font-italic {\n font-style: italic !important;\n}\n\n.text-white {\n color: #fff !important;\n}\n\n.text-primary {\n color: #007bff !important;\n}\n\na.text-primary:hover, a.text-primary:focus {\n color: #0062cc !important;\n}\n\n.text-secondary {\n color: #6c757d !important;\n}\n\na.text-secondary:hover, a.text-secondary:focus {\n color: #545b62 !important;\n}\n\n.text-success {\n color: #28a745 !important;\n}\n\na.text-success:hover, a.text-success:focus {\n color: #1e7e34 !important;\n}\n\n.text-info {\n color: #17a2b8 !important;\n}\n\na.text-info:hover, a.text-info:focus {\n color: #117a8b !important;\n}\n\n.text-warning {\n color: #ffc107 !important;\n}\n\na.text-warning:hover, a.text-warning:focus {\n color: #d39e00 !important;\n}\n\n.text-danger {\n color: #dc3545 !important;\n}\n\na.text-danger:hover, a.text-danger:focus {\n color: #bd2130 !important;\n}\n\n.text-light {\n color: #f8f9fa !important;\n}\n\na.text-light:hover, a.text-light:focus {\n color: #dae0e5 !important;\n}\n\n.text-dark {\n color: #343a40 !important;\n}\n\na.text-dark:hover, a.text-dark:focus {\n color: #1d2124 !important;\n}\n\n.text-body {\n color: #212529 !important;\n}\n\n.text-muted {\n color: #6c757d !important;\n}\n\n.text-black-50 {\n color: rgba(0, 0, 0, 0.5) !important;\n}\n\n.text-white-50 {\n color: rgba(255, 255, 255, 0.5) !important;\n}\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important;\n }\n a:not(.btn) {\n text-decoration: underline;\n }\n abbr[title]::after {\n content: \" (\" attr(title) \")\";\n }\n pre {\n white-space: pre-wrap !important;\n }\n pre,\n blockquote {\n border: 1px solid #adb5bd;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n @page {\n size: a3;\n }\n body {\n min-width: 992px !important;\n }\n .container {\n min-width: 992px !important;\n }\n .navbar {\n display: none;\n }\n .badge {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #dee2e6 !important;\n }\n .table-dark {\n color: inherit;\n }\n .table-dark th,\n .table-dark td,\n .table-dark thead th,\n .table-dark tbody + tbody {\n border-color: #dee2e6;\n }\n .table .thead-dark th {\n color: inherit;\n border-color: #dee2e6;\n }\n}\n\n/*# sourceMappingURL=bootstrap.css.map */","// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Originally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS-an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular pseudo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover {\n &:hover { @content; }\n}\n\n@mixin hover-focus {\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin plain-hover-focus {\n &,\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin hover-focus-active {\n &:hover,\n &:focus,\n &:active {\n @content;\n }\n}\n","// stylelint-disable declaration-no-important, selector-list-comma-newline-after\n\n//\n// Headings\n//\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1, .h1 { font-size: $h1-font-size; }\nh2, .h2 { font-size: $h2-font-size; }\nh3, .h3 { font-size: $h3-font-size; }\nh4, .h4 { font-size: $h4-font-size; }\nh5, .h5 { font-size: $h5-font-size; }\nh6, .h6 { font-size: $h6-font-size; }\n\n.lead {\n font-size: $lead-font-size;\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n font-size: $display1-size;\n font-weight: $display1-weight;\n line-height: $display-line-height;\n}\n.display-2 {\n font-size: $display2-size;\n font-weight: $display2-weight;\n line-height: $display-line-height;\n}\n.display-3 {\n font-size: $display3-size;\n font-weight: $display3-weight;\n line-height: $display-line-height;\n}\n.display-4 {\n font-size: $display4-size;\n font-weight: $display4-weight;\n line-height: $display-line-height;\n}\n\n\n//\n// Horizontal rules\n//\n\nhr {\n margin-top: $hr-margin-y;\n margin-bottom: $hr-margin-y;\n border: 0;\n border-top: $hr-border-width solid $hr-border-color;\n}\n\n\n//\n// Emphasis\n//\n\nsmall,\n.small {\n font-size: $small-font-size;\n font-weight: $font-weight-normal;\n}\n\nmark,\n.mark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n//\n// Lists\n//\n\n.list-unstyled {\n @include list-unstyled;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n @include list-unstyled;\n}\n.list-inline-item {\n display: inline-block;\n\n &:not(:last-child) {\n margin-right: $list-inline-padding;\n }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n margin-bottom: $spacer;\n font-size: $blockquote-font-size;\n}\n\n.blockquote-footer {\n display: block;\n font-size: 80%; // back to default font-size\n color: $blockquote-small-color;\n\n &::before {\n content: \"\\2014 \\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all ``s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n @include img-fluid;\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n padding: $thumbnail-padding;\n background-color: $thumbnail-bg;\n border: $thumbnail-border-width solid $thumbnail-border-color;\n @include border-radius($thumbnail-border-radius);\n @include box-shadow($thumbnail-box-shadow);\n\n // Keep them at most 100% wide\n @include img-fluid;\n}\n\n//\n// Figures\n//\n\n.figure {\n // Ensures the caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: ($spacer / 2);\n line-height: 1;\n}\n\n.figure-caption {\n font-size: $figure-caption-font-size;\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size.\n\n// stylelint-disable indentation, media-query-list-comma-newline-after\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n background-image: url($file-1x);\n\n // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,\n // but doesn't convert dppx=>dpi.\n // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.\n // Compatibility info: https://caniuse.com/#feat=css-media-resolution\n @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx\n only screen and (min-resolution: 2dppx) { // Standardized\n background-image: url($file-2x);\n background-size: $width-1x $height-1x;\n }\n}\n","// Single side border-radius\n\n@mixin border-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-radius: $radius;\n }\n}\n\n@mixin border-top-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n","// Inline code\ncode {\n font-size: $code-font-size;\n color: $code-color;\n word-break: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n font-size: $kbd-font-size;\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n @include box-shadow($kbd-box-shadow);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: $nested-kbd-font-weight;\n @include box-shadow(none);\n }\n}\n\n// Blocks of code\npre {\n display: block;\n font-size: $code-font-size;\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: $pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n .container {\n @include make-container();\n @include make-container-max-widths();\n }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n .container-fluid {\n @include make-container();\n }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n }\n\n // Remove the negative margin from default .row, then the horizontal padding\n // from all immediate children columns (to prevent runaway style inheritance).\n .no-gutters {\n margin-right: 0;\n margin-left: 0;\n\n > .col,\n > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0;\n }\n }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container() {\n width: 100%;\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row() {\n display: flex;\n flex-wrap: wrap;\n margin-right: ($grid-gutter-width / -2);\n margin-left: ($grid-gutter-width / -2);\n}\n\n@mixin make-col-ready() {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n min-height: 1px; // Prevent collapsing\n padding-right: ($grid-gutter-width / 2);\n padding-left: ($grid-gutter-width / 2);\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.02px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .02px, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $max: breakpoint-max($name, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($name, $breakpoints) {\n @content;\n }\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n min-height: 1px; // Prevent columns from collapsing when empty\n padding-right: ($gutter / 2);\n padding-left: ($gutter / 2);\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: none; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first { order: -1; }\n\n .order#{$infix}-last { order: $columns + 1; }\n\n @for $i from 0 through $columns {\n .order#{$infix}-#{$i} { order: $i; }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n","//\n// Basic Bootstrap table\n//\n\n.table {\n width: 100%;\n margin-bottom: $spacer;\n background-color: $table-bg; // Reset for nesting within parents with `background-color`.\n\n th,\n td {\n padding: $table-cell-padding;\n vertical-align: top;\n border-top: $table-border-width solid $table-border-color;\n }\n\n thead th {\n vertical-align: bottom;\n border-bottom: (2 * $table-border-width) solid $table-border-color;\n }\n\n tbody + tbody {\n border-top: (2 * $table-border-width) solid $table-border-color;\n }\n\n .table {\n background-color: $body-bg;\n }\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n th,\n td {\n padding: $table-cell-padding-sm;\n }\n}\n\n\n// Border versions\n//\n// Add or remove borders all around the table and between all the columns.\n\n.table-bordered {\n border: $table-border-width solid $table-border-color;\n\n th,\n td {\n border: $table-border-width solid $table-border-color;\n }\n\n thead {\n th,\n td {\n border-bottom-width: (2 * $table-border-width);\n }\n }\n}\n\n.table-borderless {\n th,\n td,\n thead th,\n tbody + tbody {\n border: 0;\n }\n}\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n tbody tr:nth-of-type(#{$table-striped-order}) {\n background-color: $table-accent-bg;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-hover-bg;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n@each $color, $value in $theme-colors {\n @include table-row-variant($color, theme-color-level($color, -9));\n}\n\n@include table-row-variant(active, $table-active-bg);\n\n\n// Dark styles\n//\n// Same table markup, but inverted color scheme: dark background and light text.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.table {\n .thead-dark {\n th {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n border-color: $table-dark-border-color;\n }\n }\n\n .thead-light {\n th {\n color: $table-head-color;\n background-color: $table-head-bg;\n border-color: $table-border-color;\n }\n }\n}\n\n.table-dark {\n color: $table-dark-color;\n background-color: $table-dark-bg;\n\n th,\n td,\n thead th {\n border-color: $table-dark-border-color;\n }\n\n &.table-bordered {\n border: 0;\n }\n\n &.table-striped {\n tbody tr:nth-of-type(odd) {\n background-color: $table-dark-accent-bg;\n }\n }\n\n &.table-hover {\n tbody tr {\n @include hover {\n background-color: $table-dark-hover-bg;\n }\n }\n }\n}\n\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n.table-responsive {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $next: breakpoint-next($breakpoint, $grid-breakpoints);\n $infix: breakpoint-infix($next, $grid-breakpoints);\n\n &#{$infix} {\n @include media-breakpoint-down($breakpoint) {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057\n\n // Prevent double border on horizontal scroll due to use of `display: block;`\n > .table-bordered {\n border: 0;\n }\n }\n }\n }\n}\n","// Tables\n\n@mixin table-row-variant($state, $background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table-#{$state} {\n &,\n > th,\n > td {\n background-color: $background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover {\n $hover-background: darken($background, 5%);\n\n .table-#{$state} {\n @include hover {\n background-color: $hover-background;\n\n > td,\n > th {\n background-color: $hover-background;\n }\n }\n }\n }\n}\n","// Bootstrap functions\n//\n// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.\n\n// Ascending\n// Used to evaluate Sass maps like our grid breakpoints.\n@mixin _assert-ascending($map, $map-name) {\n $prev-key: null;\n $prev-num: null;\n @each $key, $num in $map {\n @if $prev-num == null {\n // Do nothing\n } @else if not comparable($prev-num, $num) {\n @warn \"Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n } @else if $prev-num >= $num {\n @warn \"Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n }\n $prev-key: $key;\n $prev-num: $num;\n }\n}\n\n// Starts at zero\n// Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0.\n@mixin _assert-starts-at-zero($map) {\n $values: map-values($map);\n $first-value: nth($values, 1);\n @if $first-value != 0 {\n @warn \"First breakpoint in `$grid-breakpoints` must start at 0, but starts at #{$first-value}.\";\n }\n}\n\n// Replace `$search` with `$replace` in `$string`\n// Used on our SVG icon backgrounds for custom forms.\n//\n// @author Hugo Giraudel\n// @param {String} $string - Initial string\n// @param {String} $search - Substring to replace\n// @param {String} $replace ('') - New value\n// @return {String} - Updated string\n@function str-replace($string, $search, $replace: \"\") {\n $index: str-index($string, $search);\n\n @if $index {\n @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n }\n\n @return $string;\n}\n\n// Color contrast\n@function color-yiq($color) {\n $r: red($color);\n $g: green($color);\n $b: blue($color);\n\n $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;\n\n @if ($yiq >= $yiq-contrasted-threshold) {\n @return $yiq-text-dark;\n } @else {\n @return $yiq-text-light;\n }\n}\n\n// Retrieve color Sass maps\n@function color($key: \"blue\") {\n @return map-get($colors, $key);\n}\n\n@function theme-color($key: \"primary\") {\n @return map-get($theme-colors, $key);\n}\n\n@function gray($key: \"100\") {\n @return map-get($grays, $key);\n}\n\n// Request a theme color level\n@function theme-color-level($color-name: \"primary\", $level: 0) {\n $color: theme-color($color-name);\n $color-base: if($level > 0, $black, $white);\n $level: abs($level);\n\n @return mix($color-base, $color, $level * $theme-color-interval);\n}\n","// stylelint-disable selector-no-qualifying-type\n\n//\n// Textual form controls\n//\n\n.form-control {\n display: block;\n width: 100%;\n height: $input-height;\n padding: $input-padding-y $input-padding-x;\n font-size: $font-size-base;\n line-height: $input-line-height;\n color: $input-color;\n background-color: $input-bg;\n background-clip: padding-box;\n border: $input-border-width solid $input-border-color;\n\n // Note: This has no effect on `s in CSS.\n @if $enable-rounded {\n // Manually use the if/else instead of the mixin to account for iOS override\n border-radius: $input-border-radius;\n } @else {\n // Otherwise undo the iOS default\n border-radius: 0;\n }\n\n @include box-shadow($input-box-shadow);\n @include transition($input-transition);\n\n // Unstyle the caret on ` receives focus\n // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to\n // match the appearance of the native widget.\n // See https://github.com/twbs/bootstrap/issues/19398.\n color: $input-color;\n background-color: $input-bg;\n }\n}\n\n// Make file inputs better match text inputs by forcing them to new lines.\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%;\n}\n\n\n//\n// Labels\n//\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n padding-top: calc(#{$input-padding-y} + #{$input-border-width});\n padding-bottom: calc(#{$input-padding-y} + #{$input-border-width});\n margin-bottom: 0; // Override the `